/* Reset e variáveis */
:root {
    --primary-green: #566347;
    --bg-cream: #FAF8F3;
    --accent-beige: #D6D3C5;
    --text-gray: #888888;
    --white: #ffffff;
    --dark-text: #333333;
    --red-offer: #ff6b6b;
}

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

body {
    font-family: 'League Spartan', Arial, sans-serif;
    background-color: var(--bg-cream);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 60px; /* Reduzido para o menu menor */
}

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

.section-padding {
    padding: 80px 0; /* Aumentado para mais espaçamento */
}

/* Barra de Progresso */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-beige));
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 2px 4px rgba(86, 99, 71, 0.3);
}

/* Main Navigation - OTIMIZADO PARA DESKTOP */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, #4a5a3a 100%);
    color: var(--white);
    padding: 8px 0; /* Reduzido padding */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    backdrop-filter: blur(10px);
    min-height: 60px; /* Reduzido altura mínima */
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px; /* Aumentado para acomodar mais itens */
    margin: 0 auto;
    padding: 0 15px; /* Reduzido padding lateral */
}

.nav-logo {
    font-size: 1.6rem; /* Reduzido tamanho */
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-right: 20px; /* Espaçamento do logo */
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px; /* Reduzido gap entre itens */
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
    flex: 1; /* Permite que os links ocupem o espaço disponível */
    justify-content: center; /* Centraliza os links */
}

.nav-links li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.75rem; /* Reduzido font-size */
    padding: 6px 8px; /* Reduzido padding */
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.9;
    white-space: nowrap;
    display: block;
}

.nav-links li a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
    transform: translateY(-1px);
}

.nav-cta {
    background: linear-gradient(135deg, var(--red-offer) 0%, #ff4757 100%);
    padding: 8px 14px; /* Reduzido padding */
    border-radius: 20px; /* Reduzido border-radius */
    font-weight: 700;
    font-size: 0.7rem; /* Reduzido font-size */
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 10px; /* Espaçamento do CTA */
}

.nav-cta:hover {
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.hamburger-menu {
    display: none; /* Oculto por padrão no desktop */
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger-menu .bar {
    width: 28px;
    height: 3px;
    background-color: var(--white);
    margin: 4px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
    transform-origin: center;
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-7px, 7px);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-7px, -7px);
}
/* Animações e Efeitos Visuais - MELHORADAS COM SLIDE-IN DE DENTRO PARA FORA */

/* Estados iniciais das animações */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-60px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(60px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-up {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bounce-in {
    opacity: 0;
    transform: scale(0.3);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.rotate-in {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Estados animados (quando .animate é adicionado) */
.fade-in.animate {
    opacity: 1;
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.slide-in-up.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

.bounce-in.animate {
    opacity: 1;
    transform: scale(1);
}

.rotate-in.animate {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Animação especial para cards */
.benefit-card,
.education-item,
.testimonial-item,
.results-item,
.offer-card,
.bonus-item,
.faq-item {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.benefit-card.animate,
.education-item.animate,
.testimonial-item.animate,
.results-item.animate,
.offer-card.animate,
.bonus-item.animate,
.faq-item.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Efeitos de hover melhorados */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(86, 99, 71, 0.4);
}

/* Animação de pulso para CTAs */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(86, 99, 71, 0.7);
    }
    50% {
        transform: scale(1.15); /* Aumenta ainda mais o zoom */
        box-shadow: 0 0 0 35px rgba(86, 99, 71, 0); /* Aumenta ainda mais o espalhamento da sombra */
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(86, 99, 71, 0);
    }
}

.pulse-animation {
    animation: pulse 1.2s infinite; /* Acelera a animação para mais impacto */
}

/* Animação de digitação para títulos */
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--primary-green) }
}

.typing-effect {
    overflow: hidden;
    border-right: 3px solid var(--primary-green);
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

/* Efeito de ondulação */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.ripple-effect {
    position: relative;
    overflow: hidden;
}

.ripple-effect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple-effect:hover::before {
    width: 300px;
    height: 300px;
}

/* Header */
header {
    background-color: var(--primary-green);
    color: var(--white);
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.8rem; /* Aumentado para mais impacto */
    font-weight: 700;
    margin-bottom: 10px;
}

header p {
    font-size: 1.3rem; /* Aumentado */
    font-weight: 500;
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--bg-cream) 0%, rgba(214, 211, 197, 0.3) 100%);
    padding: 60px 0; /* Ajustado */
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Proporção mais equilibrada */
    gap: 60px; /* Aumentado o espaçamento */
    align-items: center;
    min-height: 600px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px; /* Aumentado */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-left h2 {
    font-size: 3.5rem; /* Aumentado para mais destaque */
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 25px; /* Ajustado */
    line-height: 1.1;
}

.hero-left p {
    font-size: 1.4rem; /* Aumentado */
    color: var(--text-gray);
    margin-bottom: 35px; /* Ajustado */
    line-height: 1.6;
}

.countdown-hero {
    background-color: var(--red-offer);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 400px;
}

.countdown-hero .offer-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.countdown-hero #timer {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.countdown-hero .timer-unit {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 60px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.countdown-hero .timer-number {
    font-size: 1.4rem;
    font-weight: 700;
}

.countdown-hero .timer-label {
    font-size: 0.7rem;
    text-transform: uppercase;
}

.hero-offers {
    text-align: center;
    margin-top: 30px;
}

.hero-offers .price-strike {
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.hero-offers .price-current {
    color: var(--primary-green);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-offers .small-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 18px;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-right #video-container {
    position: relative;
    width: 100%;
    max-width: 400px; /* Aumentado para melhor visualização */
    aspect-ratio: 9/16; /* Proporção vertical para reels */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    margin: 0 auto;
}

.hero-right #video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* Offers Section */
#offers {
    background-color: var(--white);
    padding: 20px 0 40px 0;
}

#offers h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 50px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; /* Aumentado o espaçamento */
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.offer-card {
    background: var(--white);
    border: 2px solid var(--accent-beige);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.offer-card.featured {
    border-color: var(--primary-green);
    border-width: 3px;
    background: linear-gradient(135deg, var(--white) 0%, rgba(86, 99, 71, 0.05) 100%);
}

.offer-card.featured::before {
    content: "MAIS POPULAR";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.offer-card h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.price-strike {
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price-current {
    color: var(--primary-green);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.bonus-list {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.bonus-list li {
    background: rgba(86, 99, 71, 0.1);
    padding: 10px 15px;
    margin: 10px 0;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
    font-weight: 500;
}

/* CTA Buttons */
.cta-button {
    background: linear-gradient(135deg, var(--primary-green) 0%, #6b7a5a 100%);
    color: var(--white);
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(86, 99, 71, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

/* Problem Section */
#problem h2 {
    font-size: 2.8rem;
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 30px;
}

#problem p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Author Section */
.author-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; /* Ajustado para melhor proporção */
    gap: 50px; /* Aumentado o espaçamento */
    align-items: center;
}

.author-image {
    width: 100%;
    max-width: 350px; /* Limitado para não ficar muito grande */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.author-right h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.author-right p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.author-social {
    font-size: 1.1rem;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

/* Education Section - PADRONIZADO COM BENEFIT-CARDS */
#education h2 {
    font-size: 2.8rem;
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 50px;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.education-item {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(86, 99, 71, 0.1);
    overflow: hidden;
}

.education-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-beige));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.education-item:hover::before {
    transform: scaleX(1);
}

.education-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-green);
}

.education-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 15px;
    line-height: 1.3;
}

.education-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
    font-weight: 400;
}

/* Responsividade para Education Section */
@media (max-width: 1024px) {
    .education-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .education-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .education-item {
        padding: 25px 20px;
    }
    
    .education-item h3 {
        font-size: 1.2rem;
    }
    
    .education-item p {
        font-size: 0.9rem;
    }
}

/* Solution Section (formerly Benefits) */
#solution h2 {
    font-size: 2.8rem;
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 50px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.benefit-item {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-item .check-icon {
    font-size: 1.5rem;
}

.benefit-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Testimonials Section - PADRONIZADO COM BENEFIT-CARDS */
#testimonials h2 {
    font-size: 2.8rem;
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 50px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-item {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(86, 99, 71, 0.1);
    overflow: hidden;
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-beige));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-green);
}

.testimonial-item .quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-item .author {
    font-weight: 600;
    color: var(--primary-green);
}

/* Results Section */
#results h2 {
    font-size: 2.8rem;
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 50px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Ajustado para mais imagens */
    gap: 25px;
}

.results-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Bonus Section - PADRONIZADO COM BENEFIT-CARDS */
#bonus h2 {
    font-size: 2.8rem;
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 50px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-item {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(86, 99, 71, 0.1);
    overflow: hidden;
}

.bonus-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-beige));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.bonus-item:hover::before {
    transform: scaleX(1);
}

.bonus-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-green);
}

.bonus-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 15px;
    line-height: 1.3;
}

.bonus-item p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    font-weight: 400;
}

/* Guarantee Section */
#guarantee {
    background-color: var(--primary-green);
    color: var(--white);
    text-align: center;
    padding: 60px 0;
}

#guarantee h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

#guarantee p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Offer Section */
#offer {
    text-align: center;
}

#offer .countdown-hero {
    margin: 0 auto 30px auto;
}

#offer .hero-offers {
    margin-top: 0;
}

/* Offers Plans Section */
#offers-plans h2 {
    font-size: 2.8rem;
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 50px;
}

/* Comparison Section - MELHORADO PARA MOBILE */
#comparison {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#comparison h2 {
    font-size: 2.8rem;
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 50px;
}

.comparison-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px;
    padding: 0 20px;
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.comparison-table table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--white);
}

.comparison-table th,
.comparison-table td {
    border: 1px solid var(--accent-beige);
    padding: 15px 12px;
    text-align: left;
    vertical-align: top;
    line-height: 1.4;
}

.comparison-table th {
    background-color: var(--primary-green);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    position: sticky;
    top: 0;
    z-index: 10;
    text-align: center;
}

.comparison-table th:first-child {
    text-align: left;
    min-width: 150px;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: rgba(86, 99, 71, 0.05);
}

.comparison-table tbody tr:hover {
    background-color: rgba(86, 99, 71, 0.1);
}

/* Destaque para a coluna do produto */
.comparison-table th:nth-child(2),
.comparison-table td:nth-child(2) {
    background-color: rgba(86, 99, 71, 0.1);
    font-weight: 600;
    color: var(--primary-green);
}

.comparison-table th:nth-child(2) {
    background-color: var(--primary-green);
    color: var(--white);
}

/* FAQ Section - PADRONIZADO COM BENEFIT-CARDS */
#faq h2 {
    font-size: 2.8rem;
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(86, 99, 71, 0.1);
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-beige));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-green);
}

.faq-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 15px;
    line-height: 1.3;
}

.faq-item p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    font-weight: 400;
}

/* Footer */
footer {
    background-color: var(--primary-green);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
}

/* Popup Styles */
.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.popup-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    width: 90%; /* Ajustado para mobile */
    max-width: 450px; /* Limitado para desktop */
    text-align: center;
}

.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-gray);
}

.popup-content h2 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.popup-content form input {
    width: calc(100% - 20px); /* Ajustado para padding */
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--accent-beige);
    border-radius: 8px;
    font-size: 1.1rem;
}

.popup-content form button {
    background: var(--primary-green);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.popup-content form button:hover {
    background: #6b7a5a;
}

/* Media Queries for Responsiveness */

/* Tablets e telas médias - NOVA MEDIA QUERY */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-links {
        gap: 10px; /* Menor gap em tablets */
    }
    
    .nav-links li a {
        font-size: 0.8rem;
        padding: 6px 8px;
    }
    
    .nav-cta {
        padding: 8px 15px;
        font-size: 0.75rem;
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr; /* Coluna única em tablets */
        gap: 40px;
        text-align: center;
    }

    .hero-left, .hero-right {
        max-width: 100%;
    }

    .author-grid {
        grid-template-columns: 1fr; /* Coluna única em tablets */
        text-align: center;
    }

    .author-image {
        margin: 0 auto 30px auto;
    }

    .offer-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Ajuste para tablets */
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Ajuste para menu maior em mobile */
    }

    .main-nav {
        padding: 15px 0;
        background: linear-gradient(135deg, var(--primary-green) 0%, #4a5a3a 100%);
    }

    .nav-logo {
        font-size: 1.6rem;
        font-weight: 800;
    }

    .nav-links {
        display: none; /* Oculta links em mobile, ativado pelo hamburger */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--primary-green) 0%, #4a5a3a 100%);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        padding: 20px 0 30px 0; /* Padding ajustado */
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        max-height: calc(100vh - 70px); /* Altura máxima baseada na viewport */
        overflow-y: auto; /* Scroll vertical se necessário */
        -webkit-overflow-scrolling: touch; /* Scroll suave no iOS */
        z-index: 999; /* Z-index alto para ficar acima do conteúdo */
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        visibility: hidden;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    .nav-links li {
        text-align: center;
        margin: 5px 0; /* Reduzido margin */
        padding: 0 20px;
        flex-shrink: 0; /* Impede que os itens encolham */
    }

    .nav-links li a {
        display: block;
        padding: 12px 20px; /* Reduzido padding */
        font-size: 0.95rem; /* Reduzido font-size */
        font-weight: 600;
        border-radius: 12px;
        margin: 3px 0; /* Reduzido margin */
        transition: all 0.3s ease;
        white-space: nowrap; /* Impede quebra de linha */
    }

    .nav-links li a:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: scale(1.02);
    }

    .nav-cta {
        margin: 10px 20px 5px 20px; /* Reduzido margin superior */
        text-align: center;
        padding: 12px 25px; /* Reduzido padding */
        font-size: 0.9rem; /* Reduzido font-size */
        box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
        flex-shrink: 0; /* Impede que o CTA encolha */
    }

    .hamburger-menu {
        display: flex; /* Mostra hamburger em mobile */
    }

    /* Melhorias no header mobile */
    header {
        padding: 40px 0 30px 0;
        text-align: center;
    }

    header h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    header p {
        font-size: 1.1rem;
        margin-bottom: 0;
        opacity: 0.9;
    }

    .section-padding {
        padding: 60px 0;
    }

    .hero-left h2 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-left p {
        font-size: 1.15rem;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .hero-right #video-container {
        max-width: 320px; /* Ajuste para mobile */
        margin: 0 auto;
    }

    #offers h2, #problem h2, #author h2, #education h2, #solution h2, #testimonials h2, #results h2, #bonus h2, #guarantee h2, #offers-plans h2, #comparison h2, #faq h2 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .popup-content {
        width: 95%; /* Mais largura em mobile */
        padding: 25px; /* Menos padding em mobile */
        margin: 20px auto;
        border-radius: 20px;
    }

    .popup-content h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .popup-content form input {
        font-size: 1rem;
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 12px;
    }

    .popup-content form button {
        font-size: 1.1rem;
        padding: 15px 30px;
        border-radius: 25px;
        width: 100%;
    }
}



@media (max-width: 480px) {
    .hero-left h2 {
        font-size: 2rem;
    }

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

    #offers h2, #problem h2, #author h2, #education h2, #solution h2, #testimonials h2, #results h2, #bonus h2, #guarantee h2, #offers-plans h2, #comparison h2, #faq h2 {
        font-size: 1.8rem;
    }

    /* Garantir que a seção comparison apareça no mobile - FORÇADO */
    #comparison {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 40px 0 !important;
        background: var(--bg-cream) !important;
    }

    #comparison h2 {
        font-size: 1.8rem !important;
        margin-bottom: 30px !important;
        display: block !important;
    }

    .comparison-table {
        margin: 0 -15px !important;
        padding: 15px !important;
        background: var(--white) !important;
        border-radius: 10px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
        display: block !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .comparison-table table {
        min-width: 700px !important;
        font-size: 0.8rem !important;
        display: table !important;
        width: 100% !important;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 8px 6px !important;
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        border: 1px solid var(--accent-beige) !important;
    }

    .comparison-table th {
        font-size: 0.8rem !important;
        font-weight: 600 !important;
        background-color: var(--primary-green) !important;
        color: var(--white) !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 10 !important;
    }

    .comparison-table th:first-child {
        min-width: 120px !important;
        text-align: left !important;
    }

    /* Destaque para a coluna do produto em mobile */
    .comparison-table th:nth-child(2),
    .comparison-table td:nth-child(2) {
        background-color: rgba(86, 99, 71, 0.15) !important;
        font-weight: 600 !important;
        color: var(--primary-green) !important;
    }

    .comparison-table th:nth-child(2) {
        background-color: var(--primary-green) !important;
        color: var(--white) !important;
    }

    .offer-card, .education-item, .benefit-item, .testimonial-item, .bonus-item, .faq-item {
        padding: 20px;
    }

    .popup-content {
        padding: 20px;
    }

    .popup-content h2 {
        font-size: 1.5rem;
    }
}




/* Rodapé - OTIMIZADO */
.site-footer {
    background: linear-gradient(135deg, var(--primary-green) 0%, #4a5a3a 100%);
    color: var(--white);
    padding: 40px 0 20px 0; /* Ajustado padding */
    margin-top: 60px;
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Reduzido gap */
    margin-bottom: 30px;
    width: 100%;
    max-width: 600px; /* Limitado largura para centralizar */
}

.footer-logo h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px; /* Ajustado margin */
    color: var(--white);
}

.footer-logo p {
    font-size: 1rem; /* Reduzido font-size */
    opacity: 0.9;
    line-height: 1.4;
}

.footer-contact {
    margin-top: 20px; /* Adicionado margin-top para separar do logo */
}

.footer-contact h4 {
    font-size: 1.3rem; /* Reduzido font-size */
    font-weight: 700;
    margin-bottom: 10px; /* Ajustado margin */
    color: var(--white);
}

.footer-contact p {
    font-size: 1rem; /* Reduzido font-size */
    margin-bottom: 8px; /* Ajustado margin */
    display: flex;
    align-items: center;
    justify-content: center; /* Centralizado */
    gap: 8px; /* Reduzido gap */
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent-beige);
    text-decoration: underline;
}

.email-icon {
    font-size: 1.1rem; /* Reduzido font-size */
}

.footer-note {
    font-size: 0.85rem; /* Reduzido font-size */
    opacity: 0.8;
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px; /* Ajustado padding */
    border-top: 1px solid rgba(255, 255, 255, 0.15); /* Ajustado borda */
    width: 100%;
}

.footer-bottom p {
    font-size: 0.85rem; /* Reduzido font-size */
    opacity: 0.8;
}

/* Media Queries para o Rodapé - OTIMIZADO */
@media (max-width: 768px) {
    .site-footer {
        padding: 30px 0 15px 0; /* Ajustado padding */
        margin-top: 30px;
    }

    .footer-content {
        gap: 20px;
    }

    .footer-logo h3 {
        font-size: 1.6rem;
    }

    .footer-logo p {
        font-size: 0.9rem;
    }

    .footer-contact h4 {
        font-size: 1.1rem;
    }

    .footer-contact p {
        font-size: 0.9rem;
    }

    .footer-note {
        font-size: 0.75rem;
    }

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

@media (max-width: 480px) {
    .footer-logo h3 {
        font-size: 1.4rem;
    }

    .footer-contact p {
        flex-direction: row; /* Mantido em linha para telas menores */
        gap: 5px;
    }

    .email-icon {
        font-size: 1rem;
    }
}



/* Seção Solution - O Que Você Vai Aprender - MELHORADA */
.solution-section {
    background: linear-gradient(135deg, var(--bg-cream) 0%, rgba(214, 211, 197, 0.2) 100%);
    position: relative;
    overflow: hidden;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23566347" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23566347" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="%23566347" opacity="0.02"/><circle cx="10" cy="60" r="0.5" fill="%23566347" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.solution-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.solution-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.solution-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-beige));
    border-radius: 2px;
}

.solution-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.benefit-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(86, 99, 71, 0.1);
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-beige));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-green);
}

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

.icon-bg {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    position: relative;
}

.icon-bg.natural {
    background: linear-gradient(135deg, #e8f5e8, #d4f1d4);
    color: #2d5a2d;
}

.icon-bg.personalized {
    background: linear-gradient(135deg, #fff3e0, #ffe0b3);
    color: #b8860b;
}

.icon-bg.protocol {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1565c0;
}

.icon-bg.nutrition {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    color: #7b1fa2;
}

.icon-bg.selfcare {
    background: linear-gradient(135deg, #fce4ec, #f8bbd9);
    color: #c2185b;
}

.icon-bg.updates {
    background: linear-gradient(135deg, #e0f2f1, #b2dfdb);
    color: #00695c;
}

.icon-bg.simple {
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
    color: #f57f17;
}

.benefit-card:hover .icon-bg {
    transform: scale(1.1) rotate(5deg);
}

.benefit-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    font-weight: 400;
}

/* Responsividade para a seção solution */
@media (max-width: 768px) {
    .solution-title {
        font-size: 2.5rem;
    }
    
    .solution-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .icon-bg {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .benefit-content h3 {
        font-size: 1.2rem;
    }
    
    .benefit-content p {
        font-size: 0.95rem;
    }
}


/* Rodapé Elegante - ORGANIZAÇÃO REFINADA DOS ITENS */
.elegant-footer {
    background: linear-gradient(135deg, var(--primary-green) 0%, #4a5a3a 100%);
    color: var(--white);
    padding: 80px 0 40px 0;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.elegant-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="10" cy="40" r="0.5" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-brand {
    padding-right: 20px;
}

.footer-brand h3 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.footer-brand p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 320px;
    font-weight: 400;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    font-size: 1.6rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.contact-link:hover::after {
    width: 100%;
}

.contact-link:hover {
    color: var(--accent-beige);
    transform: translateX(3px);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: flex-start;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-icon {
    font-size: 1.4rem;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.footer-quote {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 50px;
    padding: 25px 35px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.footer-quote p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-style: italic;
    font-weight: 400;
    margin: 0;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin-bottom: 25px;
}

.footer-copyright {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.footer-love {
    color: var(--accent-beige);
    font-weight: 500;
    display: inline-block;
    margin-top: 6px;
}

/* Responsividade do Rodapé - ORGANIZAÇÃO REFINADA */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .footer-social {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }
    
    .social-link {
        flex: 1;
        max-width: 200px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .elegant-footer {
        padding: 60px 0 30px 0;
        margin-top: 80px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .footer-brand {
        padding-right: 0;
    }
    
    .footer-brand h3 {
        font-size: 2.1rem;
        margin-bottom: 15px;
    }
    
    .footer-brand p {
        max-width: none;
        margin: 0 auto;
        font-size: 1.05rem;
    }
    
    .contact-item {
        justify-content: center;
        text-align: left;
        padding: 16px 18px;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .footer-social {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .social-link {
        justify-content: center;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .footer-quote {
        padding: 20px 25px;
        margin-bottom: 35px;
    }
    
    .footer-quote p {
        font-size: 1rem;
    }
    
    .footer-copyright {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .footer-love {
        display: block;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .elegant-footer {
        padding: 50px 0 25px 0;
        margin-top: 60px;
    }
    
    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .footer-brand h3 {
        font-size: 1.9rem;
    }
    
    .footer-brand p {
        font-size: 1rem;
    }
    
    .contact-item {
        padding: 14px 16px;
        max-width: 300px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
    
    .social-icon {
        width: 34px;
        height: 34px;
        font-size: 1.2rem;
    }
    
    .footer-quote {
        padding: 18px 20px;
        margin-bottom: 25px;
    }
    
    .footer-quote p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
        padding: 0 10px;
    }
}

