/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #107575 0%, #0a5a5a 50%, #107575 100%);
    box-shadow: 0 2px 20px rgba(16, 117, 117, 0.3);
    position: relative;
    z-index: 1000;
    border-bottom: 3px solid #ffffff;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    text-align: center;
    position: relative;
}

.logo a {
    text-decoration: none;
    color: #ffffff;
    display: block;
}

.logo h1 {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.logo .subtitle {
    font-size: 1.1em;
    font-weight: 300;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.floating-emojis {
    position: absolute;
    top: -10px;
    right: -30px;
    display: flex;
    gap: 8px;
}

.emoji {
    font-size: 1.5em;
    animation: float 3s ease-in-out infinite;
}

.emoji:nth-child(1) { animation-delay: 0s; }
.emoji:nth-child(2) { animation-delay: 1s; }
.emoji:nth-child(3) { animation-delay: 2s; }

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #107575 0%, #0a5a5a 50%, #ffffff 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.3em;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: 2px solid rgba(255,255,255,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #107575 0%, #0a5a5a 100%);
    box-shadow: 0 4px 15px rgba(16, 117, 117, 0.3);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #0a5a5a 0%, #107575 100%);
    box-shadow: 0 6px 20px rgba(16, 117, 117, 0.4);
}

.whatsapp-icon {
    font-size: 1.2em;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(16, 117, 117, 0.2);
    position: relative;
}

.hero-icon {
    font-size: 6em;
    margin-bottom: 10px;
}

.hero-decoration {
    font-size: 2em;
    position: absolute;
    top: 20px;
    right: 20px;
    animation: sparkle 2s ease-in-out infinite;
}

.therapy-session {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    position: relative;
}

.patient-after {
    font-size: 2.5em;
    animation: patientTransform 3s ease-in-out infinite;
    transform: scale(1.1);
}

.therapy-progress {
    display: flex;
    align-items: center;
    gap: 8px;
}

.progress-arrow {
    font-size: 1.2em;
    color: #107575;
    animation: arrowPulse 2s ease-in-out infinite;
}

.heart-pulse {
    font-size: 2em;
    animation: heartBeat 1.5s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.flower {
    position: absolute;
    font-size: 1.5em;
    animation: flowerFloat 4s ease-in-out infinite;
    opacity: 0.8;
}

.white-flower-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.white-flower-2 {
    top: 20%;
    right: 20%;
    animation-delay: 1s;
}

.white-flower-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: 2s;
}

.therapy-elements {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.crystal, .lotus, .butterfly {
    display: block;
    font-size: 1.8em;
    margin: 5px 0;
    animation: therapyElementFloat 3s ease-in-out infinite;
}

.crystal {
    animation-delay: 0.5s;
}

.lotus {
    animation-delay: 1s;
}

.butterfly {
    animation-delay: 1.5s;
}

/* SEO Content Section */
.seo-content {
    padding: 80px 0;
    background: #ffffff;
}

.seo-section {
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border-left: 5px solid #107575;
    position: relative;
    overflow: hidden;
}

.seo-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(16, 117, 117, 0.1) 0%, rgba(16, 117, 117, 0.05) 100%);
    border-radius: 50%;
}

.seo-section h2 {
    font-size: 2.5em;
    color: #107575;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.seo-section p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #107575 0%, #0a5a5a 100%);
    border-radius: 15px;
    margin-bottom: 60px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #107575;
    margin-bottom: 40px;
}

.map-container {
    display: flex;
    justify-content: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.map-container iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border: none;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #107575 0%, #0a5a5a 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #ffffff;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 10px;
}

.footer-section p,
.footer-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #25d366;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.schedule li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.schedule li:last-child {
    border-bottom: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
    margin-bottom: 10px;
    opacity: 0.8;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-text {
    font-size: 0.9em;
    letter-spacing: 0.5px;
}

.whatsapp-float .whatsapp-icon {
    font-size: 1.2em;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #107575, #0a5a5a);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0a5a5a, #107575);
}

/* Keyframes */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

@keyframes patientTransform {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes arrowPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1.2); }
    75% { transform: scale(1.1); }
}

@keyframes flowerFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-10px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-10px) rotate(270deg);
        opacity: 0.8;
    }
}

@keyframes therapyElementFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    33% {
        transform: translateY(-8px) scale(1.05);
        opacity: 1;
    }
    66% {
        transform: translateY(-4px) scale(0.95);
        opacity: 0.8;
    }
}

@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}
