/* =========================================
   DESIGN SYSTEM & CSS VARIABLES
   ========================================= */
:root {
    /* Colors - Brand & Background */
    --color-bg-primary: #ecf3ea; /* Fundo verde sálvia claro (flat, aligned with sezione libro) */
    --color-bg-secondary: #ffffff; /* Fundo branco para seções alternadas */
    --color-card-bg: rgba(255, 255, 255, 0.95);
    
    /* Colors - Accents */
    --color-primary: #2e7d32; /* Verde vibrante principal */
    --color-primary-light: #4caf50; /* Verde vibrante claro (gradients/hover) */
    --color-primary-dark: #1b5e20; /* Verde escuro */
    --color-accent-red: #d32f2f; /* Barra de oferta */
    --color-warning: #f59e0b; /* Estrelas/Reviews */

    /* Colors - Typography */
    --color-text-primary: #1a2e1c; /* Textos principais e títulos */
    --color-text-secondary: #4a5c4c; /* Subtítulos e textos complementares */
    --color-text-light: #ffffff; /* Textos sobre fundos escuros */

    /* Typography - Font Families */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Typography - Font Sizes */
    --text-xs: 0.75rem;     /* 12px */
    --text-sm: 0.85rem;     /* 14px */
    --text-base: 1rem;      /* 16px */
    --text-lg: 1.15rem;     /* 18px */
    --text-xl: 1.25rem;     /* 20px */
    --text-2xl: 1.5rem;     /* 24px */
    --text-3xl: 2rem;       /* 32px */
    --text-4xl: 2.5rem;     /* 40px */
    --text-5xl: clamp(3rem, 5vw, 4.5rem); /* Títulos Gigantes (Hero) */

    /* Typography - Font Weights */
    --weight-light: 300;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-extrabold: 800;

    /* Spacing System */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 40px;
    --spacing-2xl: 60px;
    --spacing-3xl: 80px;

    /* Shadows */
    --shadow-soft: 0 10px 40px rgba(46, 125, 50, 0.08); /* Sombras gerais de imagens */
    --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.06); /* Sombras de cards flutuantes */
    --shadow-button: 0 10px 20px rgba(46, 125, 50, 0.3); /* Sombra botões */
    --shadow-button-hover: 0 15px 25px rgba(46, 125, 50, 0.4);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-pill: 50px;

    /* Legacy Variables for Hero Section */
    --bg-color: var(--color-bg-primary);
    --text-primary: var(--color-text-primary);
    --text-secondary: var(--color-text-secondary);
    --accent-green: var(--color-primary);
    --accent-green-light: var(--color-primary-light);
    --top-bar-bg: var(--color-accent-red);
    --card-bg: var(--color-card-bg);
}

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

body {
    background-color: var(--bg-color);
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Top Bar */
.top-bar {
    background-color: #c62828;
    color: #ffffff;
    text-align: center;
    padding: 10px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.25);
}

@media (max-width: 768px) {
    .top-bar {
        padding: 8px 14px;
        font-size: 13px;
        line-height: 1.3;
    }
}

/* Container */
.container {
    max-width: 1180px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 var(--container-padding, 24px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: calc(100vh - 36px); /* subtract top bar height */
    gap: 60px;
}

.hero {
    position: relative;
    padding: 40px 0;
}

/* Left Column Content */
.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 10;
}

.badge-pill {
    display: inline-block;
    background: rgba(46, 125, 50, 0.1);
    color: var(--accent-green);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.headline {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

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

.subheadline {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 500;
}

.complementary-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    opacity: 0.8;
}

.reviews {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.stars {
    display: flex;
    gap: 2px;
}

.star-icon {
    width: 18px;
    height: 18px;
    fill: #f59e0b;
    color: #f59e0b;
}

.review-score {
    font-weight: 700;
    color: var(--text-primary);
}

.review-count {
    color: var(--text-secondary);
}

.benefits {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.benefits li i {
    color: var(--accent-green);
    width: 20px;
    height: 20px;
}

.cta-container {
    position: relative;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-light));
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    animation: pulse-animation 2s infinite;
    text-decoration: none;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(46, 125, 50, 0.4);
    animation: none;
}

/* Right Column Image */
.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-container {
    position: relative;
    max-width: 650px;
    width: 100%;
}

.main-mockup {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    object-fit: contain;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.6);
    animation: float 6s ease-in-out infinite;
    z-index: 20;
}

.card-top-right {
    top: -39px;
    right: -25px;
    animation-delay: 0s;
}

.card-bottom-left {
    bottom: -39px;
    left: -25px;
    animation-delay: 2s;
}

.card-icon {
    background: rgba(46, 125, 50, 0.1);
    color: var(--accent-green);
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-icon i {
    width: 24px;
    height: 24px;
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-text strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
}

.card-text span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

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

/* Responsive */
/* Responsive */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        padding-top: 40px;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        max-width: 800px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .benefits {
        text-align: left;
    }

    .card-top-right {
        right: 0;
    }
    .card-bottom-left {
        left: 0;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 15px;
        padding-bottom: 25px;
    }
    
    /* Hero layout engine for reordering */
    .hero .container {
        display: flex;
        flex-direction: column;
        padding-top: 0;
        gap: 0;
        align-items: stretch; /* So children can span full width */
    }
    
    .hero-content {
        display: contents; /* MAGIC! Children become direct children of .container */
    }

    /* Reordering elements */
    .badge-pill { order: 1; margin: 0 auto 15px auto; }
    .headline { 
        order: 2; 
        margin-bottom: 12px; 
        font-size: clamp(42px, 8vw, 58px) !important; 
        line-height: 0.95; 
        letter-spacing: -1px; 
    }
    .subheadline { 
        order: 3; 
        margin: 0 auto 12px auto; 
        max-width: 95%; 
        font-size: 15px; 
        line-height: 1.4;
    }
    .complementary-text { 
        order: 4; 
        margin: 0 auto 25px auto; 
        max-width: 95%; 
        font-size: 13px; 
        line-height: 1.4;
    }
    .hero-image-wrapper { 
        order: 5; 
        margin: 25px auto 50px auto; 
        width: 100%; 
        max-width: 450px; 
    }
    .reviews { 
        order: 6; 
        margin: 0 auto 20px auto; 
        display: flex;
        flex-direction: row; 
        gap: 6px; 
        flex-wrap: nowrap; 
        justify-content: center; 
        align-items: center; 
    }
    .benefits { 
        order: 7; 
        margin: 0 auto 25px auto; 
        width: 100%; 
        max-width: 100%; 
        display: grid; 
        grid-template-columns: 1fr 1fr; 
        gap: 8px; 
    }
    .cta-container { 
        order: 8; 
        width: 100%; 
        margin: 0 auto; 
    }
    
    /* Specific styling for Mobile */
    .benefits li {
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(46, 125, 50, 0.1);
        border-radius: 8px;
        padding: 8px 10px;
        font-size: 13px;
        display: flex;
        align-items: center;
        gap: 6px;
        justify-content: flex-start;
        margin-bottom: 0;
    }
    .benefits li i {
        width: 16px;
        height: 16px;
        min-width: 16px;
    }

    .cta-button {
        width: 100%;
        padding: 18px 28px;
        font-size: 18px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(46, 125, 50, 0.25);
    }
    
    .reviews .stars i {
        width: 14px;
        height: 14px;
    }
    .review-score {
        font-size: 14px;
    }
    .review-count {
        font-size: 13px;
    }

    .floating-card {
        transform: none;
        animation: float 6s ease-in-out infinite;
        padding: 12px 16px; /* slightly adjust padding to keep them neat */
    }
    .card-top-right {
        top: -39px;
        right: -10px;
    }
    .card-bottom-left {
        bottom: -39px;
        left: -10px;
    }
}

/* =========================================
   AUTHOR SECTION
   ========================================= */
.author-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-3xl);
    background: var(--color-card-bg);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.author-image-wrapper {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.author-image-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-primary-light);
    border-radius: var(--radius-lg);
    z-index: 0;
}

.author-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.author-content {
    flex: 1.5;
}

.author-content p {
    margin-bottom: 16px;
}

@media (max-width: 992px) {
    .author-container {
        flex-direction: column;
        padding: var(--spacing-lg);
        gap: var(--spacing-xl);
    }
    
    .author-image-wrapper {
        margin-bottom: var(--spacing-md);
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .author-image-wrapper {
        max-width: 100%;
    }
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-card-bg);
    border: 1px solid rgba(46, 125, 50, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(46, 125, 50, 0.3);
}

.faq-item summary {
    padding: var(--spacing-md);
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    color: var(--color-text-primary);
    cursor: pointer;
    list-style: none; /* Hide default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    color: var(--color-primary);
    transition: transform 0.8s ease;
    flex-shrink: 0;
}

.faq-item[open] summary .faq-icon {
    transform: rotate(180deg);
}

.faq-item[open] summary {
    border-bottom: 1px solid rgba(46, 125, 50, 0.1);
    background: rgba(46, 125, 50, 0.03);
}

.faq-answer {
    padding: var(--spacing-md);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.faq-item[open] .faq-answer {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes pulse-animation {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.4); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(46, 125, 50, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(46, 125, 50, 0); }
}

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

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background-color: var(--color-text-primary);
    color: var(--color-text-light);
    padding: var(--spacing-2xl) var(--spacing-md);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-text {
    font-size: var(--text-sm);
    margin-bottom: 8px;
    opacity: 0.9;
    color: var(--color-text-light);
}

.footer-text.text-muted {
    opacity: 0.6;
    font-size: 0.75rem;
    margin-top: var(--spacing-md);
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color 0.3s ease;
    display: inline-block;
    margin: 4px 0;
}

.footer-link:hover {
    color: var(--color-primary-light);
    text-decoration: underline;
}

/* =========================================
   PREMIUM GUARANTEE SECTION
   ========================================= */
.premium-guarantee-section {
    background-color: #f4f7ee; /* Fundo creme/esverdeado muito suave */
    position: relative;
    overflow: hidden;
}

.leaves-decoration {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 250px;
    height: 250px;
    background-image: url('https://risvegliomedicinale.fun/wp-content/uploads/2026/04/folhas-decor-placeholder.png'); /* Temporário */
    opacity: 0.8;
    pointer-events: none;
    z-index: 1;
}

.guarantee-card-premium {
    background: #ffffff; /* fundo branco quente */
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 32px;
    border: 2px solid rgba(212, 175, 55, 0.3); /* Borda fina dourada */
    box-shadow: 0 25px 60px rgba(46, 125, 50, 0.08), 0 0 0 15px rgba(255, 255, 255, 0.4); /* Glow leve */
    padding: 60px 40px 50px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.guarantee-seal {
    margin-top: -110px; /* Pulls it up out of the card to keep centered */
    margin-bottom: 20px;
}

.guarantee-seal img {
    width: 440px;
    height: auto;
    filter: drop-shadow(0 35px 25px rgba(212, 175, 55, 0.4));
}

.guarantee-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px) !important;
    font-weight: 800;
    color: #1a2e1c;
    line-height: 1.1 !important;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.guarantee-title .highlight-green {
    color: #4caf50;
}

.guarantee-desc {
    font-size: 18px !important;
    color: #4a5c4c;
    line-height: 1.6 !important;
    max-width: 700px;
    margin: 0 auto 40px;
}

.guarantee-desc strong {
    color: #1a2e1c;
    display: block;
    margin-top: 8px;
}

.guarantee-benefits {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fafbf7; /* Creme bem clarinho */
    border: 1px solid rgba(46, 125, 50, 0.1);
    border-radius: 16px;
    padding: 24px 10px;
    gap: 10px;
    max-width: 850px;
    margin: 0 auto 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
    padding: 0 10px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.1);
    color: #388e3c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    width: 24px;
    height: 24px;
}

.benefit-text {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.benefit-text strong {
    font-size: 16px;
    color: #1a2e1c;
    line-height: 1.2;
}

.benefit-text span {
    font-size: 14px;
    color: #6c7a6e;
}

.benefit-divider {
    width: 1px;
    height: 50px;
    background: rgba(46, 125, 50, 0.1);
}

.guarantee-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #388e3c, #2e7d32);
    color: white !important;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    padding: 20px 48px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(46, 125, 50, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

.guarantee-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.4);
    background: linear-gradient(135deg, #4caf50, #388e3c);
}

.guarantee-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 14px;
    color: #6c7a6e;
}

.guarantee-secure i {
    width: 16px;
    height: 16px;
    color: #388e3c;
}

@media (max-width: 992px) {
    .guarantee-benefits {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }
    .benefit-item {
        width: 100%;
        justify-content: flex-start;
    }
    .benefit-divider {
        width: 100%;
        height: 1px;
    }
    .guarantee-card-premium {
        padding: 50px 20px 40px;
    }
    .guarantee-seal {
        margin-top: -100px;
    }
    .guarantee-seal img {
        max-width: 260px;
        width: 100%;
    }
}

/* =========================================
   PREMIUM AUTHOR SECTION
   ========================================= */
.author-premium-section {
    background-color: #fafbf7;
}

.author-card-premium {
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(46, 125, 50, 0.05);
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.author-image-col {
    flex: 0 0 350px;
}

.author-photo-wrapper {
    position: relative;
    border-radius: 50%;
    padding: 12px;
    background: #ffffff;
    border: 2px solid rgba(76, 175, 80, 0.2);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.1);
}

.author-photo {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.author-content-col {
    flex: 1;
    text-align: left;
}

.author-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 42px) !important;
    font-weight: 800;
    color: #1a2e1c;
    margin-bottom: 8px;
    line-height: 1.1 !important;
    letter-spacing: -1px;
}

.author-subtitle {
    font-family: var(--font-heading);
    font-size: 22px !important;
    color: #388e3c;
    font-weight: 700;
    margin-bottom: 24px;
}

.author-bio {
    font-size: 17px !important;
    color: #4a5c4c;
    line-height: 1.6 !important;
    margin-bottom: 30px;
}

.author-bio p {
    margin-bottom: 16px;
}

.author-credibility {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 35px;
    border-top: 1px solid rgba(46, 125, 50, 0.1);
    padding-top: 24px;
}

.credibility-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.credibility-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.1);
    color: #388e3c;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.credibility-icon i {
    width: 20px;
    height: 20px;
}

.credibility-text strong {
    display: block;
    font-size: 16px;
    color: #1a2e1c;
    line-height: 1.3;
}

.credibility-text span {
    font-size: 15px;
    color: #6c7a6e;
}

.author-btn {
    display: flex;
    margin: 0 auto;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #388e3c, #2e7d32);
    color: white !important;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.25);
    transition: all 0.3s ease;
}

.author-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(46, 125, 50, 0.35);
    background: linear-gradient(135deg, #4caf50, #388e3c);
}

@media (max-width: 992px) {
    .author-card-premium {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
        text-align: center;
    }
    .author-image-col {
        flex: 0 0 auto;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    .author-photo {
        height: 250px;
    }
    .author-content-col {
        text-align: center;
    }
    .credibility-item {
        text-align: left;
    }
    .author-btn {
        width: 100%;
    }
}

/* =========================================
   BONUS INTRO PREMIUM SECTION V2
   ========================================= */
.bonus-intro-premium-v2 {
    background-color: #fffdf7;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .bonus-intro-premium-v2 {
        padding: 50px 0;
    }
}

.bonus-intro-card-v2 {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Leaf decorations */
.decor-leaf {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2381c784" stroke-width="1" stroke-linecap="round" stroke-linejoin="round"><path d="M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z"/><path d="M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.08;
    z-index: -1;
}
.decor-leaf-left {
    bottom: -50px;
    left: -50px;
    transform: rotate(15deg);
}
.decor-leaf-right {
    top: -50px;
    right: -50px;
    transform: rotate(-105deg);
}

.bonus-decor-v2 {
    color: #2e7d32;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.decor-line {
    height: 2px;
    width: 60px;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 2px;
}

.bonus-decor-v2 i {
    width: 48px;
    height: 48px;
    background: #eef8ec;
    border-radius: 50%;
    padding: 10px;
    border: 2px solid rgba(76, 175, 80, 0.1);
}

.bonus-headline-v2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 6vw, 56px) !important;
    font-weight: 900;
    color: #0f2f1d;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    line-height: 1.1 !important;
}

.bonus-subtext-v2 {
    font-size: 22px !important;
    color: #5a6b5d;
    line-height: 1.5 !important;
    margin: 0 auto 40px auto;
    max-width: 760px;
}

.bonus-value-tag-v2 {
    display: flex;
    width: max-content;
    margin: 0 auto 30px auto;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #eef8ec;
    border: 2px solid rgba(46, 125, 50, 0.25);
    color: #388e3c;
    padding: 18px 34px;
    border-radius: 999px;
    font-size: 22px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.1);
}

.bonus-value-tag-v2 strong {
    font-size: 32px;
    font-weight: 900;
    color: #1b5e20;
    line-height: 1;
}

.bonus-value-tag-v2 i {
    width: 28px;
    height: 28px;
}

.bonus-highlight-v2 {
    color: #2f7d32;
    font-size: 28px;
    font-weight: 900;
    display: block;
    width: max-content;
    margin: 0 auto 12px auto;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.bonus-highlight-v2::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: -5px;
    right: -5px;
    height: 12px;
    background-color: rgba(165, 214, 167, 0.4);
    z-index: -1;
    transform: rotate(-1deg);
    border-radius: 2px;
}

.bonus-small-text-v2 {
    font-size: 18px !important;
    color: #6c7a6e;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bonus-small-text-v2 i {
    width: 20px;
    height: 20px;
    color: #4caf50;
}

@media (max-width: 768px) {
    .bonus-intro-card-v2 {
        padding: 0 16px;
    }
    .bonus-value-tag-v2 {
        flex-direction: row;
        padding: 12px 18px;
        gap: 6px;
        border-radius: 999px;
        font-size: 14px;
        white-space: nowrap;
    }
    .bonus-value-tag-v2 strong {
        font-size: 18px;
    }
    .bonus-value-tag-v2 i {
        width: 18px;
        height: 18px;
    }
    .bonus-highlight-v2 {
        font-size: 24px;
    }
    .decor-leaf {
        display: none;
    }
}

/* =========================================
   BONUS CARDS PREMIUM V3
   ========================================= */
.bonus-card-v3 {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 0;
    border: 1px solid rgba(0,0,0,0.05);
}

.bonus-card-v3:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

.bonus-card-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.bonus-card-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Badges bar overlay — full-width strip at top of image */
.bonus-badges-row {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}

.bonus-badge-number {
    background: rgba(0, 0, 0, 0.72);
    color: #ffffff;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-bottom-right-radius: 10px;
    backdrop-filter: blur(4px);
    white-space: nowrap;
}

.bonus-badge-free {
    background: #2e7d32;
    color: #ffffff;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-bottom-left-radius: 10px;
    white-space: nowrap;
}

.bonus-card-content {
    padding: 22px 20px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bonus-card-v3 .heading-h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    color: var(--text-primary, #2d3a2e);
}

.bonus-card-v3 .text-small {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-secondary, #4a5a4b);
    margin-bottom: 16px;
    flex-grow: 1;
}

.bonus-price-block {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.07);
    margin-top: auto;
}

.bonus-price-label {
    font-size: 13px;
    color: #888;
    font-weight: 400;
    margin-right: 2px;
}

.bonus-price-old {
    font-size: 14px;
    color: #b0b0b0;
    text-decoration: line-through;
    font-weight: 500;
}

.bonus-price-free {
    font-size: 17px;
    color: #2e7d32;
    font-weight: 800;
    margin-left: 2px;
}

/* Override: bonus cards V3 must not inherit card-premium padding */
.card-premium.bonus-card-v3 {
    padding: 0 !important;
    border-radius: 16px !important;
    background: #ffffff !important;
}

/* =========================================
   OFFER BOX V2 — PACCO COMPLETO PREMIUM
   ========================================= */
.offer-box-v2 {
    background: #ffffff;
    border: 2px solid #c8e6c9;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(46, 125, 50, 0.10);
    padding: 40px 36px;
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Título */
.offer-title-v2 {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    color: var(--color-primary-dark, #1b5e20);
    letter-spacing: 2px;
    margin: 0 0 10px 0;
    line-height: 1.1;
}

/* Subtítulo */
.offer-subtitle-v2 {
    font-size: 15px;
    color: #555;
    margin: 0 0 22px 0;
    line-height: 1.5;
}

/* Imagem */
.offer-image-v2 {
    width: 100%;
    margin-bottom: 24px;
}
.offer-image-v2 img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Lista de itens */
.offer-items-v2 {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    width: 100%;
    border-top: 1px solid #e8f5e9;
}

.offer-item-v2 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 0;
    border-bottom: 1px solid #e8f5e9;
    text-align: left;
    font-size: 14px;
    color: #333;
}

.offer-item-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: block;
    object-fit: contain;
}

.offer-item-name strong {
    color: #4e7438;
    font-weight: 700;
}

.offer-item-name {
    flex: 1;
    min-width: 0;
    white-space: normal;
    line-height: 1.4;
}

.offer-item-dots {
    flex: 1;
    border-bottom: 2px dotted #bdbdbd;
    min-width: 20px;
    height: 1px;
    margin: 0 6px;
    align-self: center;
    flex-shrink: 2;
}

.offer-item-price {
    flex-shrink: 0;
    font-weight: 700;
    color: #4e7438;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: line-through;
}

/* Bloco de preço */
.offer-price-block-v2 {
    width: 100%;
    background: #f9fbe7;
    border-radius: 16px;
    border: 1px solid #c8e6c9;
    padding: 20px 24px;
    margin-bottom: 20px;
    text-align: center;
}

.offer-price-cta-label-v2 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #2e7d32;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.offer-price-real-v2 {
    font-size: 14px;
    color: #888;
    margin-bottom: 2px;
}

.offer-price-real-v2 span {
    text-decoration: line-through;
    color: #e53935;
    font-weight: 600;
}

.offer-price-solo-v2 {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}

.offer-price-final-v2 {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: clamp(40px, 8vw, 54px);
    font-weight: 800;
    color: #1b5e20;
    line-height: 1;
    margin-bottom: 10px;
}

.offer-price-installment-v2 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 11px;
    font-weight: 600;
    color: #555;
    letter-spacing: 0.5px;
}

/* CTA */
.offer-cta-v2 {
    width: 100%;
    margin-bottom: 12px;
    font-size: 15px;
    padding: 18px 20px;
    border-radius: 14px;
}

/* Segurança */
.offer-security-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: #666;
    margin: 0;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .offer-box-v2 {
        padding: 28px 20px;
        border-radius: 18px;
    }
    .offer-item-dots {
        display: none;
    }
    .offer-item-v2 {
        flex-wrap: wrap;
        gap: 4px;
    }
    .offer-item-price {
        margin-left: auto;
    }
}

/* =========================================
   LIBRO CAROUSEL — "Cosa troverai nel libro"
   Transform-based infinite loop + arrows
   ========================================= */
.libro-carousel-section {
    --lc-gap: clamp(14px, 2vw, 22px);
    --lc-sage: #3d5c4a;
    --lc-cream: #faf8f3;
    --lc-track-duration: 0.48s;
    --lc-track-ease: cubic-bezier(0.33, 1, 0.68, 1);
    background-color: #ecf3ea !important;
    background-image: none !important;
    box-shadow: none !important;
    filter: none !important;
    isolation: isolate;
}

/* Evita faixa escura: sombras dos cards não devem ser cortadas no clip do viewport */
.libro-carousel-section::before,
.libro-carousel-section::after {
    box-shadow: none !important;
    filter: none !important;
}

/* Shell only: flat chrome behind carousel (cards keep depth) */
.libro-carousel-section > .container-premium,
.libro-carousel-section .container-premium,
.libro-carousel-section .libro-carousel-wrap,
.libro-carousel-section .libro-carousel-viewport,
.libro-carousel-section .libro-carousel-track {
    box-shadow: none !important;
    filter: none !important;
    backdrop-filter: none !important;
}

.libro-carousel-section > .container-premium,
.libro-carousel-section .libro-carousel-wrap,
.libro-carousel-section .libro-carousel-viewport,
.libro-carousel-section .libro-carousel-track {
    background: transparent !important;
}

.libro-carousel-wrap {
    position: relative;
}

.libro-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;

    width: 52px;
    height: 52px;

    border-radius: 999px;

    background: rgba(255,255,255,0.92);

    backdrop-filter: blur(10px);

    box-shadow: 0 8px 24px rgba(0,0,0,0.12);

    border: 1px solid rgba(0,0,0,0.06);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.libro-carousel-arrow:hover {
    transform: translateY(-50%) scale(1.06);

    box-shadow: 0 12px 28px rgba(0,0,0,0.16);

    background: #fff;
}

.libro-carousel-section .libro-carousel-heading {
    margin-bottom: clamp(1rem, 3vw, 1.5rem) !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
    color: var(--lc-sage);
    text-shadow: none !important;
    filter: none !important;
    box-shadow: none !important;
}

.libro-carousel-section .libro-carousel-wrap {
    margin-top: 0;
    position: relative;
    display: block;
    max-width: 100%;
    padding-inline: 56px;
}

.libro-carousel-section .libro-carousel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    color: var(--lc-sage);
    background: rgba(255, 254, 249, 0.96);
    border: 1px solid rgba(61, 92, 74, 0.22);
    box-shadow: none !important;
    filter: none !important;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.libro-carousel-section .libro-carousel-arrow--prev { left: 8px; }
.libro-carousel-section .libro-carousel-arrow--next { right: 8px; }

.libro-carousel-section .libro-carousel-arrow:hover {
    color: #2a4336;
    background: #fffef9;
    border-color: rgba(61, 92, 74, 0.35);
    transform: translateY(-50%) scale(1.04);
}

.libro-carousel-section .libro-carousel-arrow:active {
    transform: translateY(-50%) scale(0.97);
}

.libro-carousel-section .libro-carousel-arrow:focus-visible {
    outline: 2px solid rgba(61, 92, 74, 0.45);
    outline-offset: 2px;
    box-shadow: none !important;
}

.libro-carousel-section .libro-carousel-arrow--prev:focus-visible,
.libro-carousel-section .libro-carousel-arrow--next:focus-visible {
    transform: translateY(-50%);
}

.libro-carousel-section .libro-carousel-viewport {
    width: 100%;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    /* pan-y: scroll vertical da página; arrasto horizontal fica a cargo do JS após confirmação */
    touch-action: pan-y;
    scrollbar-width: none;
    -ms-overflow-style: none;
    container-type: inline-size;
    container-name: libro-carousel-port;
    outline: none;
    padding-bottom: clamp(16px, 3vw, 28px) !important;
}

.libro-carousel-section .libro-carousel-viewport::-webkit-scrollbar {
    display: none;
}

.libro-carousel-section .libro-carousel-viewport:focus-visible {
    box-shadow: none !important;
    outline: 2px solid rgba(61, 92, 74, 0.38);
    outline-offset: 3px;
    border-radius: 14px;
}

.libro-carousel-section .libro-carousel-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: var(--lc-gap);
    width: max-content;
    min-height: 0;
    padding: 8px 4px 0;
    transition: transform var(--lc-track-duration) var(--lc-track-ease);
}

.libro-carousel-section .libro-carousel-track.libro-carousel-track--no-transition {
    transition: none !important;
}

.libro-carousel-section .libro-carousel-card.card-premium {
    touch-action: pan-y;
    height: auto !important;
    min-height: 0;
    flex-shrink: 0;
    background: linear-gradient(165deg, #fffef9 0%, var(--lc-cream) 100%) !important;
    border: 1px solid rgba(61, 92, 74, 0.12) !important;
    border-radius: 20px !important;
    box-shadow: none !important;
    filter: none !important;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: clamp(16px, 2.2vw, 22px) !important;
}

.libro-carousel-section .libro-carousel-card.card-premium:hover {
    transform: translateY(-2px);
    box-shadow: none !important;
    filter: none !important;
}

@container libro-carousel-port (max-width: 639px) {
    .libro-carousel-section .libro-carousel-card {
        width: 82cqi;
    }
}

@container libro-carousel-port (min-width: 640px) and (max-width: 991px) {
    .libro-carousel-section .libro-carousel-card {
        width: calc((100cqi - var(--lc-gap)) / 2);
    }
}

@container libro-carousel-port (min-width: 992px) and (max-width: 1199px) {
    .libro-carousel-section .libro-carousel-card {
        width: calc((100cqi - 2 * var(--lc-gap)) / 3);
    }
}

@container libro-carousel-port (min-width: 1200px) {
    .libro-carousel-section .libro-carousel-card {
        width: calc((100cqi - 3 * var(--lc-gap)) / 4);
    }
}

.libro-carousel-section .libro-carousel-card .card-image,
.libro-carousel-section .libro-carousel-card img.card-image {
    height: clamp(140px, 18vw, 200px) !important;
    margin-bottom: clamp(10px, 1.5vw, 14px) !important;
    border-radius: 14px !important;
    box-shadow: none !important;
    filter: none !important;
}

.libro-carousel-section .libro-carousel-card .heading-h4 {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-weight: 600 !important;
    font-size: clamp(0.95rem, 1.35vw, 1.05rem) !important;
    line-height: 1.35 !important;
    letter-spacing: 0.01em;
    color: #2a3f33 !important;
    margin-bottom: 0.55em !important;
}

.libro-carousel-section .libro-carousel-card .text-small {
    font-size: clamp(0.8125rem, 1.05vw, 0.9375rem) !important;
    line-height: 1.58 !important;
    color: rgba(42, 63, 51, 0.88);
}

.libro-carousel-section .libro-carousel-card .text-small p {
    margin-bottom: 0.65em;
}

.libro-carousel-section .libro-carousel-card .text-small p:last-child {
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .libro-carousel-section .libro-carousel-arrow {
        width: 36px;
        height: 36px;
    }
    .libro-carousel-section .libro-carousel-arrow--prev { left: -5px; }
    .libro-carousel-section .libro-carousel-arrow svg {
        width: 17px;
        height: 17px;
    }

    .libro-carousel-section .libro-carousel-wrap {
        padding-inline: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .libro-carousel-section .libro-carousel-track {
        transition: none !important;
    }

    .libro-carousel-section .libro-carousel-card.card-premium {
        transition: none;
    }

    .libro-carousel-section .libro-carousel-arrow {
        transition: none;
    }
}