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

/* Variables - Paleta Roxa e Turquesa para psicologia */
:root {
    /* Cores Principais */
    --primary-color: #1ED1B6;
    --primary-hover: #1AB8A3;
    --primary-light: #E8F9F6;
    
    /* Paleta Principal - Roxa e Turquesa */
    --main-darkest: #5B1C94;        /* Roxo escuro - títulos principais */
    --main-dark: #6B2AA4;           /* Roxo médio escuro */
    --main-primary: #8D3FD6;        /* Roxo principal */
    --main-medium: #9B4EDE;         /* Roxo médio */
    --main-warm: #A95FE6;           /* Roxo aquecido */
    --main-golden: #1ED1B6;         /* Turquesa principal */
    --main-golden-light: #2ED8C0;   /* Turquesa claro */
    --main-golden-soft: #3EDFCA;    /* Turquesa suave */
    --main-golden-pale: #4EE6D4;    /* Turquesa pálido */
    --main-cream: #F0F9FF;          /* Azul claro */
    --main-whisper: #F8FBFF;        /* Tom sussurro */
    
    /* Cores de Texto baseadas na paleta principal */
    --text-primary: #5B1C94;        /* Texto principal - roxo escuro */
    --text-secondary: #6B2AA4;      /* Texto secundário */
    --text-accent: #8D3FD6;         /* Texto de destaque */
    --text-muted: #9B4EDE;          /* Texto suave */
    --text-light: #A95FE6;          /* Texto claro */
    --text-white: #FFFFFF;
    
    /* Cores de Fundo */
    --background-white: #FFFFFF;
    --background-light: #F8FBFF;    /* Whisper */
    --background-soft: #F0F9FF;     /* Azul claro */
    --background-accent: #E8F5FF;   /* Azul pálido */
    --background-hero: #8D3FD6;     /* Roxo principal */
    
    /* Cores de Apoio - mantendo harmonia */
    --accent-warm: #1ED1B6;         /* Turquesa - para elementos especiais */
    --accent-cool: #2ED8C0;         /* Turquesa claro - para hover states */
    --accent-subtle: #3EDFCA;       /* Turquesa suave - para elementos sutis */
    --accent-blue: #3F6EDC;         /* Azul arroxeado - para destaque */
    --neutral-border: #E8F5FF;      /* Azul pálido - para bordas */
    --neutral-shadow: #F0F9FF;      /* Azul claro - para sombras suaves */
    
    /* Sombras harmoniosas */
    --shadow-light: 0 2px 15px rgba(91, 28, 148, 0.08);
    --shadow-medium: 0 4px 25px rgba(91, 28, 148, 0.12);
    --shadow-strong: 0 8px 35px rgba(91, 28, 148, 0.15);
    
    /* Outros */
    --border-radius: 12px;
    --border-radius-large: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 80px;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-white);
    overflow-x: hidden;
    font-weight: 400;
    padding-top: var(--header-height);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 { 
    font-size: clamp(2.2rem, 5vw, 3.8rem); 
    font-weight: 700;
}
h2 { 
    font-size: clamp(1.6rem, 4vw, 2.8rem); 
    font-weight: 600;
}
h3 { 
    font-size: clamp(1.3rem, 3vw, 1.9rem); 
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neutral-border);
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.logo-crp {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    font-weight: 400;
    line-height: 1.2;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--main-primary);
    background: var(--main-whisper);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--main-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: var(--main-whisper);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--main-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(91, 28, 148, 0.7);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 0;
    right: -70%;
    width: 70%;
    height: 100vh;
    background: var(--background-white);
    box-shadow: -10px 0 30px rgba(91, 28, 148, 0.2);
    z-index: 999;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.nav-mobile.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid var(--neutral-border);
}

.mobile-logo .logo-img {
    height: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: var(--main-whisper);
    color: var(--main-primary);
}

.mobile-nav-list {
    list-style: none;
    padding: 30px 0;
    flex: 1;
}

.mobile-nav-list li {
    margin: 0;
}

.mobile-nav-link {
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 15px 25px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
    color: var(--main-primary);
    background: var(--main-whisper);
    border-left-color: var(--main-primary);
}

.mobile-menu-footer {
    padding: 25px;
    border-top: 1px solid var(--neutral-border);
}

.mobile-cta {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 16px 20px;
}

/* Buttons */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 18px 36px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-whatsapp:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.btn-center {
    display: flex;
    justify-content: center;
    margin: 3rem auto 0;
    width: fit-content;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Hero Section - Fundo profissional e moderno com técnicas avançadas */
.hero {
    background: 
        /* Gradiente base suave */
        linear-gradient(135deg, 
            rgba(255, 255, 255, 1) 0%,
            rgba(248, 251, 255, 0.98) 25%,
            rgba(240, 249, 255, 0.95) 50%,
            rgba(248, 251, 255, 0.98) 75%,
            rgba(255, 255, 255, 1) 100%
        ),
        /* Overlay com formas geométricas */
        radial-gradient(ellipse 1200px 800px at 20% 40%, rgba(30, 209, 182, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 800px 600px at 80% 60%, rgba(141, 63, 214, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 1000px 400px at 60% 80%, rgba(63, 110, 220, 0.05) 0%, transparent 60%),
        /* Padrão de profundidade */
        conic-gradient(from 45deg at 30% 20%, rgba(30, 209, 182, 0.03) 0deg, transparent 90deg, rgba(141, 63, 214, 0.02) 180deg, transparent 270deg),
        /* Grid profissional sutil */
        linear-gradient(90deg, rgba(141, 63, 214, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(141, 63, 214, 0.02) 1px, transparent 1px);
    background-size: 
        100% 100%,
        1200px 800px,
        800px 600px, 
        1000px 400px,
        400px 400px,
        100px 100px,
        100px 100px;
    background-position: 
        center,
        20% 40%,
        80% 60%,
        60% 80%,
        30% 20%,
        0 0,
        0 0;
    background-attachment: fixed;
    color: var(--text-primary);
    padding: 40px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Elementos geométricos flutuantes modernos */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: 
        conic-gradient(from 0deg, rgba(30, 209, 182, 0.08), rgba(141, 63, 214, 0.05), rgba(30, 209, 182, 0.08));
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morphFloat 25s infinite ease-in-out;
    z-index: 1;
    filter: blur(1px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: 
        linear-gradient(135deg, 
            rgba(63, 110, 220, 0.06) 0%, 
            rgba(30, 209, 182, 0.08) 50%, 
            rgba(141, 63, 214, 0.04) 100%
        );
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morphFloat 30s infinite ease-in-out reverse;
    z-index: 1;
    filter: blur(0.5px);
}

/* Elementos decorativos adicionais */
.hero-content::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: 
        radial-gradient(circle, 
            rgba(30, 209, 182, 0.1) 0%, 
            rgba(30, 209, 182, 0.05) 40%, 
            transparent 70%
        );
    border-radius: 50%;
    animation: pulse 8s infinite;
    z-index: 1;
}

.hero-content::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: 
        linear-gradient(45deg, 
            rgba(141, 63, 214, 0.08) 0%, 
            rgba(63, 110, 220, 0.06) 100%
        );
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: rotate 20s infinite linear;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.1;
    color: var(--main-darkest);
    text-shadow: none;
    text-align: center;
    width: 100%;
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--main-darkest) 0%, var(--main-dark) 50%, var(--main-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-quote {
    background: 
        linear-gradient(135deg, 
            rgba(248, 251, 255, 0.95) 0%, 
            rgba(240, 249, 255, 0.8) 50%,
            rgba(248, 251, 255, 0.95) 100%
        );
    border-left: 4px solid var(--main-primary);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 30px 25px;
    margin: 0 0 3rem 0; /* Adicionado espaçamento extra */
    font-size: 1.15rem;
    font-style: italic;
    color: var(--main-dark);
    line-height: 1.6;
    position: relative;
    box-shadow: 
        0 10px 25px rgba(141, 63, 214, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 209, 182, 0.2);
}

.hero-quote::before {
    content: '"';
    position: absolute;
    top: 0px;
    left: 15px;
    font-size: 4rem;
    color: var(--main-primary);
    opacity: 0.25;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(141, 63, 214, 0.1);
}

.hero-quote cite {
    display: block;
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--main-primary);
    font-weight: 600;
    font-style: normal;
    position: relative;
}

.hero-quote cite::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    width: 8px;
    height: 1px;
    background: var(--main-primary);
    transform: translateY(-50%);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
    text-shadow: none;
}

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

.hero-photo-container {
    position: relative;
    display: inline-block;
}

.hero-photo {
    width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-large);
    box-shadow: 
        0 20px 40px rgba(91, 28, 148, 0.15),
        0 5px 15px rgba(91, 28, 148, 0.1);
    border: 2px solid rgba(30, 209, 182, 0.2);
    transition: var(--transition);
}

.hero-photo:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 60px rgba(91, 28, 148, 0.2),
        0 10px 25px rgba(91, 28, 148, 0.15);
}

.hero-photo-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: 
        conic-gradient(from 45deg, 
            var(--accent-warm), 
            var(--main-golden-light), 
            var(--accent-warm)
        );
    border-radius: 50%;
    opacity: 0.7;
    z-index: -1;
    animation: rotate 15s infinite linear;
}

.hero-photo-decoration::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: 
        radial-gradient(circle, 
            var(--main-golden-pale) 0%, 
            var(--accent-cool) 70%, 
            transparent 100%
        );
    border-radius: 50%;
    opacity: 0.8;
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--background-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    max-width: 600px;
}

.section-divider {
    height: 4px;
    width: 80px;
    background: linear-gradient(90deg, var(--main-primary), var(--accent-warm));
    margin: 2rem 0;
    border-radius: 2px;
}

.section-title {
    font-size: 2.6rem;
    color: var(--main-darkest);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.about-description p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 80%;
    height: auto;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--background-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    background: var(--background-white);
    padding: 45px 35px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--neutral-border);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--accent-warm);
}

.benefit-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-icon i {
    font-size: 3rem;
    color: var(--main-primary);
    background: var(--main-whisper);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon i {
    color: var(--main-dark);
    background: var(--accent-cool);
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--main-darkest);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.section-title-center {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.3;
    color: var(--main-darkest);
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Process Section */
.process {
    padding: 120px 0;
    background: var(--background-white);
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.process-image {
    text-align: center;
    position: relative;
}

.process-image img {
    max-width: 100%;
    height: auto;
    min-height: 400px;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.process-image:hover img {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.process-image-decoration {
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-warm), var(--main-golden));
    border-radius: 50%;
    opacity: 0.8;
    z-index: -1;
    animation: pulse 4s infinite;
}

.process-image-decoration::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--main-golden-pale), var(--accent-subtle));
    border-radius: 50%;
    opacity: 0.7;
}

.process-text {
    max-width: 600px;
}

.process-description p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Treatment Section */
.treatment {
    padding: 120px 0;
    background: var(--background-soft);
    text-align: center;
}

.treatment .section-title-center {
    margin-bottom: 4rem;
    color: var(--main-darkest);
}

.treatment-content {
    max-width: 800px;
    margin: 0 auto 60px;
}

.treatment-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    text-align: left;
    line-height: 1.8;
}

/* Schedule Section */
.schedule {
    padding: 120px 0;
    background: var(--background-white);
}

.schedule-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.schedule-title {
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    margin-bottom: 3rem;
    color: var(--main-darkest);
    font-family: 'Playfair Display', serif;
    text-align: center;
    width: 100%;
    grid-column: 1 / -1;
    font-weight: 600;
}

.schedule-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.schedule-text h2 {
    display: none;
}

.schedule-text p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.schedule-image {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.schedule-image img {
    width: 100%;
    height: auto;
    max-width: 60%;
    object-fit: contain;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
}

/* Footer */
.footer {
    background: var(--main-primary);
    color: var(--text-white);
    padding: 60px 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 10px;
    opacity: 0.9;
    color: var(--text-white);
}

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

.whatsapp-float-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: var(--text-white);
    padding: 16px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.whatsapp-float-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.whatsapp-float-text {
    display: none;
}

.whatsapp-float-btn:hover .whatsapp-float-text {
    display: block;
}

/* WhatsApp Mini Chat */
.whatsapp-mini-chat {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 320px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 999;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s ease;
    display: none;
}

.whatsapp-mini-chat.show {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
}

.chat-info h4 {
    color: #ffffff;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.chat-info span {
    font-size: 0.8rem;
    opacity: 0.9;
}

.chat-close {
    margin-left: auto;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.chat-close:hover {
    background: rgba(255,255,255,0.2);
}

.chat-body {
    padding: 20px;
}

.chat-message {
    background: var(--background-light);
    padding: 15px;
    border-radius: 15px 15px 15px 5px;
    margin-bottom: 15px;
}

.chat-message p {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.chat-message p:last-child {
    margin-bottom: 0;
}

.chat-footer {
    padding: 0 20px 20px;
}

.chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
}

.chat-btn:hover {
    background: #20BA5A;
    transform: translateY(-1px);
}

.chat-btn .whatsapp-icon {
    width: 18px;
    height: 18px;
}

/* Animações Avançadas */
@keyframes morphFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    25% {
        transform: translateY(-30px) rotate(90deg) scale(1.05);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        transform: translateY(-20px) rotate(180deg) scale(0.95);
        border-radius: 70% 30% 40% 60% / 50% 60% 40% 50%;
    }
    75% {
        transform: translateY(-40px) rotate(270deg) scale(1.02);
        border-radius: 30% 70% 60% 40% / 30% 70% 50% 60%;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(1deg);
    }
    66% {
        transform: translateY(10px) rotate(-1deg);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Animation Classes */
.animate-fade-down {
    animation: fadeInDown 0.8s ease-out;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease-out;
}

.animate-zoom-in {
    animation: zoomIn 0.8s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header Mobile */
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        gap: 1px;
    }
    
    .logo-title {
        font-size: 0.95rem;
    }
    
    .logo-crp {
        font-size: 0.75rem;
    }
    
    .hero {
        padding: 80px 0 60px;
        min-height: 90vh;
        background-attachment: scroll;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
        text-align: center;
        width: 100%;
    }
    
    .hero-main-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-photo {
        width: 90%;
        height: 100%;
    }
    
    .hero-photo-decoration {
        width: 80px;
        height: 80px;
        top: -15px;
        right: -15px;
    }
    
    .hero-photo-decoration::before {
        width: 50px;
        height: 50px;
    }
    
    .hero-description {
        font-size: 1.15rem;
    }
    
    .hero-quote {
        padding: 25px 20px;
        font-size: 1.05rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-quote::before {
        font-size: 3rem;
        top: 0px;
        left: 10px;
    }
    
    .hero-quote cite {
        font-size: 0.9rem;
        margin-top: 12px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-image img {
        max-width: 70%;
        height: auto;
    }
    
    .process-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .process-image img {
        max-width: 90%;
        min-height: 300px;
        max-height: 400px;
    }
    
    .process-image-decoration {
        width: 80px;
        height: 80px;
        bottom: -10px;
        left: -10px;
    }
    
    .process-image-decoration::before {
        width: 40px;
        height: 40px;
    }
    
    .schedule-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .schedule-title {
        font-size: 2.4rem;
        margin-bottom: 2.5rem;
        text-align: center;
        width: 100%;
    }
    
    .schedule-main-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .schedule-image img {
        max-width: 50%;
        height: auto;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefit-card {
        padding: 35px 25px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-title-center {
        font-size: 2.2rem;
    }
    
    .about, .schedule, .treatment, .process {
        padding: 80px 0;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float-btn {
        padding: 12px 16px;
    }
    
    .whatsapp-float-text {
        display: none !important;
    }
    
    .whatsapp-mini-chat {
        width: 280px;
        right: 20px;
        bottom: 90px;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 70px;
    }
    
    body {
        padding-top: var(--header-height);
    }
    
    .header {
        height: var(--header-height);
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo {
        gap: 8px;
    }
    
    .logo-title {
        font-size: 0.85rem;
    }
    
    .logo-crp {
        font-size: 0.7rem;
    }
    
    .nav-mobile {
        width: 80%;
        right: -80%;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        line-height: 1.2;
    }
    
    .schedule-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        line-height: 1.2;
    }
    
    .hero-photo-decoration {
        width: 100px;
        height: 100px;
        top: -10px;
        right: -10px;
    }
    
    .hero-photo-decoration::before {
        width: 40px;
        height: 40px;
    }
    
    .hero-quote {
        padding: 20px 15px;
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-quote::before {
        font-size: 2.5rem;
        top: 0px;
        left: 8px;
    }
    
    .hero-quote cite {
        font-size: 0.85rem;
        margin-top: 10px;
    }
    
    .btn-whatsapp {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .treatment-content p {
        text-align: center;
        font-size: 1.05rem;
    }
    
    .section-divider {
        width: 60px;
        height: 3px;
    }
    
    .about-image img {
        max-width: 60%;
        height: auto;
    }
    
    .schedule-image img {
        max-width: 40%;
        height: auto;
    }
    
    .process-image img {
        max-width: 95%;
        min-height: 250px;
        max-height: 320px;
    }
    
    .process-image-decoration {
        width: 60px;
        height: 60px;
        bottom: -8px;
        left: -8px;
    }
    
    .process-image-decoration::before {
        width: 30px;
        height: 30px;
    }
}