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

/* Variables - Paleta Neutros Acolhedores */
:root {
    /* Cores Principais */
    --primary-color: #25D366;
    --primary-hover: #20BA5A;
    --primary-light: #E8F5E8;

	/* Força o esquema claro e impede ajustes automáticos do navegador */
	color-scheme: light;

    /* Paleta Neutros Acolhedores */
    --warm-white: #F7F5F3;
    --soft-cream: #F0EBE3;
    --earthy-beige: #E6D5C7;
    --light-taupe: #DCD2C8;
    --medium-taupe: #CCC1B5;
    --warm-taupe: #BAA896;
    --deep-taupe: #A89780;

    /* Cores de Texto */
    --text-primary: #5A4F45;
    --text-secondary: #756A5E;
    --text-light: #9A8F83;
    --text-white: #FFFFFF;

    /* Cores de Fundo */
    --background-white: #FFFFFF;
    --background-light: #F7F5F3;
    --background-soft: #F0EBE3;
    --background-hero: #DCD2C8;
    --background-accent: #E6D5C7;

    /* Cores de Apoio */
    --accent-gold: #C9A961;
    --accent-copper: #B8947A;
    --warm-beige: #F0EBE3;
    --cool-taupe: #E6D5C7;

    /* Sombras */
    --shadow-light: 0 2px 15px rgba(90, 79, 69, 0.08);
    --shadow-medium: 0 4px 25px rgba(90, 79, 69, 0.12);
    --shadow-strong: 0 8px 35px rgba(90, 79, 69, 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.2rem);
    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(--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 - Com imagem de fundo */
.hero {
    background: linear-gradient(135deg, rgb(169 145 128 / 96%) 0%, rgb(174 127 76 / 92%) 50%, rgb(211 187 157 / 96%) 100%), repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
    background-size: cover;
    background-position: center;
    color: var(--text-white);
    padding: 100px 0 120px;
    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:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(184, 115, 51, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(201, 178, 153, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 60% 60%, rgba(240, 235, 227, 0.05) 0%, transparent 45%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: float 20s ease-in-out infinite;
}

@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: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 245, 243, 0.95) 100%);
    padding: 14px 28px;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.18), 0 2px 10px rgba(0,0,0,0.1);
    animation: fadeInDown 1s ease;
    border: 1.5px solid rgba(201, 169, 97, 0.25);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.22), 0 4px 12px rgba(0,0,0,0.12);
    border-color: rgba(201, 169, 97, 0.35);
}

.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: 2px 2px 10px rgba(0,0,0,0.35), 0 4px 15px rgba(0,0,0,0.2);
    text-align: center;
    max-width: 900px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 3rem;
    opacity: 0.96;
    color: #f9f9f9;
    font-weight: 400;
    line-height: 1.65;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.35);
    text-align: center;
    max-width: 700px;
    letter-spacing: 0.2px;
}

.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(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.feature-icon {
    width: 28px;
    height: 28px;
    color: var(--accent-gold);
    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(255, 255, 255, 0.85);
    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 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.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: var(--accent-gold);
}

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

.hero-photo-container {
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

.hero-photo {
    width: 450px;
    height: 550px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.35), 0 10px 20px rgba(0,0,0,0.2);
    border: 5px solid rgba(255,255,255,0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.hero-photo:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0,0,0,0.45), 0 15px 30px rgba(0,0,0,0.25);
    border-color: rgba(255,255,255,0.25);
}

.hero-photo-decoration {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.4), rgba(184, 148, 122, 0.3));
    border-radius: 50%;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
    filter: blur(1px);
}

.hero-photo-decoration::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(240, 235, 227, 0.3), rgba(186, 168, 150, 0.2));
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite reverse;
}

.hero-photo-decoration::after {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.25), transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.stat-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 245, 243, 0.95) 100%);
    padding: 24px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.25), 0 5px 15px rgba(0,0,0,0.15);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(201, 169, 97, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3), 0 8px 20px rgba(0,0,0,0.2);
    border-color: rgba(201, 169, 97, 0.4);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--medium-taupe);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.stat-label {
    display: block;
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

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

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 213, 199, 0.3) 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(216, 196, 182, 0.25) 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 {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: 
        linear-gradient(135deg, 
            rgba(240, 235, 227, 1) 0%, 
            rgba(230, 213, 199, 0.8) 50%,
            rgba(240, 235, 227, 1) 100%
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(255, 255, 255, 0.4) 50px,
            rgba(255, 255, 255, 0.4) 51px
        );
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.05) 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(247, 245, 243, 0.8) 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(230, 213, 199, 1) 0%, 
            rgba(216, 196, 182, 0.6) 50%,
            rgba(230, 213, 199, 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(212, 175, 55, 0.3) 50%, 
        transparent 100%
    );
}

.treatment::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 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(247, 245, 243, 0.8) 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(201, 178, 153, 0.15) 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(230, 213, 199, 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 {
    max-width: 100%;
    height: auto;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background:
        linear-gradient(135deg,
            rgba(247, 245, 243, 1) 0%,
            rgba(240, 235, 227, 0.9) 50%,
            rgba(247, 245, 243, 1) 100%
        );
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-header {
    text-align: center;
    margin-top: 1.5rem;
}

.testimonials-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.testimonials-track-container {
    flex: 1;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(247, 245, 243, 0.95) 100%);
    padding: 35px 30px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(230, 213, 199, 0.4);
    position: relative;
    overflow: hidden;
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
}

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

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

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(201, 169, 97, 0.3);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.testimonial-stars i {
    color: #FFA500;
    font-size: 1rem;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 25px;
    opacity: 0.1;
}

.testimonial-quote i {
    font-size: 3rem;
    color: var(--accent-gold);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-text.truncated {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    color: var(--accent-gold);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.95rem;
    font-style: normal;
    font-weight: 600;
    display: inline;
    margin-left: 4px;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: var(--accent-copper);
}

.testimonial-author {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.testimonial-platform {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.slider-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 245, 243, 0.95) 100%);
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--accent-gold);
    font-size: 1.2rem;
    box-shadow: var(--shadow-light);
    flex-shrink: 0;
}

.slider-btn:hover {
    background: var(--accent-gold);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 2rem 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.3);
    border: 2px solid rgba(201, 169, 97, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(201, 169, 97, 0.6);
}

.testimonials-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(230, 213, 199, 0.5);
}

.testimonials-note {
    font-size: 1rem;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: var(--shadow-light);
}

/* Footer */
.footer {
    background: 
        linear-gradient(135deg, 
            rgba(201, 178, 153, 1) 0%, 
            rgba(184, 160, 130, 1) 50%,
            rgba(166, 139, 107, 1) 100%
        );
    color: var(--text-white);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.5) 50%, 
        transparent 100%
    );
}

.footer::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(184, 115, 51, 0.06) 0%, transparent 50%);
    z-index: 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.footer-info {
    text-align: center;
}

.footer-info p {
    margin-bottom: 10px;
    opacity: 0.9;
    color: var(--text-white);
    font-size: 1rem;
}

.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: var(--primary-color);
    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(--primary-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: 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: var(--primary-color);
    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: #f0f0f0;
    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(--primary-color);
    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: var(--primary-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 16px;
    }

    .hero {
        padding: 40px 0 60px;
        min-height: auto;
        background-attachment: scroll;
        position: relative;
    }

    .hero::after {
        width: 450px;
        height: 450px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    /* Badge Mobile - Mais Destaque */
    .hero-badge {
        padding: 16px 32px;
        border-radius: 50px;
        margin-bottom: 16px;
        box-shadow: 0 6px 25px rgba(0,0,0,0.2), 0 2px 10px rgba(0,0,0,0.15);
        background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 252, 248, 0.98) 100%);
        border: 2px solid rgba(201, 169, 97, 0.4);
    }

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

    /* Títulos Mobile - Mais Impactantes */
    .hero-title {
        font-size: clamp(2rem, 7vw, 2.6rem);
        margin-bottom: 1.2rem;
        text-align: center;
        width: 100%;
        line-height: 1.2;
        padding: 0 10px;
        text-shadow: 3px 3px 15px rgba(0,0,0,0.45), 0 2px 8px rgba(0,0,0,0.3);
        font-weight: 800;
    }

    .hero-subtitle {
        font-size: clamp(1.1rem, 4.5vw, 1.3rem);
        margin-bottom: 2rem;
        line-height: 1.65;
        padding: 0 12px;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.35), 0 1px 4px rgba(0,0,0,0.2);
        font-weight: 400;
    }

    /* Layout Mobile - Reorganizado */
    .hero-main-content {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: 0;
    }

    /* Foto Mobile - DESTAQUE MÁXIMO */
    .hero-photo {
        width: 100%;
        max-width: 420px;
        height: 520px;
        margin: 0 auto;
        border-radius: 28px;
        border: 6px solid rgba(255,255,255,0.25);
        box-shadow:
            0 25px 60px rgba(0,0,0,0.4),
            0 12px 25px rgba(0,0,0,0.3),
            inset 0 1px 0 rgba(255,255,255,0.1);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hero-photo:hover {
        transform: translateY(-8px) scale(1.01);
        box-shadow:
            0 35px 80px rgba(0,0,0,0.5),
            0 18px 35px rgba(0,0,0,0.35);
    }

    .hero-photo-container {
        max-width: 420px;
        margin: 0 auto;
        filter: drop-shadow(0 20px 45px rgba(0,0,0,0.3));
        position: relative;
    }

    .hero-photo-decoration {
        width: 130px;
        height: 130px;
        top: -28px;
        right: -28px;
        background: linear-gradient(135deg, rgba(201, 169, 97, 0.5), rgba(184, 148, 122, 0.4));
        filter: blur(2px);
    }

    .hero-photo-decoration::before {
        width: 85px;
        height: 85px;
        background: linear-gradient(135deg, rgba(240, 235, 227, 0.4), rgba(186, 168, 150, 0.3));
    }

    .hero-photo-decoration::after {
        width: 75px;
        height: 75px;
        top: -38px;
        left: -38px;
    }

    /* Stats Mobile - REDESIGN COMPLETO COM MAIS DESTAQUE */
    .hero-stats {
        position: static;
        transform: none;
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
        margin-bottom: 0;
        justify-content: center;
        flex-wrap: nowrap;
        padding: 0;
    }

    .stat-item {
        padding: 24px 32px;
        flex: none;
        width: 100%;
        max-width: 100%;
        min-width: auto;
        border-radius: 20px;
        box-shadow:
            0 10px 35px rgba(0,0,0,0.25),
            0 5px 15px rgba(0,0,0,0.15),
            inset 0 1px 0 rgba(255,255,255,0.5);
        border: 3px solid rgba(201, 169, 97, 0.4);
        background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(252, 248, 243, 0.98) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }

    .stat-item:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow:
            0 15px 45px rgba(0,0,0,0.3),
            0 8px 20px rgba(0,0,0,0.2);
        border-color: rgba(201, 169, 97, 0.6);
    }

    .stat-number {
        font-size: 2rem;
        margin-bottom: 0;
        font-weight: 900;
        color: var(--accent-gold);
    }

    .stat-label {
        font-size: 0.95rem;
        line-height: 1.3;
        font-weight: 700;
        color: var(--text-primary);
    }

    /* Features Mobile - SIMPLIFICADO E DIRETO */
    .hero-features {
        gap: 16px;
        margin-bottom: 2.5rem;
        margin-top: 36px;
    }

    .feature-item {
        padding: 24px 22px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.16);
        backdrop-filter: blur(16px);
        border: 2px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 6px 22px rgba(0,0,0,0.15);
        transition: all 0.4s ease;
        text-align: center;
    }

    .feature-item:hover {
        background: rgba(255, 255, 255, 0.22);
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .feature-icon {
        width: 36px;
        height: 36px;
        margin: 0 auto 12px;
        background: rgba(201, 169, 97, 0.2);
        border-radius: 50%;
        padding: 8px;
    }

    .feature-text {
        text-align: center;
    }

    .feature-text h3 {
        font-size: 1.15rem;
        margin-bottom: 8px;
        font-weight: 800;
        letter-spacing: 0.3px;
    }

    .feature-text p {
        font-size: 0.98rem;
        line-height: 1.6;
        opacity: 0.95;
    }

    /* CTA Mobile - SUPER DESTAQUE */
    .hero-cta-group {
        align-items: center;
        width: 100%;
        gap: 20px;
        margin-top: 8px;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
        font-size: 1.1rem;
        padding: 22px 40px;
        border-radius: 18px;
        font-weight: 800;
        box-shadow:
            0 10px 35px rgba(37, 211, 102, 0.4),
            0 4px 15px rgba(37, 211, 102, 0.3);
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .btn-primary:hover {
        box-shadow:
            0 15px 45px rgba(37, 211, 102, 0.5),
            0 6px 20px rgba(37, 211, 102, 0.4);
        transform: translateY(-2px);
    }

    .hero-trust-text {
        font-size: 0.9rem;
        justify-content: center;
        opacity: 1;
        font-weight: 600;
        line-height: 1.6;
        text-align: center;
        background: rgba(255, 255, 255, 0.15);
        padding: 12px 20px;
        border-radius: 12px;
        backdrop-filter: blur(8px);
    }

    .trust-icon {
        width: 22px;
        height: 22px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .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;
    }
    
    .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 {
        padding: 90px 0 80px;
    }

    .schedule, .treatment, .testimonials {
        padding: 80px 0;
    }

    .testimonials-slider {
        gap: 10px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .testimonial-card {
        padding: 30px 25px;
        min-width: 100%;
    }

    .testimonials-note {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .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) {
    .container {
        padding: 0 14px;
    }

    .hero {
        padding: 35px 0 50px;
    }

    .hero::after {
        width: 350px;
        height: 350px;
    }

    /* Badge Mobile Pequeno */
    .hero-badge {
        padding: 14px 28px;
        margin-bottom: 14px;
        border-width: 2px;
    }

    .badge-text {
        font-size: 0.88rem;
        letter-spacing: 0.4px;
        font-weight: 800;
    }

    /* Títulos Mobile Pequeno */
    .hero-title {
        font-size: clamp(1.8rem, 7.5vw, 2.3rem);
        margin-bottom: 1.1rem;
        line-height: 1.15;
        padding: 0 8px;
        font-weight: 800;
    }

    .hero-subtitle {
        font-size: clamp(1.05rem, 5vw, 1.2rem);
        margin-bottom: 1.8rem;
        line-height: 1.6;
        padding: 0 8px;
    }

    .schedule-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        line-height: 1.2;
    }

    /* Foto Mobile Pequeno - DESTAQUE */
    .hero-image {
        margin-bottom: 0;
    }

    .hero-photo {
        width: 100%;
        max-width: 380px;
        height: 480px;
        border-radius: 24px;
        border: 5px solid rgba(255,255,255,0.25);
        box-shadow:
            0 20px 50px rgba(0,0,0,0.4),
            0 10px 22px rgba(0,0,0,0.3);
    }

    .hero-photo-container {
        max-width: 380px;
    }

    .hero-photo-decoration {
        width: 115px;
        height: 115px;
        top: -24px;
        right: -24px;
    }

    .hero-photo-decoration::before {
        width: 75px;
        height: 75px;
    }

    .hero-photo-decoration::after {
        width: 65px;
        height: 65px;
        top: -32px;
        left: -32px;
    }

    /* Stats Mobile Pequeno - Layout em Coluna */
    .hero-stats {
        gap: 14px;
        margin-top: 28px;
        margin-bottom: 0;
        padding: 0;
        flex-direction: column;
    }

    .stat-item {
        flex: none;
        width: 100%;
        max-width: 100%;
        min-width: auto;
        padding: 22px 28px;
        border-radius: 18px;
        border-width: 3px;
    }

    .stat-number {
        font-size: 1.9rem;
        margin-bottom: 0;
    }

    .stat-label {
        font-size: 0.9rem;
        line-height: 1.35;
    }

    /* Features Mobile Pequeno */
    .hero-features {
        gap: 14px;
        margin-bottom: 2.2rem;
        margin-top: 32px;
    }

    .feature-item {
        padding: 22px 20px;
        border-radius: 16px;
        border-width: 2px;
    }

    .feature-icon {
        width: 34px;
        height: 34px;
        padding: 7px;
    }

    .feature-text h3 {
        font-size: 1.1rem;
        font-weight: 800;
    }

    .feature-text p {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    /* CTA Mobile Pequeno */
    .hero-cta-group {
        gap: 18px;
    }

    .btn-primary {
        padding: 20px 36px;
        font-size: 1.05rem;
        border-radius: 16px;
        font-weight: 800;
    }

    .hero-trust-text {
        font-size: 0.87rem;
        padding: 11px 18px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 12px;
    }

    .trust-icon {
        width: 20px;
        height: 20px;
    }

    /* Outros elementos */
    .btn-whatsapp {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonial-author {
        font-size: 1rem;
    }

    .testimonials-note {
        font-size: 0.85rem;
        padding: 8px 16px;
        flex-direction: column;
        gap: 4px;
    }

    .treatment-content p {
        text-align: center;
        font-size: 1.05rem;
    }

    .section-divider {
        width: 60px;
        height: 3px;
    }
}