/* VARIÁVEIS DE COR E TEMA */
:root {
    --primary-color: #6CAE9C;
    /* Verde Sálvia Suave - Esperança/Cura */
    --primary-dark: #4a8072;
    --accent-color: #D4A373;
    /* Tom Terroso/Dourado Suave - Acolhimento */
    --bg-light: #F9F9F7;
    /* Off-white com toque quente */
    --bg-white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-light: #546E7A;
    --text-white: #FFFFFF;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.1);

    --transition: all 0.3s ease;
}

/* RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* Prevent horizontal scroll globally */
    width: 100%;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    /* Extra safety */
    width: 100%;
}

h1,
h2,
h3,
.tagline {
    font-family: 'Playfair Display', serif;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.narrow-container {
    max-width: 800px;
}

/* COMPONENTES GERAIS */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: #32CD32 !important;
    /* Lime Green - Same as btn-offer */
    color: #000 !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    box-shadow: 0 4px 0 #228b22 !important;
    border-radius: 8px;
    transition: transform 0.1s;
}

.btn-primary:hover {
    background-color: #3ce63c !important;
    transform: scale(1.02);
    box-shadow: 0 4px 0 #228b22 !important;
}

.btn-primary:active {
    transform: translateY(4px);
    box-shadow: none !important;
}

.highlight {
    color: var(--primary-color);
    font-style: italic;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #FDFBF7 0%, #EBF4F1 100%);
    padding: 50px 0 260px;
    /* Similar padding to offer section */
    /* Espaço para a onda */
    position: relative;
    overflow: hidden;
}

/* Force single column layout for hero - override any other rules */
.hero .container.hero-content,
.hero .hero-content {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
}

.container.hero-content,
.hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 40px !important;
    position: relative;
    z-index: 10;
    max-width: 650px !important;
    margin: 0 auto !important;
    text-align: center !important;
    width: 100% !important;
    /* Ensure content sits above the wave */
}

.hero-text {
    width: 100% !important;
    order: 1 !important;
    flex: none !important;
}

.hero-image {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    order: 2 !important;
    flex: none !important;
    margin-bottom: 30px !important;
    margin-top: 20px !important;
}

.hero-text .btn {
    margin-top: 0 !important;
}

.tagline {
    display: block;
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 100%;
}

.book-cover-hero {
    width: 100%;
    max-width: 320px;
    /* Reduced from 400px */
    height: auto;
    border-radius: 5px;
    /* Slight rounding like a book spine/cover */
    box-shadow: -10px 15px 30px rgba(0, 0, 0, 0.2);
    /* Realistic shadow */
    transform: rotate(-2deg);
    /* Subtle artistic tilt */
    transition: transform 0.3s ease;
}

.book-cover-hero:hover {
    transform: rotate(0deg) scale(1.02);
}

.image-placeholder {
    width: 100%;
    max-width: 350px;
    height: 450px;
    background-color: #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #666;
    font-family: monospace;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 2px dashed #bbb;
    background-size: cover;
    background-position: center;
}

/* ONDA DECORATIVA */
.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

/* PROBLEM SECTION */
.problem {
    background-color: var(--bg-white);
    padding: 20px 0 40px;
    /* Reduced top padding further (40->20), keeping bottom at 40 */
    text-align: center;
}

.problem h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.card-pain {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.card-pain:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* --- UPDATED PROBLEM SECTION STYLES --- */

/* Pulling section up to reduce gap significantly (2/3 reduction request) */
.problem {
    padding-top: 0 !important;
    padding-bottom: 50px !important;
    margin-top: -150px !important;
    /* Pulls content up over the excessive hero padding */
    position: relative;
    z-index: 20;
    /* Ensures it sits above hero background if needed */
}

.problem h2 {
    font-size: 2rem !important;
    margin-bottom: 20px !important;
    color: var(--text-dark);
    line-height: 1.3;
}

.problem-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.problem-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #d9534f;
    /* Red color as requested */
    margin-top: 10px;
    /* Reduced top margin */
    margin-bottom: 20px;
    font-style: italic;
}

/* Fix for bullets on left */
.pain-list {
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 0 !important;
    margin: 0 auto 10px;
    /* Reduced bottom margin (40px -> 10px) to bring text closer */
    text-align: left;
    display: inline-block;
}

.pain-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none !important;
    /* Extra safety */
}

/* Ensure no pseudo-elements creating bullets */
.pain-list li::before {
    content: none !important;
}

.problem-conclusion {
    background: #fdfbf7;
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.problem-conclusion p {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.problem-conclusion .highlight-text {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0;
}

.card-pain .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.card-pain p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

.bridge-text {
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 600;
}

/* SOLUTION SECTION */
.solution {
    padding: 50px 0;
    /* Reduced from 100px */
    background-color: #F4F8F7;
}

.solution-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.solution-text {
    text-align: left;
    width: 100%;
    order: 1 !important;
}

.solution-image {
    order: 2 !important;
    margin: 40px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.solution-content .btn {
    order: 3 !important;
    margin-top: 30px;
}

.section-tag {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.solution h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    margin-top: 30px;
}

.benefits-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.benefits-list .check {
    font-size: 1.5rem;
}

.benefits-list h4 {
    margin-bottom: 5px;
}

.solution-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    object-fit: cover;
    transition: var(--transition);
}

.solution-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* SNEAK PEEK */
.sneak-peek {
    padding: 40px 0;
    /* Reduced from 80px */
    text-align: center;
}

.carousel-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.day-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    /* Fill grid cell */
    text-align: left;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary-color);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    /* Spacing below header */
}

.day-badge {
    background: var(--bg-light);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0;
    /* Handled by header margin */
    display: inline-block;
}

.card-icon {
    font-size: 2rem;
    /* Adjusted size slightly */
    line-height: 1;
    margin-bottom: 0;
    /* Handled by header margin */
    display: block;
}

.day-card h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.day-card h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

/* TESTIMONIALS SECTION */
.testimonials {
    background-color: #FDF1E6;
    /* Light beige/peach tone from reference */
    padding: 60px 0;
    text-align: center;
}

.testimonials-headline {
    color: red;
    /* Explicit red as requested */
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.8rem;
    margin-bottom: 50px;
    line-height: 1.3;
}

.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial-card {
    width: 200px;
    /* Approximate phone width */
    height: 400px;
    /* Approximate phone height */
    background: #fff;
    border-radius: 30px;
    border: 4px solid #333;
    /* Reduced bezel thickness */
    /* Phone bezel */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    background-color: #000;
    /* Dark background to blend with bezel */
    /* Placeholder bg */
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Shows full image */
    display: block;
}

/* Mobile responsive for testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        justify-content: center;
        padding-left: 10px;
        padding-right: 10px;
        overflow-x: hidden;
        /* Remove horizontal scroll */
    }

    .testimonial-card {
        width: 100%;
        height: auto;
        aspect-ratio: 9/16;
        /* Mantém proporção de celular */
        max-width: 160px;
        margin: 0 auto;
    }

    .testimonial-card-mobile-hide {
        display: none;
        /* Esconde o terceiro depoimento no mobile */
    }
}

/* BONUS SECTION */
.bonus {
    background-color: #E8F0ED;
    /* Darker green-tinted background for better contrast with white cards */
    color: var(--text-dark);
    padding: 60px 0;
    text-align: center;
}

.bonus h2 {
    color: var(--text-dark);
    margin-bottom: 50px;
    font-size: 2.2rem;
}

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

.bonus-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.bonus-image-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 240px;
    max-height: 320px;
}

.bonus-product-image {
    max-width: 100%;
    max-height: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    border-radius: 8px;
}

.bonus-price-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.bonus-old-price {
    color: #8B5CF6;
    /* Purple color like in image */
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: line-through;
}

.bonus-free-label {
    color: #28a745;
    /* Green color */
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.bonus-item h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 800;
    font-family: 'Lato', sans-serif;
    /* Use Lato instead of Playfair Display for uniform number height */
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.3;
    font-variant-numeric: lining-nums;
    /* Ensures numbers have uniform height */
}

.bonus-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* OFFER SECTION */
.offer {
    padding: 50px 0;
    /* Reduced from 100px */
    background: #FDFBF7;
    text-align: center;
}

.offer-box {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 2px solid var(--accent-color);
}

.offer-pre {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.offer-box h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.price-box {
    margin-bottom: 40px;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
}

.new-price {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    opacity: 0.8;
}

.guarantee p {
    font-size: 0.9rem;
}

/* FAQ STYLES */
.faq {
    padding: 40px 0;
    /* Reduced from 80px */
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    font-family: 'Lato', sans-serif;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
}

.accordion-header.active::after {
    content: '-';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.accordion-content p {
    padding-bottom: 20px;
    color: var(--text-light);
}

/* FOOTER */
footer {
    background: var(--text-dark);
    color: #aaa;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* ANIMATIONS */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(108, 174, 156, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(108, 174, 156, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(108, 174, 156, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .container {
        width: 100% !important;
        padding-left: 25px !important;
        padding-right: 25px !important;
        /* box-sizing: border-box is already global, this guarantees fit */
        margin: 0;
    }

    .hero {
        padding-bottom: 120px;
        /* Reduced from 260px for mobile */
    }

    .problem {
        margin-top: -60px !important;
        /* Adjusted from -150px to match reduced hero padding */
    }

    .hero-content {
        gap: 30px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }


    .carousel-wrapper {
        grid-template-columns: 1fr;
        /* Force 1 column on mobile */
        max-width: 100%;
    }

    .benefits-list li {
        justify-content: flex-start;
        text-align: left;
    }

    .image-placeholder {
        margin: 0 auto;
    }
}

/* --- DEDICATED GUARANTEE SECTION STYLES --- */
.guarantee-dedicated {
    background-color: #fff;
    padding: 40px 0;
    /* Reduced from 80px */
    border-top: 1px solid #eee;
}

.guarantee-content {
    display: grid;
    grid-template-columns: 40% 60%;
    /* Image column smaller, Text column wider */
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-badge-container {
    display: flex;
    justify-content: center;
    /* Center image within its column */
}

.guarantee-badge-visual {
    width: 100%;
    max-width: 300px;
    /* Max width for the image */
}

.guarantee-seal-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.guarantee-text-block {
    text-align: left;
}

.guarantee-text-block h3 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.guarantee-text-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* RESPONSIVE FOR GUARANTEE */
@media (max-width: 768px) {
    .guarantee-content {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        text-align: center;
        gap: 30px;
    }

    .guarantee-badge-container {
        justify-content: center;
    }

    .guarantee-text-block h3 {
        font-size: 1.4rem;
    }

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

/* --- UPDATED OFFER BOX STYLES (Appended Fix) --- */

/* Override Offer Box Container */
.offer-box {
    border: 2px dashed #ffb800 !important;
    /* Yellow/Orange dashed border */
    border-radius: 10px !important;
    padding: 30px !important;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    background: white;
}

.offer-headline {
    color: #ff0000 !important;
    font-size: 1.5rem !important;
    text-transform: uppercase;
    margin-bottom: 20px !important;
    font-weight: 800 !important;
    font-family: 'Lato', sans-serif !important;
    text-align: center;
}

.problem-content-wrapper {
    display: inline-block;
    text-align: left;
    max-width: 100%;
    /* Prevents overflow on mobile */
}

.problem-conclusion-simple {
    text-align: left;
    /* max-width and margin auto removed to follow wrapper alignment */
    padding: 0 0 20px;
    /* top padding is 0 */
}

/* Updated Typography for Conclusion */
.problem-conclusion-simple p {
    font-size: 1.2rem;
    /* Matches intro text */
    margin-bottom: 5px;
    color: var(--text-dark);
    font-weight: 700;
    /* Bold as requested */
}

.problem-conclusion-simple .highlight-text {
    font-weight: 700;
    color: var(--text-dark);
    /* Changed to text-dark to match previous line, assuming user wants "sequence" */
    font-size: 1.2rem;
    /* Matches previous line */
    margin-bottom: 20px;
}

/* Increased spacing for button */
.mt-20 {
    margin-top: 40px !important;
    /* Increased from 20px to distance button */
    display: block;
    /* Ensures margin works correctly on anchor */
}

ul.offer-list {
    list-style: none !important;
    /* Force removal of bullets */
    list-style-type: none !important;
    text-align: left;
    margin-bottom: 20px;
    padding-left: 0 !important;
    /* Remove default padding */
    margin-left: 0 !important;
}

ul.offer-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #333;
    padding: 5px 0;
    list-style: none !important;
    /* Extra safety */
}

ul.offer-list li.separator {
    color: #ccc;
    font-size: 0.8rem;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
    opacity: 0.5;
    margin: 0;
    padding: 0;
    line-height: 0.5;
    display: block;
    justify-content: center;
}

.icon-check-black {
    background: #222;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
    font-weight: bold;
}

.icon-check-green {
    background: #28a745;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
    font-weight: bold;
}

.green-text {
    color: #28a745;
    font-weight: 700;
    text-transform: uppercase;
}

/* Scarcity Text */
.scarcity-text {
    font-size: 0.9rem;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
}

/* Pricing */
.price-box-updated {
    margin-bottom: 20px;
    text-align: center;
}

.price-old {
    display: block;
    color: #ff0000;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.price-old .strike {
    text-decoration: line-through;
}

.price-label {
    display: block;
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
}

.price-final {
    display: block;
    color: #009e2a;
    /* Bright Money Green */
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Lato', sans-serif;
    line-height: 1;
}

/* Updated Button */
.btn-offer {
    background-color: #32CD32 !important;
    /* Lime Green - Force override */
    color: #000 !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    width: 100%;
    border-radius: 8px;
    padding: 20px 10px !important;
    /* Increased padding */
    box-shadow: 0 4px 0 #228b22 !important;
    margin: 20px 0 !important;
    /* Spacing before and after */
    font-size: 1.2rem !important;
    transition: transform 0.1s;
    display: block !important;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-offer:active {
    transform: translateY(4px);
    box-shadow: none !important;
}

.btn-offer:hover {
    background-color: #3ce63c !important;
    transform: scale(1.02);
    /* Slight grow */
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.badge-blindado {
    max-width: 200px;
    width: 100%;
    height: auto;
}

.badge-payment {
    max-width: 250px;
    width: 100%;
    height: auto;
}
