/* Variables */
:root {
    --primary: #2A5B7D;
    --primary-light: #3A7BA5;
    --secondary: #FFA630;
    --secondary-light: #FFBA5C;
    --dark: #1A2E40;
    --darker: #0E1A26;
    --light: #F5F7FA;
    --lighter: #FFFFFF;
    --gray: #6C757D;
    --success: #4CAF50;
    --danger: #E74C3C;
    --warning: #FFC107;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    gap: 8px;
}

.cta-button:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-button.small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.cta-button.xl {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 166, 48, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 166, 48, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 166, 48, 0);
    }
}

/* Header Premium - Versão Formal */
.header {
    background: linear-gradient(135deg, var(--primary), var(--darker));
    color: white;
    padding: 1.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: Arial, sans-serif;
}

.header::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 166, 48, 0.1) 0%, transparent 70%);
    z-index: 0;
    animation: rotate-gradient 20s linear infinite;
}

@keyframes rotate-gradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    position: relative;
    z-index: 1;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.5rem;
}

.logo-title {
    font-family: Arial, sans-serif;
    font-size: 2.8rem;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    position: relative;
}

.logo-title::after {
    content: "®";
    font-size: 1rem;
    vertical-align: super;
    margin-left: 3px;
    color: var(--secondary);
}

.stars-rating {
    color: var(--secondary);
    font-size: 1.5rem;
    letter-spacing: 5px;
    margin: 0.5rem 0;
    text-shadow: 0 0 8px rgba(255, 166, 48, 0.5);
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0.5rem 0;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.stats-container {
    display: flex;
    gap: 2rem;
    margin: 0.5rem 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quiz-cta-container {
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary), #ff9500);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    gap: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 166, 48, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: Arial, sans-serif;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 166, 48, 0.6);
}

.cta-subtext {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsivo */
@media (max-width: 768px) {
    .header {
        padding: 1.2rem 0;
    }
    
    .logo-title {
        font-size: 2rem;
    }
    
    .stars-rating {
        font-size: 1.2rem;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 6px 18px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}

/* Hero Section */
.hero {
    padding: 50px 0 100px;
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    position: relative;
    color: white;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--secondary);
}

.hero .lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero .lead strong {
    color: var(--secondary);
}

.badge-urgent {
    display: inline-block;
    background-color: var(--danger);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.hero-video {
    margin: 3rem 0;
}

.video-placeholder {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.play-button i {
    font-size: 2rem;
    color: white;
    margin-left: 5px;
}

.play-button:hover {
    background-color: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%) scale(1.1);
}

.hero-cta {
    margin: 2rem 0;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.timer-container {
    margin: 2rem 0;
}

.timer-container p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.timer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.timer-block {
    background-color: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 5px;
    min-width: 80px;
    text-align: center;
}

.timer-block span {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    color: var(--secondary);
}

.timer-block small {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    display: block;
}

html {
    scroll-behavior: smooth;
}

/* Estilo adicional para o ícone de seta */
.fa-arrow-down {
    transition: transform 0.3s ease;
}

.cta-button:hover .fa-arrow-down {
    transform: translateY(3px);
}

/* Social Proof */
.social-proof {
    padding: 60px 0;
    background-color: white;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.proof-item {
    background-color: var(--light);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: all 0.3s ease;
}

.proof-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.proof-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
}

.proof-content {
    flex: 1;
}

.proof-stars {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.proof-name {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

/* ============ SEÇÃO CONFIANÇA ============ */
.trust-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.trust-section .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.trust-section h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.trust-section h2 span {
    color: var(--secondary);
    position: relative;
}

.trust-section h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary);
}

.trust-section .subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Card de Posicionamento */
.positioning-card {
    display: flex;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 4rem;
}

.positioning-content {
    flex: 1;
    padding: 3rem;
}

.positioning-image {
    flex: 1;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.positioning-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.positioning-card h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.positioning-card h3 span {
    color: var(--secondary);
}

.benefits-list {
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}

.benefits-list li {
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.1rem;
}

.benefits-list i {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--success);
    font-size: 1.3rem;
}

/* Processo em 3 Passos */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.step-card.highlighted {
    border-top-color: var(--secondary);
    background: linear-gradient(to bottom, #ffffff 0%, #fff9f0 100%);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.step-card h4 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    text-align: center;
    margin-top: 1.5rem;
}

/* Responsivo */
@media (max-width: 992px) {
    .positioning-card {
        flex-direction: column;
    }
    
    .positioning-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .trust-section {
        padding: 3rem 0;
    }
    
    .trust-section h2 {
        font-size: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Experience Section */
.experience {
    padding: 100px 0;
    background-color: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
}

.section-header h2 span {
    color: var(--primary);
}

.section-header p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.journey {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.journey-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.journey-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.journey-content {
    padding: 2rem;
}

.journey-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

.journey-image {
    margin-top: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.journey-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.journey-item:hover .journey-image img {
    transform: scale(1.05);
}

/* ============ RESULTS SECTION PREMIUM ============ */
.results {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f9fafc 100%);
    position: relative;
    overflow: hidden;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.results-chart {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 400px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.results-chart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.chart-legend {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    display: inline-block;
}

/* Tooltip customizado */
.chartjs-tooltip {
    background: rgba(0,0,0,0.8) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    backdrop-filter: blur(5px);
    border: none !important;
}

/* Responsivo */
@media (max-width: 768px) {
    .results {
        padding: 60px 0;
    }
    
    .results-chart {
        height: 350px;
        padding: 1.5rem;
    }
    
    .chart-legend {
        gap: 1rem;
    }
}

.results-highlight {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.highlight-item {
    background-color: var(--light);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    margin-bottom: 0;
}

.highlight-content span {
    color: var(--primary);
    font-weight: 700;
}

/* Product Section */
.product {
    padding: 10px 0;
    background-color: var(--light);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.product-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.product-item.reverse {
    direction: rtl;
}

.product-item.reverse > * {
    direction: ltr;
}

.product-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    height: 400px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.product-content ul {
    margin-bottom: 2rem;
}

.product-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-content li:last-child {
    border-bottom: none;
}

.product-content i {
    color: var(--success);
}

.product-notification {
    background-color: var(--primary);
    color: white;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.notification-icon {
    font-size: 3rem;
    color: var(--secondary);
}

.notification-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.notification-content p {
    opacity: 0.8;
}

/* ============ PRICING SECTION - VERSÃO PROFISSIONAL ============ */
.pricing {
    padding: 60px 0;
    background-color: #f9fafc;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
    margin-top: 3.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background-color: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid #eef2f7;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 50px rgba(0,0,0,0.12);
}

.pricing-card.featured {
    border-top: 4px solid var(--secondary);
    box-shadow: 0 12px 45px rgba(255, 166, 48, 0.15);
}

.pricing-badge {
    position: absolute;
    top: 10px; /* Reduzi de 20px para 15px */
    right: 20px;
    /* Restante das propriedades permanece igual */
    background-color: var(--secondary);
    color: white;
    padding: 8px 25px;
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 4px 16px rgba(255, 166, 48, 0.3);
    z-index: 2;
}

.pricing-header {
    padding: 2.5rem 2rem 1.8rem;
    text-align: center;
    background-color: white;
    border-bottom: 1px solid #f0f4f9;
}

.pricing-header h3 {
    font-size: 1.7rem;
    color: var(--dark);
    margin-bottom: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    font-family: 'Montserrat', sans-serif;
}

.plan-subtitle {
    color: var(--primary-light);
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0.4rem 0 1.2rem;
    letter-spacing: 0.3px;
    display: block;
}

.price {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1.2rem 0 0.6rem;
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
}

.price span {
    font-size: 1.1rem;
    font-weight: 500;
}

.price-description {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.savings-badge {
    background: var(--success);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: 12px;
    display: inline-block;
    vertical-align: middle;
}

.pricing-features {
    padding: 1.8rem 2.2rem;
}

.pricing-features ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ============ ALINHAMENTO DOS ÍCONES - VERSÃO REFINADA ============ */
.pricing-features li {
    display: flex;
    align-items: flex-start; /* Alinhamento no topo para múltiplas linhas */
    padding: 0.9rem 0;
    min-height: 44px;
    border-bottom: 1px solid #f0f4f9;
    line-height: 1.5;
    font-size: 1rem;
    color: #4a5568;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 12px; /* Espaço entre ícone e texto */
}

.feature-item::before {
    content: '\f00c'; /* Ícone de check do Font Awesome */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--success);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 3px; /* Ajuste fino de alinhamento */
}

.sub-feature {
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    color: #5a6778;
    gap: 12px;
    padding-left: 1.5rem; /* Recuo para subitens */
}

.sub-feature::before {
    content: '\f111'; /* Ícone de círculo do Font Awesome */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--success);
    font-size: 0.6rem;
    flex-shrink: 0;
    margin-top: 6px; /* Ajuste fino de alinhamento */
}

/* ============ EFEITOS E RESPONSIVO ============ */
.pricing-features li:last-child {
    border-bottom: none;
}

/* ============ BOTÕES CTA AJUSTADOS ============ */
.pricing-cta {
    padding: 1.5rem 2.2rem 2.2rem;
    text-align: center;
    border-top: 1px solid #f0f4f9;
    margin-top: 0.5rem;
}

.cta-button {
    display: inline-block;
    width: calc(100% - 4rem);
    max-width: 280px;
    margin: 1.2rem auto 0;
    padding: 14px 28px;
    font-size: 1.05rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button.highlight {
    background: linear-gradient(135deg, var(--secondary), #e67e22);
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.25);
}

.cta-button.highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

/* ============ RESPONSIVO ============ */
@media (max-width: 1200px) {
    .pricing-grid {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 15px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        gap: 30px;
    }
    
    .pricing-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .pricing-features {
        padding: 1.5rem;
    }
    
    .pricing-cta {
        padding: 1.2rem 1.5rem 1.8rem;
    }
    
    .pricing-features li {
        font-size: 0.95rem;
        min-height: 40px;
    }
    
    .feature-item::before {
        font-size: 0.9rem;
    }
    
    .sub-feature {
        padding-left: 1.2rem;
    }
    
    .cta-button {
        width: calc(100% - 2rem);
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .pricing-header h3 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .feature-item,
    .sub-feature {
        gap: 8px;
    }
    
    .sub-feature {
        padding-left: 1rem;
    }
    
    .pricing-features li {
        min-height: 36px;
    }
    
    .feature-item {
        padding-left: 1.8rem;
    }
}

@media (max-width: 768px) {
    .pricing-badge {
        top: 12px;
        right: 15px;
        padding: 6px 20px;
    }
    
    .pricing-header {
        padding: 2.5rem 1.5rem 1.5rem;
    }
}


/* ============ UPSELL GRID ============ */
.upsell-grid {
    margin-top: 4rem;
    position: relative;
}

.upsell-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.upsell-header h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.upsell-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary);
}

.upsell-header p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.upsell-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
}

/* ============ CARD STYLES ============ */
.upsell-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.upsell-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Banner Superior - Imagem Horizontal Completa */
.upsell-banner {
    height: 0;
    padding-top: 54%; /* Proporção 1200x648 (648/1200 = 0.54) */
    position: relative;
    background-color: #f8f9fa;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.upsell-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.banner-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: var(--darker);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 2;
}

/* Ícone Centralizado */
.upsell-icon {
    width: 70px;
    height: 70px;
    background-color: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: -35px auto 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 4px solid white;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.upsell-card:hover .upsell-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--primary);
    color: white;
}

/* Conteúdo do Card */
.upsell-content {
    padding: 0 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.upsell-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-badge {
    color: var(--secondary);
    font-size: 0.9em;
    margin-left: 8px;
}

.price-container {
    text-align: center;
    margin: 0.5rem 0 1.5rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    display: inline-block;
}

.old-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 1rem;
    margin-right: 10px;
    font-weight: 500;
}

.discount-badge {
    background: var(--danger);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-left: 10px;
    vertical-align: middle;
}

.upsell-content ul {
    margin: 1rem 0 2rem;
    flex-grow: 1;
}

.upsell-content li {
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 25px;
    line-height: 1.4;
}

.upsell-content li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success);
    font-size: 0.9rem;
}

/* Botão e Urgência */
.cta-button.small {
    align-self: center;
    margin-top: auto;
    width: 100%;
    max-width: 250px;
    padding: 12px 20px;
    font-size: 1rem;
}

.urgency-text {
    font-size: 0.85rem;
    color: var(--danger);
    text-align: center;
    margin-top: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ============ RESPONSIVO ============ */
@media (max-width: 992px) {
    .upsell-cards {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .upsell-header h3 {
        font-size: 1.6rem;
    }
    
    .upsell-header p {
        font-size: 1rem;
    }
    
    .upsell-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 3rem;
    }
    
    .upsell-banner {
        height: 120px;
    }
    
    .upsell-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-top: -30px;
    }
    
    .upsell-content {
        padding: 0 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .upsell-header h3 {
        font-size: 1.4rem;
    }
    
    .upsell-content h4 {
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .upsell-content li {
        font-size: 0.9rem;
        padding-left: 22px;
    }
}

@media (max-width: 768px) {
    .upsell-banner {
        padding-top: 60%; /* Ajuste para telas menores */
    }
}

@media (max-width: 480px) {
    .upsell-banner {
        padding-top: 70%; /* Proporção mais vertical em mobile */
    }
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--light);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.faq-question {
    background-color: var(--primary);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 1.5rem;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--dark));
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--darker);
    color: white;
    padding: 3rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-brand .logo {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.links-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.links-column ul li {
    margin-bottom: 0.8rem;
}

.links-column a {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.links-column a:hover {
    opacity: 1;
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    font-size: 1.2rem;
    color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
    color: var(--secondary);
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .product-item {
        grid-template-columns: 1fr;
    }
    
    .product-item.reverse {
        direction: ltr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timer {
        gap: 5px;
    }
    
    .timer-block {
        min-width: 60px;
    }
    
    .timer-block span {
        font-size: 1.5rem;
    }
}
