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

/* Variables - Paleta Instituto Aluma: laranja suave, pêssego e marfim */
:root {
    /* Cores da identidade */
    --palette-orange: #C96F54;
    --palette-tangerine: #DFA087;
    --palette-peach: #F1D4C8;
    --palette-terracotta: var(--palette-orange);
    --palette-sand: #EAE0DA;
    --palette-ivory: #FCFAF8;
    --palette-navy: #3B4142;
    --palette-olive: var(--palette-orange);
    --palette-gold: var(--palette-tangerine);

    /* Cores funcionais */
    --primary-color: #B65B42;
    --primary-hover: #A54E38;
    --primary-light: var(--palette-ivory);
    --cta-color: #25D366;
    --cta-hover: #20BA5A;
    --cta-text: #FFFFFF;
    --whatsapp-green: var(--cta-color);
    --whatsapp-green-hover: var(--cta-hover);
    --contact-accent: var(--cta-color);
    --contact-accent-hover: var(--cta-hover);
    --contact-surface: #FCFAF8;
    --contact-border: rgba(37, 211, 102, 0.24);

    /* RGB helpers */
    --terracotta-rgb: 201, 111, 84;
    --beige-rgb: 252, 250, 248;
    --olive-rgb: 201, 111, 84;
    --gold-rgb: 241, 212, 200;
    --white-rgb: 255, 255, 255;
	
	/* Força o esquema claro e impede ajustes automáticos do navegador */
	color-scheme: light;
    
    /* Paleta Base */
    --warm-white: #FFFFFF;
    --soft-cream: var(--palette-ivory);
    --earthy-beige: var(--palette-ivory);
    --light-taupe: #EEE7E2;
    --medium-taupe: var(--palette-olive);
    --warm-taupe: var(--palette-terracotta);
    --deep-taupe: var(--palette-navy);
    
    /* Cores de Texto */
    --text-primary: var(--palette-navy);
    --text-secondary: #666160;
    --text-light: #807A77;
    --text-white: #FFFFFF;
    
    /* Cores de Fundo */
    --background-white: #FFFFFF;
    --background-light: #FAF7F5;
    --background-soft: #F4ECE8;
    --background-hero: var(--palette-terracotta);
    --background-accent: #3B4142;
    
    /* Cores de Apoio */
    --accent-gold: var(--palette-gold);
    --accent-copper: var(--palette-terracotta);
    --warm-beige: var(--palette-ivory);
    --cool-taupe: #EEE7E2;
    
    /* Sombras */
    --shadow-light: 0 2px 15px rgba(var(--olive-rgb), 0.08);
    --shadow-medium: 0 4px 25px rgba(var(--olive-rgb), 0.12);
    --shadow-strong: 0 8px 35px rgba(var(--olive-rgb), 0.16);
    
    /* Outros */
    --border-radius: 8px;
    --border-radius-large: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
body {
    font-family: 'Poppins', -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: 'Poppins', sans-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(--cta-color);
    color: var(--cta-text);
    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: 'Poppins', sans-serif;
}

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

.section-cta-button {
    position: relative;
    z-index: 1;
}

.section-cta-button:not(.btn-center) {
    margin-top: 30px;
}

.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:
        radial-gradient(circle at 12% 6%, rgba(var(--white-rgb), 0.9) 0%, transparent 36%),
        linear-gradient(140deg, #FCFAF8 0%, #F8EEE9 52%, #F1DCD3 100%);
    background-size: cover;
    background-position: center;
    color: var(--text-primary);
    padding: 30px 0 72px;
    min-height: auto;
    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(115deg, rgba(var(--white-rgb), 0.18) 0%, rgba(var(--terracotta-rgb), 0.025) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 180px;
    background: linear-gradient(180deg, transparent 0%, rgba(var(--terracotta-rgb), 0.045) 100%);
    z-index: 1;
}

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

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: 0;
    animation: fadeInDown 1s ease;
}

.hero-brand-logo {
    display: block;
    width: clamp(145px, 14vw, 205px);
    height: auto;
    opacity: 1;
}

.hero-badge::after {
    display: none;
}

.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(2rem, 3.7vw, 2.85rem);
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.15;
    color: var(--text-primary);
    text-shadow: none;
    text-align: left;
    max-width: 680px;
}

.hero-authority {
    display: grid;
    gap: 4px;
    margin: 0;
    color: var(--text-primary);
    text-align: left;
    line-height: 1.45;
}

.hero-authority strong {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
    align-items: center;
    gap: clamp(42px, 6vw, 76px);
    width: 100%;
}

.hero-copy {
    display: grid;
    justify-items: start;
    gap: 20px;
}

.hero-transform {
    max-width: 650px;
    margin: 0;
    color: var(--text-secondary);
    font-size: clamp(1.05rem, 1.5vw, 1.22rem);
    line-height: 1.7;
}

.hero-cta {
    min-height: 54px;
    margin-top: 4px;
    padding: 15px 26px;
    font-size: 0.98rem;
}

.hero-opening-image {
    position: relative;
    margin: 0;
    z-index: 0;
}

.hero-opening-image::before {
    content: '';
    position: absolute;
    inset: -16px 16px 16px -16px;
    border: 1px solid rgba(var(--terracotta-rgb), 0.18);
    border-radius: 26px;
    z-index: -1;
}

.hero-opening-image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: 68% center;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(81, 67, 61, 0.12);
}

.hero-cycle {
    display: grid;
    gap: 10px;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.hero-cycle p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.6;
    text-shadow: none;
}

.hero-cycle .hero-cycle-intro {
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-cycle-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.4fr);
    overflow: hidden;
    border: 1px solid rgba(var(--terracotta-rgb), 0.14);
    border-radius: 12px;
    background: rgba(var(--white-rgb), 0.66);
    box-shadow: 0 12px 32px rgba(var(--terracotta-rgb), 0.08);
    backdrop-filter: blur(8px);
}

.hero-cycle-quote-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 18px 20px;
    background: rgba(var(--white-rgb), 0.52);
    text-align: left;
}

.hero-cycle-quote-block i {
    color: var(--palette-orange);
    font-size: 1rem;
}

.hero-cycle .hero-cycle-quote {
    color: var(--text-primary);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.4;
}

.hero-cycle-story {
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 18px 22px;
    text-align: left;
}

.hero-cycle .hero-cycle-repeat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: var(--palette-orange);
    font-size: 0.88rem;
    font-weight: 700;
}

.hero-cycle-repeat i {
    font-size: 0.78rem;
}

.hero-cycle .hero-cycle-conclusion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: 8px;
    border: 1px solid rgba(var(--terracotta-rgb), 0.1);
    background: rgba(var(--white-rgb), 0.58);
    color: var(--text-primary);
    font-size: 0.92rem;
    font-weight: 600;
}

.hero-cycle-conclusion i {
    flex: 0 0 auto;
    color: var(--palette-orange);
}

.hero-mobile-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 4px;
}

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

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

.hero-solution {
    margin: 0 0 20px;
    padding: 18px 20px;
    border-left: 4px solid var(--palette-orange);
    border-radius: 8px;
    background: rgba(var(--white-rgb), 0.58);
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.65;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(var(--white-rgb), 0.58);
    padding: 16px 18px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--terracotta-rgb), 0.12);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(var(--white-rgb), 0.82);
    transform: translateX(10px);
}

.feature-icon {
    width: 28px;
    height: 28px;
    color: var(--palette-orange);
    flex-shrink: 0;
}

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

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

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    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(var(--olive-rgb), 0.28);
}

.btn-primary:hover {
    box-shadow: 0 12px 40px rgba(var(--olive-rgb), 0.36);
}

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

.trust-icon {
    width: 18px;
    height: 18px;
    color: var(--palette-orange);
}

.hero-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.hero-professional-label {
    display: grid;
    gap: 2px;
    margin: 0;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.35;
}

.hero-professional-label strong {
    color: var(--text-primary);
    font-size: 1.15rem;
}

.hero-professional-label span {
    color: var(--text-secondary);
    font-size: 0.88rem;
}

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

.hero-photo {
    width: 400px;
    height: 460px;
    object-fit: cover;
    border-radius: var(--border-radius-large);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 4px solid rgba(var(--white-rgb), 0.5);
    transition: var(--transition);
}

.hero-photo:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.hero-photo-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--palette-sand);
    border-radius: 8px;
    opacity: 0.82;
    z-index: -1;
    transform: rotate(6deg);
}

.hero-photo-decoration::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--palette-peach);
    border-radius: 6px;
    opacity: 0.72;
}

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

.stat-item {
    background: rgba(255, 255, 255, 0.98);
    padding: 16px 22px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--terracotta-rgb), 0.28);
    transition: all 0.3s ease;
    min-width: 260px;
    max-width: 320px;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--medium-taupe);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.35;
}

/* About Section */
.about {
    padding: 96px 0;
    background: var(--background-white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(var(--olive-rgb), 0.06);
    border-radius: 8px;
    transform: rotate(8deg);
    z-index: 0;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: rgba(var(--terracotta-rgb), 0.06);
    border-radius: 8px;
    transform: rotate(-8deg);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.section-kicker {
    margin: 0 0 10px;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

.section-title {
    font-size: clamp(1.9rem, 3.2vw, 2.4rem);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-family: 'Poppins', sans-serif;
}

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

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

.about-image img {
    width: 88%;
    max-width: 420px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0 auto;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
}

.presentation-topics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.presentation-topics article {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 11px;
    padding: 16px;
    border: 1px solid rgba(var(--terracotta-rgb), 0.12);
    border-radius: 12px;
    background: var(--background-light);
}

.presentation-topics i {
    color: var(--palette-orange);
    font-size: 1rem;
    line-height: 1.5;
}

.presentation-topics h3 {
    margin: 0 0 5px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.presentation-topics p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.84rem;
    line-height: 1.55;
}

.presentation-image img {
    width: 100%;
    max-width: 390px;
    aspect-ratio: 4 / 5;
    object-position: center 18%;
}

.presentation-image > p {
    display: grid;
    gap: 2px;
    margin: 16px 0 0;
    color: var(--text-primary);
    text-align: center;
}

.presentation-image > p span {
    color: var(--text-secondary);
    font-size: 0.84rem;
}

/* Testimonials */
.testimonials {
    padding: 88px 0;
    background: var(--background-light);
}

.testimonials-heading {
    display: grid;
    justify-items: center;
    text-align: center;
}

.google-rating {
    display: grid;
    justify-items: center;
    gap: 2px;
    margin-top: 18px;
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.google-rating strong {
    color: var(--text-primary);
    font-size: 1rem;
}

.rating-stars {
    color: #F4B400;
    font-size: 1.12rem;
    letter-spacing: 0.08em;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    padding: 26px;
    border: 1px solid rgba(var(--terracotta-rgb), 0.1);
    border-radius: 14px;
    background: var(--background-white);
    box-shadow: 0 8px 24px rgba(var(--terracotta-rgb), 0.06);
}

.testimonial-meta {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.testimonial-avatar {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--background-soft);
    color: var(--primary-color);
    font-weight: 700;
}

.testimonial-meta > div {
    display: grid;
    gap: 1px;
}

.testimonial-meta strong {
    color: var(--text-primary);
    font-size: 0.92rem;
}

.testimonial-meta div span {
    color: var(--text-light);
    font-size: 0.76rem;
}

.google-mark {
    color: #4285F4;
    font-size: 1.1rem;
    font-weight: 700;
}

.testimonial-card blockquote {
    flex: 1;
    margin: 14px 0 0;
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.7;
}

.testimonial-rating-row {
    display: flex;
    align-items: center;
    gap: 7px;
}

.testimonial-verified {
    color: #4285F4;
    font-size: 0.86rem;
}

.about-service-line {
    color: var(--text-primary) !important;
    font-size: 0.94rem !important;
}

.about-service-line span {
    color: var(--primary-color);
    padding: 0 4px;
}

/* Benefits Section */
.benefits {
    padding: 88px 0;
    background: var(--background-white);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(92%, 1120px);
    height: 72%;
    background: rgba(var(--gold-rgb), 0.12);
    border-radius: 32px;
    transform: translate(-50%, -50%) rotate(-1deg);
    z-index: 0;
}

.benefits-intro {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.benefits-intro > p:not(.section-kicker) {
    margin: 18px auto 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.75;
}

.benefits-intro > p + p:not(.section-kicker) {
    margin-top: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 42px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: var(--background-white);
    padding: 24px 22px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 8px 24px rgba(81, 67, 61, 0.055);
    transition: var(--transition);
    border: 1px solid rgba(var(--terracotta-rgb), 0.11);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--palette-tangerine);
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(81, 67, 61, 0.08);
    border-color: rgba(var(--terracotta-rgb), 0.24);
}

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

.benefit-icon i {
    font-size: 1rem;
    color: var(--medium-taupe);
    background: var(--background-soft);
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon i {
    color: var(--palette-orange);
    background: var(--background-soft);
    transform: translateY(-1px);
}

.benefit-card h3 {
    font-size: 0.98rem;
    margin-bottom: 9px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

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

.section-title-center {
    font-size: clamp(1.9rem, 3.2vw, 2.45rem);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.3;
    color: var(--text-primary);
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Treatment Section */
.treatment {
    padding: 88px 0;
    background: var(--background-light);
    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(var(--gold-rgb), 0.75) 50%, 
        transparent 100%
    );
}

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

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

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

.treatment-checklist {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.treatment-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 16px;
    border: 1px solid rgba(var(--olive-rgb), 0.12);
    border-radius: 10px;
    background: rgba(var(--white-rgb), 0.82);
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.55;
}

.treatment-checklist li::before {
    content: '✓';
    flex: 0 0 auto;
    color: var(--palette-terracotta);
    font-size: 1.1rem;
    font-weight: 700;
}

.treatment-invitation {
    display: grid;
    justify-items: center;
    gap: 18px;
    margin-top: 34px;
}

.treatment-invitation p {
    max-width: 650px;
    font-size: 1rem;
    margin: 0;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.65;
}

.treatment-invitation img {
    display: block;
    width: min(100%, 360px);
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center 22%;
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(81, 67, 61, 0.1);
}

.treatment-invitation .treatment-outcome {
    max-width: 620px;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.65;
}

/* Privacy Page */
.privacy-body {
    background: var(--background-white);
}

.privacy-page {
    min-height: 100vh;
}

.privacy-hero {
    padding: 64px 0 44px;
    background: var(--background-light);
    border-bottom: 1px solid rgba(var(--olive-rgb), 0.12);
}

.privacy-hero h1 {
    max-width: 860px;
    margin: 14px 0 18px;
    color: var(--text-primary);
}

.privacy-hero p {
    max-width: 840px;
    color: var(--text-secondary);
    font-size: 1.08rem;
    line-height: 1.75;
}

.privacy-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(var(--terracotta-rgb), 0.12);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.privacy-updated {
    margin-top: 16px;
    font-weight: 700;
}

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

.privacy-back-link:hover {
    color: var(--primary-color);
}

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

.privacy-card {
    background: rgba(var(--white-rgb), 0.94);
    border: 1px solid rgba(var(--olive-rgb), 0.12);
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    padding: 28px;
    margin-bottom: 18px;
}

.privacy-card h2 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.privacy-card p,
.privacy-card li {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.78;
}

.privacy-card p + p {
    margin-top: 12px;
}

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

.privacy-card ul {
    padding-left: 22px;
}

.privacy-card li + li {
    margin-top: 8px;
}

.privacy-actions {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.privacy-actions .btn-whatsapp {
    background: var(--cta-color);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2D3234 0%, var(--palette-navy) 58%, #464D4F 100%);
    color: var(--text-white);
    padding: 76px 0 28px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(var(--white-rgb), 0.04) 100%);
    opacity: 1;
    z-index: 0;
}

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

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

.footer-main {
    display: grid;
    grid-template-columns: minmax(300px, 1.55fr) minmax(180px, 0.85fr) minmax(220px, 1fr);
    gap: 42px;
    align-items: start;
}

.footer-brand {
    max-width: 420px;
}

.footer-logo-link {
    display: block;
    width: min(100%, 240px);
    padding: 0;
    margin-bottom: 18px;
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-logo-link:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.footer-logo {
    display: block;
    width: 100%;
    height: auto;
}

.footer-brand p {
    margin: 0;
    color: rgba(var(--beige-rgb), 0.9);
    font-size: 1rem;
    line-height: 1.75;
}

.footer-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--cta-color);
    color: var(--cta-text);
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-whatsapp-link i {
    color: currentColor;
    font-size: 1.2rem;
}

.footer-whatsapp-link:hover {
    background: var(--cta-hover);
    color: var(--cta-text);
    transform: translateX(3px);
    box-shadow: var(--shadow-strong);
}

.footer-column h4 {
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 16px;
    padding-bottom: 12px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 2px;
    border-radius: 999px;
    background: var(--palette-tangerine);
}

.footer-list {
    display: grid;
    gap: 13px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-list li {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 10px;
    color: rgba(var(--beige-rgb), 0.88);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-list i {
    color: var(--palette-tangerine);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-list a,
.footer-address {
    color: var(--text-white);
    text-decoration: none;
}

.footer-list a {
    font-weight: 700;
    text-underline-offset: 4px;
    transition: color 0.25s ease;
}

.footer-list a:hover {
    color: var(--palette-peach);
    text-decoration: underline;
}

.footer-address {
    display: block;
    font-style: normal;
    color: rgba(var(--beige-rgb), 0.88);
    font-size: 0.95rem;
    line-height: 1.75;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 24px;
    border-top: 1px solid rgba(var(--white-rgb), 0.18);
}

.footer-bottom p {
    margin: 0;
    color: rgba(var(--beige-rgb), 0.82);
    font-size: 0.92rem;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-privacy-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 8px;
    background: rgba(var(--white-rgb), 0.08);
    border: 1px solid rgba(var(--terracotta-rgb), 0.4);
    color: var(--text-white);
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.footer-privacy-link:hover {
    background: rgba(var(--terracotta-rgb), 0.16);
    border-color: rgba(var(--terracotta-rgb), 0.7);
    color: var(--palette-peach);
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1.2fr 1fr;
        gap: 34px 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 72px 0 30px;
    }

    .privacy-hero {
        padding: 44px 0 34px;
    }

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

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

    .privacy-card {
        padding: 22px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        max-width: none;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-privacy-link {
        width: 100%;
    }

    .footer-legal-links {
        width: 100%;
        justify-content: stretch;
    }
}

@media (max-width: 480px) {
    .footer-logo-link {
        width: min(100%, 220px);
        padding: 8px 10px;
    }

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

    .footer-whatsapp-link {
        width: 100%;
        justify-content: center;
        min-height: 46px;
        padding: 12px 16px;
        border-radius: 8px;
        background: var(--cta-color);
        border: 1px solid var(--cta-color);
        color: var(--cta-text);
    }

    .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;
}

body.chat-open .whatsapp-float {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
}

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

.whatsapp-float-btn:hover {
    background: var(--cta-hover);
    color: var(--cta-text);
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

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

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

.chat-backdrop {
    position: fixed;
    inset: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.chat-backdrop.show {
    opacity: 0;
    pointer-events: none;
}

/* Contact Mini Card */
.contact-mini-card {
    position: fixed;
    bottom: 24px;
    right: 30px;
    width: 336px;
    background: var(--contact-surface);
    border: 1px solid var(--contact-border);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(37, 211, 102, 0.18);
    z-index: 1001;
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    transition: all 0.3s ease;
    display: none;
    overflow: hidden;
}

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

.contact-card-header {
    background: linear-gradient(135deg, var(--cta-color) 0%, var(--cta-hover) 100%);
    color: var(--text-white);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(var(--white-rgb), 0.18);
}

.contact-card-avatar img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    object-position: center top;
    border-radius: 6px;
    border: 2px solid rgba(var(--white-rgb), 0.35);
}

body.chat-open {
    overflow-x: hidden;
}

.contact-card-info {
    flex: 1;
    min-width: 0;
}

.contact-card-info h4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.contact-card-info span {
    display: block;
    margin-top: 3px;
    font-size: 0.8rem;
    color: rgba(var(--white-rgb), 0.9);
}

.contact-card-close {
    margin-left: auto;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    background: rgba(var(--white-rgb), 0.14);
    border: 1px solid rgba(var(--white-rgb), 0.18);
    color: var(--text-white);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.contact-card-close:hover {
    background: rgba(var(--white-rgb), 0.22);
}

.contact-card-body {
    padding: 20px 20px 16px;
}

.contact-card-note {
    background: #FFFFFF;
    padding: 16px;
    border-radius: 6px;
    border: 1px solid rgba(var(--olive-rgb), 0.1);
    border-left: 4px solid var(--contact-accent);
}

.contact-card-kicker {
    display: block;
    margin-bottom: 10px;
    color: var(--contact-accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.contact-card-note p {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.5;
}

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

.contact-card-footer {
    padding: 0 20px 20px;
}

.contact-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    background: var(--cta-color);
    color: var(--cta-text);
    padding: 12px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-card-btn:hover {
    background: var(--cta-hover);
    color: var(--cta-text);
    transform: translateY(-1px);
}

.contact-card-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 18px;
    }
    
    .hero {
        min-height: auto;
        padding: 28px 0 52px;
        align-items: flex-start;
        background-attachment: scroll;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 11px;
        text-align: center;
    }
    
    .hero-title {
        max-width: 620px;
        font-size: clamp(1.8rem, 6.3vw, 2.15rem);
        margin-bottom: 0;
        letter-spacing: -0.025em;
        line-height: 1.14;
        text-align: center;
        width: 100%;
    }

    .hero-cycle {
        gap: 8px;
        max-width: 620px;
    }

    .hero-cycle p {
        font-size: 0.9rem;
        line-height: 1.48;
    }

    .hero-cycle .hero-cycle-intro {
        font-size: 0.76rem;
        letter-spacing: 0.07em;
    }

    .hero-cycle .hero-cycle-quote {
        font-size: 1.02rem;
    }

    .hero-cycle-card {
        grid-template-columns: 1fr;
        border-radius: 14px;
    }

    .hero-cycle-quote-block {
        align-items: center;
        gap: 5px;
        padding: 12px 16px;
        text-align: center;
    }

    .hero-cycle-story {
        gap: 8px;
        padding: 13px 16px 14px;
    }

    .hero-cycle .hero-cycle-conclusion {
        align-items: center;
        padding: 10px 13px;
        font-size: 0.86rem;
        line-height: 1.45;
        text-align: left;
    }

    .hero-mobile-cta {
        display: inline-flex;
        width: min(100%, 340px);
        min-height: 54px;
        padding: 14px 18px;
        gap: 9px;
        justify-content: center;
        margin-top: 3px;
        font-size: 0.88rem;
        line-height: 1.25;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .hero-mobile-cta i {
        flex: 0 0 auto;
    }
    
    .hero-main-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
        margin-top: 20px;
    }
    
    .hero-text {
        max-width: 100%;
        order: 2;
    }

    .hero-solution {
        margin-bottom: 16px;
        padding: 15px 16px;
        text-align: left;
        font-size: 0.92rem;
        line-height: 1.58;
    }
    
    .hero-image {
        order: 1;
        gap: 10px;
    }

    .hero-professional-label strong {
        font-size: 1.05rem;
    }

    .hero-professional-label span {
        font-size: 0.82rem;
    }
    
    .hero-photo {
        width: min(calc(100vw - 48px), 360px);
        height: min(110vw, 430px);
        object-position: center top;
    }
    
    .hero-photo-decoration {
        width: 80px;
        height: 80px;
        top: -15px;
        right: -15px;
    }
    
    .hero-photo-decoration::before {
        width: 50px;
        height: 50px;
    }
    
    .hero-authority {
        gap: 3px;
    }

    .hero-authority strong {
        font-size: 0.98rem;
    }

    .hero-badge {
        padding: 0;
    }

    .hero-brand-logo {
        width: clamp(170px, 52vw, 220px);
    }
    
    .badge-text {
        font-size: 0.85rem;
    }
    
    .hero-features {
        gap: 12px;
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        gap: 12px;
        padding: 14px;
        text-align: left;
    }

    .feature-icon {
        width: 24px;
        height: 24px;
    }
    
    .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.8rem;
        justify-content: center;
        line-height: 1.4;
    }
    
    .hero-stats {
        position: absolute;
        left: 50%;
        bottom: 18px;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 8px;
        margin-top: 0;
        justify-content: center;
        width: min(94%, 326px);
    }
    
    .stat-item {
        padding: 12px 10px;
        flex: 1 1 0;
        width: 0;
        min-width: 0;
        max-width: none;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.68rem;
        white-space: normal;
        line-height: 1.3;
    }
    
    .hero-photo-container {
        margin-bottom: 6px;
        padding-bottom: 24px;
    }
    
    .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: 84%;
        max-width: 360px;
    }

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

    .about-text .btn-whatsapp {
        order: 5;
        margin: 1.2rem auto 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 35px 25px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-title-center {
        font-size: 2.2rem;
    }
    
    .about, .treatment {
        padding: 64px 0;
    }

    .treatment-checklist li {
        padding: 13px 15px;
        font-size: 0.96rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float-btn {
        padding: 12px 16px;
    }
    
    .whatsapp-float-text {
        display: none !important;
    }
    
    .contact-mini-card {
        width: 300px;
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 22px 0 44px;
    }

    .hero-content {
        gap: 10px;
    }

    .hero-brand-logo {
        width: clamp(160px, 52vw, 195px);
    }

    .hero-authority strong {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: clamp(1.62rem, 7.6vw, 1.85rem);
        margin-bottom: 0;
        line-height: 1.14;
    }

    .hero-cycle {
        gap: 7px;
    }

    .hero-cycle p {
        font-size: 0.87rem;
    }

    .hero-cycle .hero-cycle-intro {
        font-size: 0.7rem;
        line-height: 1.35;
    }

    .hero-cycle-quote-block {
        padding: 10px 13px;
    }

    .hero-cycle-quote-block i {
        font-size: 0.82rem;
    }

    .hero-cycle-story {
        padding: 12px 14px 13px;
        text-align: left;
    }

    .hero-cycle .hero-cycle-repeat {
        font-size: 0.82rem;
    }

    .hero-cycle .hero-cycle-conclusion {
        padding: 9px 11px;
        font-size: 0.82rem;
    }

    .hero-mobile-cta {
        width: min(100%, 330px);
        min-height: 52px;
        padding: 13px 14px;
        font-size: 0.82rem;
        letter-spacing: -0.01em;
    }

    .hero-main-content {
        gap: 20px;
        margin-top: 16px;
    }

    .hero-professional-label {
        gap: 1px;
    }

    .hero-professional-label strong {
        font-size: 1rem;
    }

    .hero-professional-label span {
        font-size: 0.78rem;
    }

    .hero-photo {
        width: min(calc(100vw - 44px), 340px);
        height: min(110vw, 410px);
    }
    
    .hero-photo-decoration {
        width: 64px;
        height: 64px;
        top: -8px;
        right: -8px;
    }
    
    .hero-photo-decoration::before {
        width: 34px;
        height: 34px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 8px;
        flex-wrap: nowrap;
        width: min(94%, 300px);
        bottom: 10px;
    }
    
    .stat-item {
        flex: 1;
        min-width: 0;
        padding: 11px 8px;
    }
    
    .stat-number {
        font-size: 1.22rem;
    }
    
    .stat-label {
        font-size: 0.64rem;
        line-height: 1.3;
        white-space: normal;
    }
    
    .hero .btn-primary {
        padding: 15px 16px;
        font-size: 0.86rem;
    }

    .hero-solution {
        padding: 14px;
        font-size: 0.88rem;
    }

    .feature-item {
        padding: 13px;
    }

    .feature-text h3 {
        font-size: 0.94rem;
    }

    .feature-text p {
        font-size: 0.84rem;
    }

    .hero-trust-text {
        max-width: 290px;
        font-size: 0.76rem;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .treatment-content p {
        text-align: center;
        font-size: 0.98rem;
    }
    
    .section-divider {
        width: 60px;
        height: 3px;
    }

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

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.56rem;
    }

    .hero-mobile-cta {
        font-size: 0.76rem;
    }

    .hero-cycle p {
        font-size: 0.84rem;
    }

    .hero-cycle .hero-cycle-conclusion {
        font-size: 0.79rem;
    }
}

/* Layout final da landing page Aluma */
@media (max-width: 980px) {
    .hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
        gap: 36px;
    }

    .about-content {
        grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
        gap: 42px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-card:last-child {
        grid-column: 1 / -1;
        width: 100%;
        max-width: 540px;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 22px 0 52px;
    }

    .hero-content {
        display: flex;
        gap: 20px;
    }

    .hero-brand-logo {
        width: clamp(145px, 42vw, 180px);
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-copy {
        justify-items: center;
        gap: 17px;
        text-align: center;
    }

    .hero-authority,
    .hero-title {
        text-align: center;
    }

    .hero-title {
        max-width: 590px;
        font-size: clamp(1.72rem, 6.7vw, 2.15rem);
        line-height: 1.18;
    }

    .hero-transform {
        max-width: 560px;
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .hero-cta {
        justify-content: center;
        width: min(100%, 345px);
        padding: 14px 17px;
        font-size: 0.9rem;
        line-height: 1.35;
    }

    .hero-opening-image {
        width: min(100%, 500px);
        margin: 2px auto 0;
    }

    .hero-opening-image::before {
        inset: -10px 10px 10px -10px;
        border-radius: 19px;
    }

    .hero-opening-image img {
        aspect-ratio: 4 / 3;
        border-radius: 18px;
    }

    .presentation .about-content {
        display: flex;
        gap: 30px;
        text-align: left;
    }

    .presentation .about-text {
        display: block;
        order: 2;
        max-width: 620px;
    }

    .presentation .presentation-image {
        order: 1;
    }

    .presentation .section-divider {
        margin: 1rem 0 1.25rem;
    }

    .presentation-topics {
        grid-template-columns: 1fr;
    }

    .testimonials,
    .benefits,
    .treatment {
        padding: 64px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
        margin-top: 30px;
    }

    .benefits-grid {
        gap: 14px;
        margin-top: 32px;
    }

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

    .section-title,
    .section-title-center {
        font-size: clamp(1.75rem, 7vw, 2.1rem);
    }
}

@media (max-width: 520px) {
    .hero-authority strong {
        font-size: 0.78rem;
        letter-spacing: 0.035em;
    }

    .hero-title {
        font-size: clamp(1.62rem, 7.6vw, 1.9rem);
    }

    .hero-transform {
        font-size: 0.93rem;
    }

    .hero-trust-text {
        max-width: 300px;
    }

    .about,
    .testimonials,
    .benefits,
    .treatment {
        padding: 54px 0;
    }

    .presentation-image img {
        width: min(88%, 330px);
    }

    .presentation-topics article {
        padding: 14px;
    }

    .testimonials-grid {
        gap: 14px;
    }

    .testimonial-card {
        padding: 21px 18px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-intro > p:not(.section-kicker) {
        font-size: 0.93rem;
        line-height: 1.68;
    }

    .treatment-invitation img {
        width: min(92%, 340px);
    }

    .treatment .btn-center {
        width: min(100%, 340px);
        margin-top: 2.25rem;
        justify-content: center;
        padding: 15px 18px;
        font-size: 0.94rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
