/* =================================================================
   1. VARIÁVEIS (Estilo da Vetor - BASEADO NA ÚLTIMA REFERÊNCIA DE HOMEPAGE)
   ================================================================= */
:root {
    --color-dark-blue: #2c3e50;
    --color-medium-gray: #7f8c8d;
    --color-light-gray: #f2f4f6;
    --color-white: #ffffff;

    --color-accent-primary: #FF7B1C;
    --color-accent-yellow: #FFD600;
    --color-accent-blue: #0099E0; /* Mantido como azul claro para elementos decorativos sutis ou onde for adequado um azul mais vivo */
    --color-accent-green: #4CAF50;
    --color-accent-purple: #8e44ad;

    --color-deco-1: rgba(0, 153, 224, 0.1);
    --color-deco-2: rgba(255, 123, 28, 0.1);
    
    --color-bg-section-default: var(--color-white);
    --color-bg-section-alt: var(--color-light-gray);
    --color-bg-call-to-action: var(--color-dark-blue);

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* =================================================================
   2. RESET BÁSICO E ESTILOS GLOBAIS
   ================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    background-color: var(--color-bg-section-default);
    color: var(--color-dark-blue);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

.section-padding {
    padding: 80px 0;
    text-align: center;
}

.section-bg-light { background-color: var(--color-bg-section-alt); }
.section-bg-white { background-color: var(--color-bg-section-default); }
.section-bg-call-to-action { background-color: var(--color-bg-call-to-action); color: var(--color-white); }
.section-bg-light-blue { background-color: var(--color-bg-section-alt); }
.section-bg-light-purple { background-color: var(--color-bg-section-default); }
.section-bg-light-green { background-color: var(--color-bg-section-alt); }
.section-bg-light-yellow { background-color: var(--color-bg-section-default); }


/* =================================================================
   3. TIPOGRAFIA
   ================================================================= */
.section-title, .section-title-highlight,
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-dark-blue);
    line-height: 1.1;
    margin-bottom: 0.5em;
}

.section-description,
p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-medium-gray);
    margin-bottom: 1em;
}

h1 { font-size: 3.5rem; } 
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }

.highlight-text-block {
    color: inherit;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    display: inline;
    font-weight: inherit;
}

.highlight-text-small {
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    line-height: 1.4;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.highlight-yellow-bg-dark {
    background-color: var(--color-accent-yellow);
    color: var(--color-dark-blue);
}

.activity-title .highlight-text-block {
    background-color: var(--color-accent-blue);
    color: var(--color-white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 8px 18px; 
    border-radius: 8px;
}
.highlight-green-dark-bg { background-color: var(--color-accent-green); color: var(--color-white); }
.highlight-orange-bg { background-color: var(--color-accent-primary); color: var(--color-white); }
.highlight-brown-bg { background-color: var(--color-dark-blue); color: var(--color-white); }
.highlight-magenta-bg { background-color: var(--color-accent-purple); color: var(--color-white); }
.highlight-green-bg { background-color: var(--color-accent-green); color: var(--color-white); }

.normal-weight { font-weight: 400; }


/* =================================================================
   4. BOTÕES
   ================================================================= */
.cta-button {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: var(--color-accent-primary);
    color: var(--color-white);
}

.cta-button:hover {
    filter: brightness(0.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cta-button.pulse {
    animation: pulse-modern 1.8s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes pulse-modern {
    0% { transform: scale(1); box-shadow: var(--shadow-medium); }
    50% { transform: scale(1.02); box-shadow: var(--shadow-hover); }
    100% { transform: scale(1); box-shadow: var(--shadow-medium); }
}

/* =================================================================
   5. CABEÇALHO (top-header e main-header)
   ================================================================= */
.top-header {
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    padding: 10px 0;
    font-size: 0.85rem;
    text-align: center;
    position: relative;
    z-index: 101;
}

.top-header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.top-header-text {
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-body);
}

.main-header {
    background-color: var(--color-dark-blue);
    padding: 18px 0;
    box-shadow: none;
    position: relative;
    z-index: 100;
}

.main-header .header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    padding: 0 25px;
    margin: 0 auto;
    height: 100%;
}

.main-header .logo {
    max-width: 160px;
    height: auto;
    filter: none;
}

/* Media Queries para Top Header */
@media (max-width: 768px) {
    .top-header {
        font-size: 0.75rem;
        padding: 8px 0;
    }
    .top-header-text {
        padding: 0 15px;
    }
}
/* Media Queries para Main Header */
@media (max-width: 992px) {
    .main-header {
        padding: 15px 0;
    }
    .main-header .logo {
        max-width: 140px;
    }
}
@media (max-width: 768px) {
    .main-header {
        padding: 12px 0;
    }
    .main-header .logo {
        max-width: 120px;
    }
}
@media (max-width: 480px) {
    .main-header {
        padding: 10px 0;
    }
    .main-header .logo {
        max-width: 100px;
    }
}


/* =================================================================
   6. SEÇÃO HERO (hero-section) - O CONTEÚDO PRINCIPAL (ESTILO CANVA)
   ================================================================= */
.hero-section {
    background: var(--color-white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    min-height: 500px;
}

/* Elementos animados de fundo (formas geométricas estilo Canva) */
.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    z-index: 0;
    opacity: 0.1;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    border-radius: 50%;
}

/* Formas Decorativas 1 (Círculo grande) */
.hero-section::before {
    width: 250px;
    height: 250px;
    background-color: var(--color-deco-1);
    top: -50px;
    left: -50px;
    animation-name: moveShape1;
}

/* Formas Decorativas 2 (Quadrado giratório) */
.hero-section::after {
    width: 180px;
    height: 180px;
    background-color: var(--color-deco-2);
    border-radius: 20px;
    bottom: -80px;
    right: -80px;
    animation-name: moveShape2;
    animation-delay: 3s;
}

.hero-section .hero-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1100px;
    width: 100%;
    padding: 0 25px;
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

.hero-section .hero-text-content {
    flex: 1;
    text-align: left;
    max-width: 50%;
    position: relative;
}

.hero-section .hero-pre-headline {
    font-family: var(--font-heading);
    font-size: 3.1rem;
    font-weight: 800;
    color: var(--color-dark-blue);
    line-height: 1.1;
    margin-bottom: 5px;
    letter-spacing: -0.05em;
    text-transform: none;
    opacity: 1;
}

.hero-section .hero-headline {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-accent-primary);
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: none;
    letter-spacing: -0.05em;
    display: block;
}
.hero-section .hero-headline .highlight-text-block {
    color: var(--color-accent-primary);
    background-color: transparent;
    box-shadow: none;
    padding: 0;
}

.hero-section .hero-description {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-medium-gray);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 450px;
    opacity: 1;
}

.highlight-text-small.highlight-yellow-bg-dark {
    background-color: var(--color-accent-yellow);
    color: var(--color-dark-blue);
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 4px;
    box-shadow: none;
}

.hero-section .hero-text-cta-button {
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: var(--shadow-medium);
}

.hero-section .hero-image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 50%;
}

.image-frame {
    position: relative;
    background-color: var(--color-accent-yellow);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-medium);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 550px;
    overflow: hidden;
    animation: float-subtle 3s ease-in-out infinite alternate;
}

.hero-section .main-product-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    box-shadow: none;
}

.image-frame::before,
.image-frame::after {
    content: '';
    position: absolute;
    z-index: 1;
    opacity: 0.6;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.image-frame::before {
    width: 50px;
    height: 50px;
    background-color: var(--color-accent-blue);
    border-radius: 50%;
    top: -10px;
    left: -10px;
    box-shadow: var(--shadow-light);
    animation-name: moveCircle;
    animation-delay: 0.5s;
}

.image-frame::after {
    width: 40px;
    height: 40px;
    border: 4px solid var(--color-accent-primary);
    transform: rotate(25deg);
    bottom: -10px;
    right: -10px;
    box-shadow: var(--shadow-light);
    animation-name: moveSquare;
    animation-delay: 1.5s;
}

.image-frame:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-hover);
    animation: none;
}
.image-frame:hover::before {
    transform: scale(1.1) rotate(90deg);
    opacity: 1;
    animation: none;
}
.image-frame:hover::after {
    transform: rotate(50deg) scale(1.05);
    opacity: 1;
    animation: none;
}

@keyframes moveShape1 {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, -20px) rotate(45deg); }
    50% { transform: translate(0, 0) rotate(90deg); }
    75% { transform: translate(-50px, 20px) rotate(135deg); }
    100% { transform: translate(0, 0) rotate(180deg); }
}

@keyframes moveShape2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-30px, 40px) rotate(-45deg); }
    50% { transform: translate(0, 0) rotate(-90deg); }
    75% { transform: translate(30px, -40px) rotate(-135deg); }
    100% { transform: translate(0, 0) rotate(-180deg); }
}

@keyframes float-subtle {
    0% { transform: translateY(0); }
    100% { transform: translateY(-5px); }
}

@keyframes rotate-slower {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes moveCircle {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5px, 5px); }
}

@keyframes moveSquare {
    0%, 100% { transform: translate(0, 0) rotate(25deg); }
    50% { transform: translate(-5px, -5px) rotate(30deg); }
}

@keyframes fade-in-down-logo {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* =================================================================
   Media Queries para Responsividade (Geral e Hero) - OTIMIZADO (FONTES HERO MAIORES)
   ================================================================= */
/* Top Header */
@media (max-width: 768px) {
    .top-header {
        font-size: 0.8rem; /* Aumentado um pouco */
        padding: 8px 0;
    }
    .top-header-text {
        padding: 0 15px;
    }
}
/* Main Header */
@media (max-width: 992px) {
    .main-header {
        padding: 15px 0;
    }
    .main-header .logo {
        max-width: 140px;
    }
}
@media (max-width: 768px) {
    .main-header {
        padding: 12px 0;
    }
    .main-header .logo {
        max-width: 120px;
    }
}
@media (max-width: 480px) {
    .main-header {
        padding: 10px 0;
    }
    .main-header .logo {
        max-width: 100px;
    }
}

/* Hero Section */
@media (min-width: 993px) { /* Desktop */
    .hero-section .hero-inner {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
    .hero-section .hero-text-content {
        max-width: 50%;
        text-align: left;
    }
    .hero-section .hero-image-content {
        max-width: 50%;
        justify-content: flex-end;
    }
}

@media (max-width: 992px) { /* Tablets */
    .hero-section { padding: 60px 0; }
    .hero-section .hero-inner {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding-top: 20px;
    }
    .hero-section .hero-pre-headline { font-size: 3.6rem; line-height: 1.1; } /* AUMENTADO */
    .hero-section .hero-headline { font-size: 4rem; line-height: 1.1; } /* AUMENTADO */
    .hero-section .hero-description { font-size: 1rem; max-width: 90%; margin-left: auto; margin-right: auto;} /* Aumentado */
    .hero-section .hero-text-cta-button { font-size: 1.1rem; padding: 12px 25px; }
    
    .hero-section .hero-image-content {
        max-width: 80%;
        padding: 15px;
    }
    .image-frame { padding: 20px; border-radius: 15px; }
    .image-frame::before,
    .image-frame::after { display: none; }
}

@media (max-width: 768px) { /* Mobile médio */
    .section-padding { padding: 50px 0; }
    .hero-section { padding: 50px 0; }
    .hero-section .hero-pre-headline { font-size: 2.1rem; } /* AUMENTADO */
    .hero-section .hero-headline { font-size: 2.1rem; } /* AUMENTADO */
    .hero-section .hero-description { font-size: 0.9rem; } /* Aumentado */
    .hero-section .hero-text-cta-button { font-size: 1rem; padding: 10px 20px; }
}

@media (max-width: 480px) { /* Mobile pequeno */
    .section-padding { padding: 40px 0; }
    .hero-section { padding: 40px 0; }
    .hero-section .hero-pre-headline { font-size: 1.8rem; letter-spacing: 0em;} /* AUMENTADO */
    .hero-section .hero-headline { font-size: 1.8rem; line-height: 1.2; letter-spacing: 0em;} /* AUMENTADO */
    .hero-section .hero-description { font-size: 0.85rem; }
    .hero-section .hero-text-cta-button { font-size: 0.85rem; padding: 8px 18px; width: 100%; }
}

/* =================================================================
   7. SEÇÃO DE AMOSTRAS
   ================================================================= */
.section-bg-light { background-color: var(--color-bg-section-alt); }

.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.image-card {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

@media (max-width: 768px) {
    .image-grid.grid-4-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .image-grid.grid-4-cols { grid-template-columns: 1fr; }
}


/* =================================================================
   8. SEÇÃO DE CHAMADA PARA AÇÃO (CTA)
   ================================================================= */
.cta-headline {
    font-family: var(--font-heading);
    font-size: 2.5em;
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    margin-bottom: 10px;
}
.cta-subheadline {
    font-family: var(--font-body);
    font-size: 1.4em;
    font-weight: 600;
    color: var(--color-light-gray);
    margin-top: 0;
    opacity: 0.95;
    margin-bottom: 30px;
}
.scroll-down-button {
    background-color: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 30px auto 0 auto;
}
.scroll-down-button:hover {
    background-color: var(--color-white);
    color: var(--color-bg-call-to-action);
    transform: translateY(5px);
}

@media (max-width: 768px) {
    .cta-headline { font-size: 2em; }
    .cta-subheadline { font-size: 1.1em; }
}
@media (max-width: 480px) {
    .cta-headline { font-size: 1.6em; }
    .cta-subheadline { font-size: 1em; }
}

/* =================================================================
   9. SEÇÃO "COMO FUNCIONA" (icon-grid)
   ================================================================= */
.icon-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.icon-card {
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--color-light-gray);
    flex-basis: calc(33.333% - 40px);
    min-width: 280px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--color-white);
}
.icon-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.icon-large {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--color-accent-blue); /* Ícones agora são dark-blue */
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.4em;
    margin-bottom: 10px;
    color: var(--color-dark-blue);
}
.card-description {
    font-family: var(--font-body);
    font-size: 0.98em;
    color: var(--color-medium-gray);
    max-width: none;
}

@media (max-width: 768px) {
    .icon-grid.grid-3-cols { flex-basis: calc(50% - 20px); }
}
@media (max-width: 480px) {
    .icon-grid.grid-3-cols { flex-basis: 100%; }
}

/* =================================================================
   10. SEÇÃO "MAIS EXEMPLOS" (activity-block)
   ================================================================= */
.more-examples-section {
    background-color: var(--color-bg-section-alt);
    border-top: 1px solid rgba(0,0,0,0.05);
}
.more-examples-section h2 {
    font-family: var(--font-heading);
    font-size: 2.2em;
    margin-bottom: 50px;
    color: var(--color-dark-blue);
}
.activity-block {
    margin-bottom: 60px;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--color-light-gray);
    background-color: var(--color-white);
}
.activity-title {
    font-family: var(--font-heading);
    font-size: 1.8em;
    margin-bottom: 15px;
    color: var(--color-dark-blue);
}
.activity-title .highlight-text-block {
    background-color: var(--color-accent-blue); /* Azul dos ícones, como padrão */
    color: var(--color-white); /* Texto branco */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 8px 18px; 
    border-radius: 8px;
    display: inline-block; /* Garante que o padding funcione */
}

/* Cores específicas para os destaques dos títulos de atividades (mantidos e corrigidos) */
.highlight-green-dark-bg { background-color: var(--color-accent-green); color: var(--color-white); }
.highlight-orange-bg { background-color: var(--color-accent-primary); color: var(--color-white); }
.highlight-brown-bg { background-color: var(--color-dark-blue); color: var(--color-white); }
.highlight-magenta-bg { background-color: var(--color-accent-purple); color: var(--color-white); }
.highlight-green-bg { background-color: var(--color-accent-green); color: var(--color-white); }

.activity-description {
    font-family: var(--font-body);
    font-size: 1.05em;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.carousel-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.carousel-grid .image-card {
    max-width: 300px;
    padding: 8px;
    border: 2px solid var(--color-light-gray);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.carousel-grid .image-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-medium);
}

@media (max-width: 768px) {
    .activity-block { padding: 30px; }
}
@media (max-width: 480px) {
    .activity-block { padding: 20px; }
}

/* =================================================================
   11. SEÇÃO DE DEPOIMENTOS (testimonial-grid) - OTIMIZADO PARA MOBILE
   ================================================================= */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}
.testimonial-img {
    width: 100%;
    height: 300px; /* Altura fixa para simetria em desktop */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid var(--color-white);
}
.testimonial-img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* Media Queries para SEÇÃO DE DEPOIMENTOS */
@media (max-width: 992px) { /* Tablets */
    .testimonial-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Reduz min-width */
        gap: 20px; /* Reduz gap */
    }
    .testimonial-img {
        height: 250px; /* Altura menor para tablets */
    }
}

@media (max-width: 768px) { /* Mobile médio */
    .testimonial-grid {
        grid-template-columns: 1fr; /* Uma única coluna em mobile */
        gap: 20px;
    }
    .testimonial-img {
        max-width: 350px; /* Limita a largura da imagem em mobile */
        height: 200px; /* Altura ainda menor para mobile */
        margin: 0 auto; /* Centraliza a imagem na coluna */
    }
}

@media (max-width: 480px) { /* Mobile pequeno */
    .testimonial-img {
        max-width: 100%; /* Garante que ocupe a largura total disponível */
        height: 180px; /* Altura mínima para mobile pequeno */
    }
}

/* =================================================================
   12. SEÇÃO DE PREÇOS (pricing-options)
   ================================================================= */
.section-title-highlight {
    font-family: var(--font-heading);
    font-size: 2.8em;
    color: var(--color-dark-blue);
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 800;
}
.pricing-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.plan-card {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.plan-card .plan-title {
    font-family: var(--font-heading);
    font-size: 2em;
    margin-bottom: 20px;
    color: var(--color-dark-blue);
}
.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    padding-left: 0;
}
.plan-features li {
    font-family: var(--font-body);
    font-size: 1.05em;
    margin-bottom: 12px;
    color: var(--color-medium-gray);
    display: flex;
    align-items: flex-start;
}
.plan-features li .icon-check {
    color: #4CAF50;
    font-size: 1.2em;
    margin-right: 10px;
    line-height: 1.5;
}
.plan-features li .icon-x {
    color: #F44336;
    font-size: 1.2em;
    margin-right: 10px;
    line-height: 1.5;
}
.plan-features li s {
    text-decoration: line-through;
    color: var(--color-medium-gray);
}
.featured-plan-card {
    border: 3px solid var(--color-accent-orange);
    transform: translateY(-15px);
}
.featured-plan-card:hover {
    transform: translateY(-20px);
}

.price-info-block {
    margin-top: auto;
    text-align: center;
}
.price-old {
    font-family: var(--font-body);
    font-size: 1.1em;
    color: var(--color-medium-gray);
    text-decoration: line-through;
    margin-bottom: 5px;
}
.price-current {
    font-family: var(--font-heading);
    font-size: 2.8em;
    font-weight: 700;
    color: var(--color-dark-blue);
    margin-bottom: 10px;
}
.highlight-price-value {
    color: var(--color-accent-orange);
    font-size: 1.2em;
}
.payment-note {
    font-family: var(--font-body);
    font-size: 1em;
    color: var(--color-medium-gray);
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .pricing-options { flex-direction: column; align-items: center; }
    .plan-card { max-width: 80%; }
    .featured-plan-card { transform: translateY(0); margin-bottom: 20px; }
    .featured-plan-card:hover { transform: translateY(0); }
}
@media (max-width: 600px) {
    .plan-card { max-width: 100%; }
    .section-title-highlight { font-size: 2em; }
}

/* =================================================================
   13. SEÇÃO DE GARANTIA E FAQ - Remodelado
   ================================================================= */
.guarantee-faq-section {
    padding: 80px 0;
    background-color: var(--color-bg-section-default);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.guarantee-faq-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
}

.faq-wrapper {
    flex: 2;
    max-width: 65%;
    min-width: 300px;
    order: 1;
}

.guarantee-box-wrapper {
    flex: 1;
    max-width: 30%;
    min-width: 280px;
    text-align: center;
    order: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.guarantee-box {
    background-color: var(--color-bg-section-alt);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    border: 3px solid var(--color-accent-yellow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.guarantee-image {
    max-width: 120px;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}
.guarantee-headline {
    font-family: var(--font-heading);
    font-size: 1.8em;
    color: var(--color-dark-blue);
    margin-bottom: 15px;
    line-height: 1.3;
}
.guarantee-text {
    font-family: var(--font-body);
    font-size: 1em;
    color: var(--color-dark-blue);
    font-weight: 500;
}
.guarantee-text b {
    color: var(--color-accent-orange);
}


@media (max-width: 992px) {
    .guarantee-faq-container {
        flex-direction: column;
        align-items: center;
    }
    .faq-wrapper, .guarantee-box-wrapper {
        max-width: 80%;
        order: unset;
    }
    .guarantee-box { padding: 30px; }
    .guarantee-headline { font-size: 1.6em; }
    .guarantee-text { font-size: 0.95em; }
}
@media (max-width: 600px) {
    .faq-wrapper, .guarantee-box-wrapper {
        max-width: 100%;
    }
    .guarantee-box { padding: 20px; }
    .guarantee-headline { font-size: 1.3em; }
    .guarantee-text { font-size: 0.9em; }
}


/* =================================================================
   14. SEÇÃO FAQ (accordion)
   ================================================================= */
.faq-section {
    padding: 0;
    background-color: transparent;
    border-top: none;
    text-align: center;
}
.faq-section h2 {
    font-family: var(--font-heading);
    font-size: 2.2em;
    color: var(--color-dark-blue);
    margin-bottom: 30px;
}
.accordion {
    max-width: 800px;
    margin: 0 auto;
}
.accordion-item {
    background-color: var(--color-light-gray);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}
.accordion-item[open] {
    background-color: var(--color-white);
    box-shadow: var(--shadow-medium);
}
.accordion-summary {
    font-family: var(--font-heading);
    font-size: 1.2em;
    font-weight: 600;
    color: var(--color-dark-blue);
    padding: 20px 25px;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: color 0.3s ease;
}
.accordion-summary:hover {
    color: var(--color-accent-orange);
}
.accordion-summary::-webkit-details-marker { display: none; }
.accordion-summary::after {
    content: '\25B6';
    position: absolute;
    right: 25px;
    font-size: 1.2em;
    transition: transform 0.3s ease;
    color: var(--color-accent-blue);
}
.accordion-item[open] .accordion-summary::after { transform: rotate(90deg); }
.accordion-content {
    padding: 0 25px 20px 25px;
    font-family: var(--font-body);
    font-size: 1em;
    color: var(--color-medium-gray);
    line-height: 1.6;
}

/* =================================================================
   15. RODAPÉ (main-footer)
   ================================================================= */
.main-footer {
    background-color: var(--color-dark-blue);
    color: var(--color-light-gray);
    padding: 40px 0;
    text-align: center;
    font-size: 0.9em;
}
.main-footer p {
    color: var(--color-light-gray);
    margin-bottom: 10px;
}
.main-footer strong {
    color: var(--color-white);
}

/* =================================================================
   16. WHATSAPP FLUTUANTE
   ================================================================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: var(--color-white);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: var(--shadow-medium);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* =================================================================
   17. ANIMAÇÕES DE REVELAÇÃO (Scroll Reveal)
   ================================================================= */
.reveal-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    transform: translateY(30px);
}
.fade-in-up-delay-1 { transition-delay: 0.1s; }
.fade-in-up-delay-2 { transition-delay: 0.2s; }
.fade-in-up-delay-3 { transition-delay: 0.3s; }
.fade-in-up-delay-4 { transition-delay: 0.4s; }
.fade-in-up-delay-5 { transition-delay: 0.5s; }
.fade-in-up-delay-6 { transition-delay: 0.6s; }
.fade-in-up-delay-7 { transition-delay: 0.7s; }

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-right {
    transform: translateX(30px);
}

.fade-in {
    /* Só opacity */
}

.main-product-image {
    opacity: 0;
    transform: translateY(50px);
}

.main-product-image.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* =================================================================
   18. ANIMAÇÕES ADICIONAIS (para o "Oscar")
   ================================================================= */
.icon-card:hover {
    animation: bounce-scale 0.5s ease-out forwards;
}

@keyframes bounce-scale {
    0% { transform: scale(1); }
    50% { transform: scale(1.05) translateY(-5px); }
    100% { transform: scale(1) translateY(0); }
}

.carousel-grid .image-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-medium);
}

.plan-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}
.featured-plan-card:hover {
    transform: translateY(-20px) scale(1.01);
}