/* ==========================================================================
   CSS VARIABLES & RESET
   ========================================================================== */
:root {
    --primary-color: #3B4B27;      /* Verde Oliva Tático */
    --primary-dark: #2A361A;       /* Verde Oliva Escuro */
    --accent-color: #D4AF37;       /* Dourado/Terra - Autoridade */
    --cta-color: #384B24;          /* Verde Militar Principal */
    --cta-hover: #4B6530;          /* Verde Militar Claro */
    --bg-dark: #121212;            /* Cinza Escuro Quase Preto */
    --bg-card: #1E1E1E;            /* Fundo de cards e blocos */
    --text-main: #E0E0E0;          /* Cinza Claro para leitura longa */
    --text-light: #FFFFFF;         /* Branco para títulos */
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-light);
    line-height: 1.2;
}

.highlight {
    color: var(--accent-color);
}

.text-danger {
    color: #FF4444;
}

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

.mt-5 {
    margin-top: 3rem;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* CTA BUTTONS */
.cta-button {
    display: inline-block;
    background: linear-gradient(to bottom, #5D742C, var(--cta-color));
    color: #FFF;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    padding: 20px 40px;
    border-radius: 8px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(56, 75, 36, 0.4), 0 0 10px rgba(110, 200, 50, 0.2);
    transition: all 0.3s ease;
    border: 2px solid #6E873E;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(56, 75, 36, 0.6), 0 0 15px rgba(110, 200, 50, 0.4);
    background: linear-gradient(to bottom, #6E873E, var(--cta-hover));
    border-color: #83A14A;
}

.giant-cta {
    font-size: 1.5rem;
    padding: 25px 50px;
    width: 100%;
    max-width: 600px;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    background-color: var(--primary-dark);
    background-image: linear-gradient(135deg, rgba(42,54,26,0.9) 0%, rgba(18,18,18,0.95) 100%), url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjgiPgo8cmVjdCB3aWR0aD0iOCIgaGVpZ2h0PSI4IiBmaWxsPSIjMDAwIiBmaWxsLW9wYWNpdHk9IjAuMSIvPgo8cGF0aCBkPSJNMCAwbDhfOFpNOCAwTDAgOFoiIHN0cm9rZT0iI2ZmZiIHN0cm9rZS1vcGFjaXR5PSIwLjAzIiBzdHJva2Utd2lkdGg9IjEiLz4KPC9zdmc+');
    padding: 6rem 0 12rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    border-bottom: 4px solid var(--accent-color);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-text .headline {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-text .sub-headline {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #CCC;
    font-weight: 400;
}

.security-badges-small {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #AAA;
    font-weight: 500;
}

.security-badges-small span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.security-badges-small i {
    color: var(--accent-color);
}

.mockup-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
}

.drop-shadow {
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.6));
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* ==========================================================================
   2. AGITAÇÃO (O PROBLEMA)
   ========================================================================== */
.agitation-section {
    padding: 8rem 0 6rem 0;
    background-color: var(--bg-dark);
    position: relative;
    z-index: 5;
}

.agitation-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    text-align: center;
}

.highlight-box {
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    margin-top: 3rem;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--accent-color);
    border-radius: 0 8px 8px 0;
}

/* ==========================================================================
   STICKY COUNTDOWN BAR & PRICING
   ========================================================================== */
.sticky-countdown-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-color);
    z-index: 9999;
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.sticky-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.bar-urgency {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
}

.bar-tag {
    color: var(--accent-color);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.bar-timer {
    background: rgba(255, 68, 68, 0.15);
    color: #FF4444;
    border: 1px solid rgba(255, 68, 68, 0.3);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.bar-pricing {
    font-size: 0.95rem;
    font-family: var(--font-heading);
}

.old-price-bar {
    text-decoration: line-through;
    color: #777;
}

.bar-pricing strong {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.bar-cta-btn {
    background: linear-gradient(to bottom, #5D742C, var(--cta-color));
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 4px;
    border: 1px solid #6E873E;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(110, 200, 50, 0.1);
}

.bar-cta-btn:hover {
    background: linear-gradient(to bottom, #6E873E, var(--cta-hover));
    border-color: #83A14A;
    box-shadow: 0 0 15px rgba(110, 200, 50, 0.3);
}

.pricing-box {
    background: rgba(42, 54, 26, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 2rem;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.pricing-box .old-price {
    font-size: 0.95rem;
    color: #888;
    text-decoration: line-through;
    font-weight: 500;
}

.pricing-box .price-prefix {
    font-size: 0.9rem;
    color: #FFF;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.pricing-box .new-price {
    font-size: 3.2rem;
    color: var(--accent-color);
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1;
    margin: 2px 0;
}

.pricing-box .discount-tag {
    background: #FF4444;
    color: #FFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    align-self: flex-start;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Adjust layout space due to sticky bar */
body {
    padding-top: 60px;
}

@media (max-width: 768px) {
    .sticky-bar-content {
        justify-content: center;
        text-align: center;
        gap: 8px;
    }
    .bar-cta-btn {
        width: 100%;
        text-align: center;
    }
    body {
        padding-top: 100px;
    }
}

/* ==========================================================================
   TRANSIÇÃO GIGANTE 1 (BORDAS PREENCHIDAS)
   ========================================================================== */
.transition-image-wrapper {
    width: 100vw;
    max-width: 100vw;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
    margin-top: -120px;
    margin-bottom: -80px;
    pointer-events: none;
    overflow: hidden;
}

.transition-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.8));
    display: block;
}

/* ==========================================================================
   TRANSIÇÃO GIGANTE 2 (HORIZONTAL BANNER DE LADO A LADO)
   ========================================================================== */
.transition-banner-wrapper {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    z-index: 9;
    overflow: hidden;
    margin-top: -50px;
    margin-bottom: -50px;
    display: flex;
    justify-content: center;
}

.transition-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 992px) {
    .transition-image-wrapper {
        margin-top: -80px;
        margin-bottom: -100px;
    }
    .transition-banner-wrapper {
        margin-top: -30px;
        margin-bottom: -30px;
    }
}

/* ==========================================================================
   3. APRESENTAÇÃO DO PRODUTO
   ========================================================================== */
.product-presentation {
    padding: 6rem 0;
    background-color: var(--bg-card);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.presentation-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.presentation-text .description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #CCC;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(74, 93, 35, 0.2);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.benefits-list h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.benefits-list p {
    font-size: 0.95rem;
    color: #AAA;
}

/* ==========================================================================
   4. DETALHAMENTO DOS MÓDULOS
   ========================================================================== */
.modules-section {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

.modules-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

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

.modules-side-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
}

@media (max-width: 992px) {
    .modules-layout {
        grid-template-columns: 1fr;
    }
    .modules-image-container {
        order: -1;
    }
}

.module-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transition: background 0.3s ease;
}

.module-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.module-card:hover::before {
    background: var(--accent-color);
}

.module-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.module-card:hover .module-icon {
    color: var(--accent-color);
}

.module-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.module-card p {
    font-size: 0.95rem;
    color: #AAA;
}

/* ==========================================================================
   5. SEÇÃO DE GARANTIA E CONFIANÇA
   ========================================================================== */
.guarantee-section {
    padding: 6rem 0;
    background-color: var(--primary-color);
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjgiPgo8cmVjdCB3aWR0aD0iOCIgaGVpZ2h0PSI4IiBmaWxsPSIjMDAwIiBmaWxsLW9wYWNpdHk9IjAuMSIvPgo8cGF0aCBkPSJNMCAwbDhfOFpNOCAwTDAgOFoiIHN0cm9rZT0iI2ZmZiIHN0cm9rZS1vcGFjaXR5PSIwLjAzIiBzdHJva2Utd2lkdGg9IjEiLz4KPC9zdmc+');
    position: relative;
}

.guarantee-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.guarantee-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.trust-list {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.trust-list li {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.trust-list i {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.guarantee-badge-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.guarantee-badge-card {
    background: var(--bg-card);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.guarantee-badge-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--accent-color);
}

.badge-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.badge-shield-icon {
    font-size: 3rem;
    color: var(--accent-color);
}

.badge-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-light);
    margin: 0;
}

.badge-content {
    margin-bottom: 20px;
}

.badge-days {
    font-size: 5rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
    font-family: var(--font-heading);
    display: block;
}

.badge-sub {
    font-size: 0.9rem;
    font-weight: 700;
    color: #AAA;
    letter-spacing: 2px;
    margin-top: 5px;
}

.badge-footer p {
    font-size: 0.95rem;
    color: #CCC;
    line-height: 1.4;
    margin: 0;
}

/* ==========================================================================
   6. FAQ E RODAPÉ
   ========================================================================== */
.faq-section {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255,255,255,0.02);
}

.faq-question i {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #AAA;
}

.final-cta-container {
    margin-top: 4rem;
}

.secure-checkout-text {
    margin-top: 1rem;
    color: #888;
    font-size: 0.9rem;
}

footer {
    background-color: #0A0A0A;
    padding: 3rem 0;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #1A1A1A;
}

.disclaimer {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    opacity: 0.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   GALLERY / CAROUSEL SECTION
   ========================================================================== */
.gallery-section {
    padding: 6rem 0;
    background-color: var(--bg-card);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #AAA;
    max-width: 600px;
    margin: -2rem auto 3rem auto;
}

.carousel-container {
    position: relative;
    max-width: 450px; /* Formato de celular para imagens verticais */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    background: #111;
}

.carousel-slides {
    display: flex;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    display: none;
    position: relative;
}

.carousel-slide.active {
    display: block;
    animation: fadeEffect 0.6s ease;
}

@keyframes fadeEffect {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

.carousel-slide img {
    width: 100%;
    height: 600px; /* Altura ideal para fotos verticais */
    object-fit: contain; /* Mostra a imagem inteira sem NENHUM corte */
    background: #1a1a1a;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 100%);
    color: #FFF;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid rgba(255,255,255,0.1);
    color: #FFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-control:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}

/* Dots */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
    .carousel-container {
        max-width: 360px;
    }
    .carousel-slide img {
        height: 480px;
    }
    .carousel-caption {
        font-size: 0.9rem;
        padding: 1.5rem 1rem 1rem 1rem;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-content, .presentation-layout, .guarantee-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text .headline {
        font-size: 2.5rem;
    }
    
    .security-badges-small {
        justify-content: center;
        flex-wrap: wrap;
    }

    .benefits-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .guarantee-badge-container {
        order: -1;
    }

    .guarantee-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .trust-list {
        align-items: flex-start;
        max-width: 400px;
        margin: 2rem auto 0 auto;
    }
}

@media (max-width: 768px) {
    .sticky-countdown-bar {
        padding: 8px 0;
    }
    .sticky-bar-content {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 8px;
    }
    .bar-urgency {
        font-size: 0.8rem;
        gap: 5px;
    }
    .bar-timer {
        font-size: 0.9rem;
        padding: 2px 6px;
    }
    .bar-pricing {
        display: none;
    }
    .bar-cta-btn {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    body {
        padding-top: 50px;
    }
}

@media (max-width: 576px) {
    .hero-text .headline {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 2rem;
    }
    
    .hero-text .sub-headline {
        font-size: 1rem;
    }
    
    .agitation-text {
        font-size: 1rem;
    }
    
    .highlight-box {
        font-size: 1.1rem;
        padding: 1.2rem;
    }
    
    .pricing-box {
        padding: 12px 15px;
        margin-bottom: 1.5rem;
    }

    .pricing-box .new-price {
        font-size: 2.4rem;
    }
    
    .cta-button {
        padding: 14px 20px;
        font-size: 0.85rem; /* Menor tamanho para caber em uma linha */
        width: 100%;
        text-align: center;
        letter-spacing: 0.5px;
    }

    .giant-cta {
        font-size: 0.95rem; /* Evita que o botão gigante quebre o texto "AGORA" */
        padding: 16px 20px;
    }
    
    .guarantee-badge-card {
        padding: 20px;
    }
    
    .badge-days {
        font-size: 4rem;
    }

    .security-badges-small {
        justify-content: center;
        gap: 10px;
        font-size: 0.75rem;
    }
}
