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

/* Variables - Paleta Patricia */
:root {
    /* Cores Principais */
    --primary-color: #9CAF88;
    --primary-hover: #8FA57A;
    --primary-light: #F0F4EF;
    --whatsapp-green: #25D366;
    --whatsapp-green-hover: #20BA5A;
	
	/* Força o esquema claro e impede ajustes automáticos do navegador */
	color-scheme: light;
    
    /* Paleta Base */
    --warm-white: #F0F4EF;
    --soft-cream: #F0F4EF;
    --earthy-beige: #DDE7D8;
    --light-taupe: #C7D4C0;
    --medium-taupe: #B8C5B1;
    --warm-taupe: #A9BA9F;
    --deep-taupe: #9CAF88;
    
    /* Cores de Texto */
    --text-primary: #3F4A36;
    --text-secondary: #58644E;
    --text-light: #73826A;
    --text-white: #FFFFFF;
    
    /* Cores de Fundo */
    --background-white: #FFFFFF;
    --background-light: #F0F4EF;
    --background-soft: #E8EFE4;
    --background-hero: #B8C5B1;
    --background-accent: #9CAF88;
    
    /* Cores de Apoio */
    --accent-gold: #B8C5B1;
    --accent-copper: #9CAF88;
    --warm-beige: #F0F4EF;
    --cool-taupe: #DDE7D8;
    
    /* Sombras */
    --shadow-light: 0 2px 15px rgba(63, 74, 54, 0.08);
    --shadow-medium: 0 4px 25px rgba(63, 74, 54, 0.12);
    --shadow-strong: 0 8px 35px rgba(63, 74, 54, 0.15);
    
    /* Outros */
    --border-radius: 12px;
    --border-radius-large: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
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;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    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;
}

/* Buttons */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--whatsapp-green);
    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(--whatsapp-green-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 - Com imagem de fundo */
.hero {
    background:
        linear-gradient(135deg, rgba(66, 78, 58, 0.98) 0%, rgba(122, 142, 107, 0.95) 48%, rgba(221, 231, 216, 0.96) 100%),
        linear-gradient(90deg, rgba(240, 244, 239, 0.1) 0%, transparent 36%, rgba(255, 255, 255, 0.18) 100%);
    background-size: cover;
    background-position: center;
    color: var(--text-white);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, rgba(240, 244, 239, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(240, 244, 239, 0.06) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.42;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: -14%;
    width: 46%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(240, 244, 239, 0.18) 45%, transparent 100%);
    transform: skewX(-12deg);
    z-index: 1;
    animation: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.1); }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
    align-items: center;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240, 244, 239, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.48);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 14px 34px rgba(39, 49, 34, 0.18);
    animation: fadeInDown 1s ease;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.15;
    color: var(--text-white);
    text-shadow: 0 3px 18px rgba(31, 42, 27, 0.32);
    text-align: center;
    max-width: 900px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    color: var(--text-white);
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 2px 12px rgba(31, 42, 27, 0.28);
    text-align: center;
    max-width: 700px;
}

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

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

/* Hero Features */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(240, 244, 239, 0.14);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(240, 244, 239, 0.34);
    box-shadow: 0 16px 36px rgba(31, 42, 27, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(240, 244, 239, 0.2);
    transform: translateX(10px);
}

.feature-icon {
    width: 28px;
    height: 28px;
    color: #FFFFFF;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.feature-text p {
    font-size: 0.95rem;
    color: rgba(240, 244, 239, 0.9);
    margin: 0;
    line-height: 1.4;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.btn-primary {
    font-size: 1.15rem;
    padding: 20px 40px;
    box-shadow: 0 14px 34px rgba(31, 42, 27, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 18px 44px rgba(31, 42, 27, 0.26);
}

.hero-trust-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.trust-icon {
    width: 18px;
    height: 18px;
    color: #DDE7D8;
}

.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 26px 60px rgba(31, 42, 27, 0.34);
    border: 4px solid rgba(240, 244, 239, 0.16);
    transition: var(--transition);
}

.hero-photo:hover {
    transform: translateY(-10px);
    box-shadow: 0 34px 72px rgba(31, 42, 27, 0.42);
}

.hero-photo-decoration {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 72%;
    height: 72%;
    background: linear-gradient(135deg, rgba(240, 244, 239, 0.42), rgba(156, 175, 136, 0.2));
    border-radius: var(--border-radius-large);
    opacity: 0.9;
    z-index: -1;
    animation: none;
}

.hero-photo-decoration::before {
    content: '';
    position: absolute;
    inset: 12px;
    width: auto;
    height: auto;
    transform: none;
    background: transparent;
    border: 1px solid rgba(240, 244, 239, 0.5);
    border-radius: calc(var(--border-radius-large) - 4px);
    opacity: 1;
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.stat-item {
    background: rgba(250, 252, 249, 0.96);
    width: 300px;
    padding: 18px 22px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 16px 38px rgba(31, 42, 27, 0.18);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(156, 175, 136, 0.35);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(31, 42, 27, 0.24);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #66785A;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: break-word;
}

/* About Section */
.about {
    padding: 120px 0;
    background: 
        linear-gradient(180deg, 
            rgba(255, 255, 255, 1) 0%, 
            rgba(240, 244, 239, 1) 100%
        );
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 197, 177, 0.28) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(156, 175, 136, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

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

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

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

.section-title {
    font-size: 2.6rem;
    color: var(--text-primary);
    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 {
    width: 68%;
    max-width: 340px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: 
        linear-gradient(135deg,
            rgba(221, 231, 216, 1) 0%,
            rgba(240, 244, 239, 0.92) 48%,
            rgba(199, 212, 192, 0.82) 100%
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(255, 255, 255, 0.34) 50px,
            rgba(255, 255, 255, 0.34) 51px
        );
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(156, 175, 136, 0.28);
}

.benefits::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(156, 175, 136, 0.1) 0%, transparent 70%);
    z-index: 0;
}

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

.benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 244, 239, 0.9) 100%);
    padding: 45px 35px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--cool-taupe);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--medium-taupe), var(--accent-gold), var(--medium-taupe));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

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

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

.benefit-icon i {
    font-size: 3rem;
    color: var(--medium-taupe);
    background: var(--warm-white);
    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(--accent-gold);
    background: var(--soft-cream);
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    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(--text-primary);
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Treatment Section */
.treatment {
    padding: 120px 0;
    background: 
        linear-gradient(to bottom, 
            rgba(240, 244, 239, 1) 0%, 
            rgba(184, 197, 177, 0.32) 50%,
            rgba(240, 244, 239, 1) 100%
        );
    text-align: center;
    position: relative;
    overflow: hidden;
}

.treatment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(156, 175, 136, 0.45) 50%, 
        transparent 100%
    );
}

.treatment::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(156, 175, 136, 0.45) 50%, 
        transparent 100%
    );
}

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

.treatment-content {
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.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: 
        linear-gradient(180deg, 
            rgba(255, 255, 255, 1) 0%, 
            rgba(240, 244, 239, 0.9) 50%,
            rgba(255, 255, 255, 1) 100%
        );
    position: relative;
    overflow: hidden;
}

.schedule::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(156, 175, 136, 0.22) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.schedule::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(184, 197, 177, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

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

.schedule-title {
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    margin-bottom: 3rem;
    color: var(--text-primary);
    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; /* Esconder o h2 original já que temos o título separado */
}

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

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

.schedule-image img {
    width: 70%;
    max-width: 360px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Privacy Page */
.privacy-body {
    background: var(--background-light);
    color: var(--text-primary);
}

.privacy-page {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--background-light) 0%, var(--background-white) 52%, var(--background-soft) 100%);
}

.privacy-hero {
    padding: 64px 0 46px;
    background: linear-gradient(135deg, rgba(240, 244, 239, 0.96) 0%, rgba(221, 231, 216, 0.94) 100%);
    border-bottom: 1px solid rgba(156, 175, 136, 0.32);
}

.privacy-header-tools {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.privacy-back-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--text-primary);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.privacy-back-link:hover {
    color: var(--primary-hover);
    transform: translateX(-3px);
}

.privacy-kicker {
    display: inline-flex;
    width: fit-content;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(156, 175, 136, 0.18);
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.privacy-hero h1 {
    max-width: 780px;
    color: var(--text-primary);
    font-size: 3.6rem;
    margin-bottom: 18px;
}

.privacy-hero p {
    max-width: 760px;
    color: var(--text-secondary);
    font-size: 1.13rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.privacy-updated {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
}

.privacy-content {
    padding: 48px 0 72px;
}

.privacy-content .container {
    display: grid;
    gap: 18px;
    max-width: 920px;
}

.privacy-card {
    background: var(--background-white);
    border: 1px solid rgba(156, 175, 136, 0.24);
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    padding: 30px;
}

.privacy-card h2 {
    color: var(--text-primary);
    font-size: 1.32rem;
    margin-bottom: 12px;
}

.privacy-card p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.75;
}

.privacy-card p:last-child {
    margin-bottom: 0;
}

.privacy-card a {
    color: var(--primary-hover);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.privacy-card a:hover {
    color: var(--text-primary);
}

/* Footer */
.footer {
    background:
        linear-gradient(145deg, #3F4A36 0%, #66785A 52%, #8FA57A 100%),
        linear-gradient(90deg, rgba(240, 244, 239, 0.08) 0%, transparent 100%);
    color: var(--text-white);
    padding: 88px 0 34px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(240, 244, 239, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(240, 244, 239, 0.05) 1px, transparent 1px);
    background-size: 88px 88px;
    opacity: 0.35;
    z-index: 0;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(240, 244, 239, 0.62) 50%, transparent 100%);
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 24px;
}

.footer-brand {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(240, 244, 239, 0.13);
    border: 1px solid rgba(240, 244, 239, 0.28);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-white);
}

.footer-brand h3 {
    margin: 14px 0 10px;
    color: var(--text-white);
    font-size: clamp(2rem, 4vw, 2.6rem);
}

.footer-brand p {
    margin: 0;
    color: rgba(240, 244, 239, 0.88);
    font-size: 1.05rem;
    line-height: 1.75;
}

.footer-contacts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.footer-contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 14px;
    text-decoration: none;
    background: rgba(240, 244, 239, 0.11);
    border: 1px solid rgba(240, 244, 239, 0.24);
    color: var(--text-white);
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 30px rgba(31, 42, 27, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.footer-contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(31, 42, 27, 0.22);
    background: rgba(240, 244, 239, 0.17);
    border-color: rgba(240, 244, 239, 0.36);
}

.footer-contact-card i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(240, 244, 239, 0.18);
    border: 1px solid rgba(240, 244, 239, 0.18);
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-contact-card div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-contact-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.85;
}

.footer-contact-card strong {
    color: var(--text-white);
    font-size: 1rem;
    line-height: 1.2;
}

.footer-contact-static {
    cursor: default;
}

.footer-contact-static:hover {
    transform: none;
    box-shadow: none;
    background: rgba(240, 244, 239, 0.11);
    border-color: rgba(240, 244, 239, 0.24);
}

.footer-cta-wrap {
    display: flex;
    justify-content: center;
}

.footer-cta {
    min-width: 260px;
    justify-content: center;
}

.footer-bottom {
    margin-top: 6px;
    padding-top: 18px;
    border-top: 1px solid rgba(240, 244, 239, 0.2);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(240, 244, 239, 0.78);
    font-size: 0.92rem;
}

.footer-bottom p + p {
    margin-top: 8px;
}

.footer-bottom a {
    color: var(--text-white);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-bottom a:hover {
    color: var(--soft-cream);
}

.footer .btn-whatsapp {
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.28);
}

.footer .btn-whatsapp:hover {
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.35);
}

@media (max-width: 900px) {
    .footer-contacts {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 44px 0 34px;
    }

    .privacy-hero h1 {
        font-size: 2.25rem;
    }

    .privacy-hero p {
        font-size: 1rem;
    }

    .privacy-content {
        padding: 34px 0 54px;
    }

    .privacy-card {
        padding: 22px;
    }

    .footer {
        padding: 72px 0 30px;
    }

    .footer-contacts {
        grid-template-columns: 1fr;
    }

    .footer-contact-card {
        padding: 14px;
    }

    .footer-cta {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-badge {
        font-size: 0.72rem;
    }

    .footer-brand p {
        font-size: 0.98rem;
    }

    .footer-bottom p {
        font-size: 0.86rem;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.whatsapp-float-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--whatsapp-green);
    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: var(--whatsapp-green-hover);
    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: 24px;
    right: 30px;
    width: 320px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1001;
    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: var(--primary-color);
    color: var(--text-primary);
    padding: 15px 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.chat-info h4 {
    color: var(--text-primary);
    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: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.chat-close:hover {
    background: rgba(63, 74, 54, 0.12);
}

.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: var(--whatsapp-green);
    color: var(--text-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: var(--whatsapp-green-hover);
    transform: translateY(-1px);
}

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

/* Animations */
@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);
    }
    50% {
        transform: scale(1.05);
    }
}

/* 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;
    }
    
    .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: 68%;
        height: 68%;
        top: -14px;
        right: -14px;
    }
    
    .hero-photo-decoration::before {
        inset: 10px;
        width: auto;
        height: auto;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-badge {
        padding: 10px 20px;
    }
    
    .badge-text {
        font-size: 0.85rem;
    }
    
    .hero-features {
        gap: 16px;
        margin-bottom: 2rem;
    }
    
    .feature-item {
        padding: 16px;
    }
    
    .feature-text h3 {
        font-size: 1rem;
    }
    
    .feature-text p {
        font-size: 0.9rem;
    }
    
    .hero-cta-group {
        align-items: center;
        width: 100%;
    }
    
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust-text {
        font-size: 0.85rem;
        justify-content: center;
    }
    
    .hero-stats {
        position: static;
        transform: none;
        flex-direction: row;
        gap: 12px;
        margin-top: -18px;
        justify-content: center;
        width: 100%;
    }
    
    .stat-item {
        width: auto;
        padding: 16px 14px;
        flex: 1;
        max-width: 180px;
        min-width: 0;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        line-height: 1.25;
        white-space: normal;
        overflow-wrap: break-word;
    }
    
    .hero-photo-container {
        margin-bottom: 30px;
    }
    
    .about-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .about-text {
        display: contents;
    }

    .about-text .section-title {
        order: 1;
    }

    .about-text .section-divider {
        order: 2;
        margin: 1rem auto 0.8rem;
    }

    .about-image {
        order: 3;
    }

    .about-image img {
        width: 72%;
        max-width: 300px;
    }

    .about-text .about-description {
        order: 4;
    }

    .about-text .btn-whatsapp {
        order: 5;
        margin: 1.2rem auto 0;
    }
    
    .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 {
        display: flex;
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .schedule-image {
        order: 1;
    }

    .schedule-image img {
        width: 90%;
        max-width: 320px;
    }

    .schedule-text {
        order: 2;
    }
    
    .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 {
        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: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .schedule-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        line-height: 1.2;
    }
    
    .hero-photo-decoration {
        width: 68%;
        height: 68%;
        top: -10px;
        right: -10px;
    }
    
    .hero-photo-decoration::before {
        inset: 8px;
        width: auto;
        height: auto;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 8px;
        flex-wrap: wrap;
        margin-top: -20px;
    }
    
    .stat-item {
        width: auto;
        flex: 1;
        min-width: 0;
        padding: 14px 10px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.72rem;
        line-height: 1.3;
        white-space: normal;
        overflow-wrap: break-word;
    }
    
    .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;
    }

    .whatsapp-mini-chat {
        width: calc(100vw - 32px);
        right: 16px;
        bottom: 16px;
    }
}
