/* =========================================
   CONFIGURAÇÕES GERAIS E VARIÁVEIS - PRODENTIM PREMIUM
   ========================================= */
:root {
    --primary-color: #2d5a5a;    /* Azul-petróleo premium ProDentim */
    --primary-hover: #1f3d3d;
    --accent-color: #e8a87c;     /* Ouro/cobre quente */
    --text-dark: #1a1a1a;
    --text-muted: #555;
    --text-light: #777;
    --bg-light: #f8f7f5;         /* Branco premium */
    --white: #ffffff;
    --danger: #d97706;           /* Vermelho-alaranja para destaque */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-display: swap;
}

body {
    background-color: var(--bg-light);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    font-display: swap;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   HEADER (LOGOTIPO) - PREMIUM DESIGN
   ========================================= */
.site-header {
    background: linear-gradient(135deg, #ffffff 0%, var(--white) 100%);
    padding: 25px 0;
    border-bottom: 3px solid var(--primary-color);
    text-align: center;
    box-shadow: 0 4px 20px rgba(45, 90, 90, 0.08);
}

.brand {
    text-decoration: none;
    display: inline-block;
}

.brand-mark {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -1px;
    display: block;
    line-height: 1;
    text-transform: uppercase;
}

.brand-sub {
    font-size: 13px;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

/* =========================================
   CONTEÚDO PRINCIPAL (HERO) - PREMIUM
   ========================================= */
.hero {
    padding: 40px 20px 70px;
    background: linear-gradient(135deg, #ffffff 0%, #faf9f7 50%, #f0ebe5 100%);
    text-align: center;
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.8) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.15;
    margin: 20px 0 12px;
    text-transform: capitalize;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.hero-lead {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.benefit-box {
    margin: 20px auto 30px;
    max-width: 700px;
    background: linear-gradient(135deg, rgba(232, 168, 124, 0.1) 0%, rgba(45, 90, 90, 0.08) 100%);
    padding: 25px 30px;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
    text-align: left;
    will-change: transform;
}

.benefit-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-main {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.4;
    margin-bottom: 12px;
}

.benefit-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.benefit-sub strong {
    color: var(--primary-color);
}

.objection-breaker {
    margin: 30px auto 40px;
    max-width: 700px;
    background: linear-gradient(135deg, #ffffff 0%, #f9f8f6 100%);
    padding: 28px 35px;
    border-radius: 12px;
    border: 3px solid var(--accent-color);
    text-align: left;
    box-shadow: 0 6px 20px rgba(45, 90, 90, 0.12);
}

.objection-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.objection-list {
    list-style: none;
    padding: 0;
}

.objection-list li {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 15px 0;
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
}

.objection-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.4rem;
}

/* CTA SECUNDÁRIO - FOOTER */
.footer-cta {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-top: 30px;
    padding: 20px;
    background: rgba(30, 132, 73, 0.05);
    border-radius: 10px;
    line-height: 1.6;
}

.cta-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #155934;
    background-color: rgba(30, 132, 73, 0.1);
    padding: 2px 4px;
    border-radius: 3px;
}

.hero-product {
    width: 560px;
    max-width: 100%;
    height: auto;
    margin: 30px auto 25px;
    display: block;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.25));
    transition: transform 0.3s ease;
    border-radius: 16px;
    contain: layout style paint;
}

.hero-product:hover {
    transform: scale(1.02) translateY(-4px);
    filter: drop-shadow(0 35px 60px rgba(0,0,0,0.28));
}

.hero-product:not([src]) {
    aspect-ratio: 440 / 550;
    background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
}

/* MENSAGEM DE ERRO DE IMAGEM */
.hero-product-error {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    padding: 30px;
    border-radius: 8px;
    margin: 35px auto;
    max-width: 440px;
    font-weight: 500;
}

.hero-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-style: italic;
}

/* =========================================
   BOTÃO E CERTIFICAÇÕES
   ========================================= */
.button-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: var(--white);
    padding: 26px 60px;
    font-size: 1.7rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(45, 90, 90, 0.4);
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
    margin: 15px 0 35px 0;
    border: 3px solid var(--accent-color);
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: left 0.3s ease;
}

.button-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, #0f2626 100%);
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(45, 90, 90, 0.55);
    border-color: #ffb366;
}

.button-primary:hover::before {
    left: 100%;
}

.certifications {
    margin: 50px auto 30px;
    padding: 35px 40px;
    background: rgba(30, 132, 73, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(30, 132, 73, 0.12);
    max-width: 100%;
    width: 100%;
}

.cert-img {
    max-width: 520px;
    width: 100%;
    height: auto;
    opacity: 1;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.12));
    margin: 0 auto;
    display: block;
}

.secure-badge {
    font-weight: 900;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    font-size: 1.1rem;
    margin-top: 25px;
    padding: 14px 30px;
    border-radius: 8px;
    display: inline-block;
    border: 2px solid var(--accent-color);
    box-shadow: 0 6px 20px rgba(45, 90, 90, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* =========================================
   FOOTER (COMPLIANCE E ADS) - PREMIUM
   ========================================= */
.site-footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    padding: 50px 20px;
    border-top: 3px solid var(--accent-color);
    text-align: center;
}

.footer-shell {
    max-width: 900px;
    margin: 0 auto;
}

.footer-nav {
    margin-bottom: 30px;
}

.footer-nav a {
    color: var(--accent-color);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: var(--white);
    text-decoration: underline;
}

.medical-disclaimer {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.copyright {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.fb-disclaimer {
    font-size: 11px;
    color: #ccc;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #f9f9f9;
}

/* =========================================
   ANIMAÇÕES E RESPONSIVIDADE
   ========================================= */
@keyframes pulse {
    0% { box-shadow: 0 15px 40px rgba(45, 90, 90, 0.3), 0 0 0 0 rgba(232, 168, 124, 0.4); }
    50% { box-shadow: 0 15px 40px rgba(45, 90, 90, 0.35), 0 0 0 15px rgba(232, 168, 124, 0); }
    100% { box-shadow: 0 15px 40px rgba(45, 90, 90, 0.3), 0 0 0 0 rgba(232, 168, 124, 0); }
}

@media (max-width: 768px) {
    .hero { padding: 25px 15px 50px; }
    .hero-title { font-size: 1.8rem; margin-bottom: 8px; letter-spacing: 0; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 4px; }
    .hero-lead { font-size: 1rem; margin-bottom: 15px; }
    .hero-product { width: 280px; margin: 15px auto 20px; }
    .benefit-box { padding: 12px 15px; margin: 15px auto 20px; border-left: none; border-top: 4px solid var(--primary-color); text-align: center; }
    .benefit-title { font-size: 0.9rem; margin-bottom: 6px; }
    .benefit-main { font-size: 1rem; }
    .benefit-sub { font-size: 0.95rem; }
    .button-primary { font-size: 1.2rem; padding: 16px 28px; width: 95%; margin: 10px 0 25px 0; }
    .objection-breaker { padding: 18px 20px; margin: 20px auto 30px; }
    .objection-title { font-size: 1rem; margin-bottom: 12px; }
    .objection-list li { font-size: 0.9rem; padding-left: 22px; margin: 10px 0; }
    .cert-img { max-width: 320px; }
    .certifications { padding: 20px; margin: 40px auto 25px; }
    .secure-badge { font-size: 0.85rem; padding: 10px 18px; }
    .footer-cta { font-size: 0.9rem; padding: 12px; margin-top: 15px; }
    .footer-nav a { display: block; margin: 10px 0; font-size: 13px; }
    .hero-note { font-size: 0.9rem; margin-bottom: 20px; }

    .header-nav { gap: 15px; }
    .header-nav a { font-size: 12px; padding: 6px 12px; }
    .official-box { padding: 20px; margin: 25px auto; }
    .official-content h2 { font-size: 1.5rem; margin-bottom: 15px; }
    .official-benefits h3 { font-size: 1.4rem; margin-bottom: 20px; }
    .benefit-card { gap: 15px; flex-direction: column; align-items: center; text-align: center; }
    .details-section { padding: 20px; margin-bottom: 25px; }
    .details-section h2 { font-size: 1.5rem; margin-bottom: 15px; }
    .how-works, .benefits-grid, .usage-steps { grid-template-columns: 1fr; gap: 15px; }
    .cta-section { padding: 25px; margin: 30px auto; }
    .cta-section h3 { font-size: 1.4rem; margin-bottom: 12px; }
    .button-jumbo { font-size: 1.4rem !important; padding: 20px 40px !important; }
}

/* =========================================
   NAVEGAÇÃO NO HEADER
   ========================================= */
.header-nav {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 12px;
}

.header-nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.header-nav a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    background: rgba(232, 168, 124, 0.08);
}

.header-nav a.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* =========================================
   OFFICIAL PAGE STYLES
   ========================================= */
.official-box {
    margin: 40px auto;
    padding: 40px;
    background: linear-gradient(135deg, rgba(232, 168, 124, 0.08) 0%, rgba(45, 90, 90, 0.08) 100%);
    border: 3px solid var(--accent-color);
    border-radius: 16px;
    max-width: 800px;
    box-shadow: 0 8px 30px rgba(45, 90, 90, 0.12);
}

.official-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: left;
}

.official-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.info-highlight {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    padding: 25px;
    border-left: 5px solid var(--primary-color);
    border-radius: 10px;
    margin: 25px 0;
    text-align: left;
}

.info-highlight p {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 15px;
}

.info-highlight ul {
    list-style: none;
    padding: 0;
}

.info-highlight li {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin: 10px 0;
    padding-left: 30px;
    position: relative;
}

.info-highlight li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.affiliate-notice {
    background: rgba(255, 235, 59, 0.1);
    border: 1px solid rgba(255, 235, 59, 0.3);
    padding: 18px;
    border-radius: 10px;
    margin: 20px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

.button-jumbo {
    font-size: 1.8rem !important;
    padding: 28px 60px !important;
    margin: 25px 0 !important;
}

.official-benefits {
    margin-top: 40px;
}

.official-benefits h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: left;
}

.benefit-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f8f6 100%);
    padding: 28px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(45, 90, 90, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(232, 168, 124, 0.2);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(45, 90, 90, 0.15);
    border-color: var(--accent-color);
}

.benefit-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
}

.benefit-text h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.benefit-text p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =========================================
   DETAILS PAGE STYLES
   ========================================= */
.details-section {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: left;
}

.details-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 15px;
}

.details-section p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 18px;
}

.how-works {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.work-step {
    background: linear-gradient(135deg, rgba(232, 168, 124, 0.08) 0%, rgba(45, 90, 90, 0.06) 100%);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid rgba(232, 168, 124, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.work-step:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(232, 168, 124, 0.2);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    font-weight: 800;
    font-size: 1.8rem;
    border-radius: 50%;
    margin: 0 auto 15px;
    box-shadow: 0 6px 15px rgba(45, 90, 90, 0.25);
}

.work-step h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.work-step p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.ingredient-card {
    background: linear-gradient(135deg, rgba(232, 168, 124, 0.08) 0%, rgba(45, 90, 90, 0.05) 100%);
    padding: 22px 28px;
    border-left: 5px solid var(--accent-color);
    border-radius: 8px;
    margin: 15px 0;
}

.ingredient-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.ingredient-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

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

.benefit-item {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid rgba(30, 132, 73, 0.15);
    transition: all 0.3s ease;
    text-align: left;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(30, 132, 73, 0.15);
}

.benefit-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #155934);
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    border-radius: 50%;
    margin-bottom: 15px;
}

.benefit-item p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.evidence-section {
    background: linear-gradient(135deg, rgba(30, 132, 73, 0.08) 0%, rgba(30, 132, 73, 0.04) 100%);
    border: 2px solid rgba(30, 132, 73, 0.2);
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f8f6 100%);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 4px 12px rgba(45, 90, 90, 0.08);
}

.testimonial-rating {
    font-size: 1rem;
    font-weight: 800;
    color: #ff9800;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.evidence-note {
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.1), rgba(255, 235, 59, 0.05));
    border: 2px solid rgba(255, 235, 59, 0.3);
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
}

.evidence-note p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.usage-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.usage-step {
    background: linear-gradient(135deg, rgba(30, 132, 73, 0.08) 0%, rgba(30, 132, 73, 0.04) 100%);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid rgba(30, 132, 73, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.usage-step:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.usage-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #155934);
    color: white;
    font-weight: 800;
    font-size: 1.8rem;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.usage-step p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.highlight-section {
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.1) 0%, rgba(255, 235, 59, 0.05) 100%);
    border: 2px solid rgba(255, 235, 59, 0.3);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.features-list li {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 15px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.features-list strong {
    color: var(--text-dark);
    font-weight: 800;
}

.cta-section {
    background: linear-gradient(135deg, rgba(30, 132, 73, 0.08) 0%, rgba(30, 132, 73, 0.04) 100%);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 40px auto;
    max-width: 700px;
    border: 2px solid rgba(30, 132, 73, 0.2);
}

.cta-section h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* =========================================
   FINAL CTA SECTION - CONVERSÃO MAXIMIZADA
   ========================================= */
.final-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 60px auto;
    max-width: 800px;
    box-shadow: 0 15px 50px rgba(45, 90, 90, 0.35);
    border: 3px solid var(--accent-color);
}

.final-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.final-cta-section p {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 700;
}

.final-cta-section .button-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #d97706 100%);
    border-color: var(--white);
    color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(217, 119, 6, 0.4);
    margin: 20px 0 20px 0;
    font-size: 1.6rem;
}

.final-cta-section .button-primary:hover {
    background: linear-gradient(135deg, #ffb366 0%, var(--accent-color) 100%);
    box-shadow: 0 22px 55px rgba(217, 119, 6, 0.55);
}

.cta-subtext {
    font-size: 1.05rem !important;
    color: rgba(255,255,255,0.9) !important;
    font-weight: 600;
    line-height: 1.6;
}

/* =========================================
   TESTIMONIALS SECTION (DEPOIMENTOS)
   ========================================= */
.testimonials-section {
    margin: 50px auto;
    padding: 40px 20px;
    max-width: 900px;
}

.testimonials-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.testimonial-card-full {
    display: flex;
    gap: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f9f8f6 100%);
    padding: 30px;
    border-radius: 14px;
    margin-bottom: 25px;
    box-shadow: 0 6px 18px rgba(45, 90, 90, 0.12);
    align-items: flex-start;
    border-left: 5px solid var(--accent-color);
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-color);
}

.testimonial-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 90, 90, 0.18);
}

.testimonial-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(45, 90, 90, 0.2);
}

.testimonial-content {
    flex: 1;
}

.testimonial-status {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.testimonial-title {
    font-size: 0.95rem;
    color: #888;
    font-weight: 600;
}

/* =========================================
   FAST SHIPPING SECTION - COM IMAGEM
   ========================================= */
.fast-shipping {
    background: linear-gradient(135deg, rgba(232, 168, 124, 0.15) 0%, rgba(232, 168, 124, 0.08) 100%);
    border: 4px solid var(--accent-color);
    padding: 0;
    border-radius: 20px;
    text-align: center;
    margin: 50px auto;
    max-width: 700px;
    box-shadow: 0 8px 35px rgba(232, 168, 124, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.fast-shipping img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 300px;
    object-fit: cover;
}

.fast-shipping h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 20px 0 10px;
    line-height: 1.2;
    padding: 0 20px;
}

.shipping-note {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0 20px 20px;
    padding: 0;
}

/* =========================================
   GUARANTEE SECTION - COM IMAGEM
   ========================================= */
.guarantee-section {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.08) 0%, rgba(217, 119, 6, 0.04) 100%);
    border: 4px solid var(--danger);
    padding: 0;
    border-radius: 20px;
    margin: 50px auto;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 8px 35px rgba(217, 119, 6, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.guarantee-section img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 320px;
    object-fit: cover;
}

.guarantee-badge {
    padding: 30px 40px 35px;
}

.guarantee-badge h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--danger);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.guarantee-badge h2 {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.guarantee-badge p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 500;
}

/* =========================================
   INGREDIENTS HIGHLIGHT
   ========================================= */
.ingredients-highlight {
    background: linear-gradient(135deg, rgba(232, 168, 124, 0.1) 0%, rgba(45, 90, 90, 0.08) 100%);
    border: 2px solid rgba(232, 168, 124, 0.3);
    padding: 35px 45px;
    border-radius: 14px;
    margin-bottom: 25px;
    text-align: center;
}

.ingredients-highlight h3 {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.ingredients-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.ingredient-item {
    background: linear-gradient(135deg, #ffffff 0%, #f9f8f6 100%);
    padding: 16px 22px;
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-muted);
    border-left: 4px solid var(--accent-color);
    line-height: 1.6;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(45, 90, 90, 0.08);
}

.ingredient-item strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* =========================================
   MEDIA QUERIES PARA TESTIMONIALS
   ========================================= */
@media (max-width: 768px) {
    .testimonial-card-full {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }

    .testimonial-photo {
        width: 80px;
        height: 80px;
    }

    .testimonials-section {
        padding: 30px 15px;
    }

    .testimonials-section h2 {
        font-size: 1.6rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-author {
        font-size: 1rem;
    }

    .testimonial-title {
        font-size: 0.9rem;
    }

    .fast-shipping {
        padding: 25px 20px;
        margin: 30px auto;
    }

    .fast-shipping h3 {
        font-size: 1.4rem;
    }

    .shipping-note {
        font-size: 1rem;
    }

    .guarantee-section {
        padding: 25px 20px;
        margin: 30px auto;
    }

    .guarantee-badge h2 {
        font-size: 1.8rem;
    }

    .guarantee-badge p {
        font-size: 1rem;
    }

    .ingredients-highlight {
        padding: 20px;
    }

    .ingredients-highlight h3 {
        font-size: 1.3rem;
    }

    .ingredients-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ingredient-item {
        font-size: 0.95rem;
        padding: 12px 15px;
    }
}

/* =========================================
   PRESELL HOME - CONVERSION REDESIGN
   ========================================= */
.presell-home {
    --home-ink: #172126;
    --home-muted: #5c6870;
    --home-teal: #0d5a57;
    --home-teal-dark: #073b39;
    --home-mint: #dff5ed;
    --home-cream: #fff8ed;
    --home-gold: #f1b45b;
    --home-coral: #e56d4f;
    --home-line: rgba(13, 90, 87, 0.16);
    background:
        linear-gradient(180deg, #f7fbf8 0%, #ffffff 42%, #fff8ed 100%);
    color: var(--home-ink);
}

.presell-home .site-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(13, 90, 87, 0.14);
    box-shadow: 0 10px 28px rgba(12, 43, 43, 0.08);
    padding: 14px 20px;
    text-align: left;
}

.presell-home .shell,
.presell-home .section-shell,
.presell-home .hero-shell {
    width: min(1140px, calc(100% - 40px));
    margin-inline: auto;
}

.presell-home .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.presell-home .brand-mark {
    color: var(--home-teal);
    font-size: 29px;
    letter-spacing: 0;
}

.presell-home .brand-sub {
    color: var(--home-coral);
    letter-spacing: 1px;
}

.presell-home .header-nav {
    margin-top: 0;
    gap: 8px;
    align-items: center;
}

.presell-home .header-nav a {
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--home-teal-dark);
    font-size: 12px;
    letter-spacing: 0;
    padding: 9px 13px;
}

.presell-home .header-nav a:hover,
.presell-home .header-nav a.active {
    background: var(--home-mint);
    border-color: rgba(13, 90, 87, 0.18);
    color: var(--home-teal-dark);
}

.presell-home .conversion-hero {
    position: relative;
    overflow: hidden;
    padding: 46px 0 28px;
    background:
        radial-gradient(circle at 84% 18%, rgba(241, 180, 91, 0.2), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f2fbf7 54%, #fff3dc 100%);
}

.presell-home .conversion-hero::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 160px;
    background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.9));
    pointer-events: none;
}

.presell-home .hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.88fr);
    gap: 46px;
    align-items: center;
}

.presell-home .hero-copy {
    text-align: left;
    min-width: 0;
}

.presell-home .hero-copy h1 {
    font-size: clamp(2.4rem, 5vw, 4.7rem);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: 0;
    color: var(--home-ink);
    margin: 0 0 20px;
    text-transform: none;
    overflow-wrap: break-word;
    text-wrap: balance;
}

.presell-home .hero-title-line {
    display: block;
}

.presell-home .hero-subtitle {
    color: var(--home-muted);
    font-size: clamp(1.08rem, 1.7vw, 1.35rem);
    line-height: 1.58;
    margin: 0 0 24px;
    max-width: 620px;
    font-weight: 600;
    letter-spacing: 0;
}

.presell-home .hero-action-panel {
    display: grid;
    gap: 12px;
    align-items: center;
    justify-items: start;
    width: min(100%, 610px);
    background: #ffffff;
    border: 1px solid rgba(13, 90, 87, 0.15);
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 22px 55px rgba(13, 90, 87, 0.16);
}

.presell-home .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.presell-home .button-primary {
    background: linear-gradient(135deg, var(--home-coral) 0%, #b94731 100%);
    border: 2px solid #ffffff;
    box-shadow: 0 14px 32px rgba(181, 71, 49, 0.28), 0 0 0 4px rgba(229, 109, 79, 0.16);
    color: #ffffff;
    margin: 0;
    padding: 18px 30px;
    font-size: clamp(1rem, 1.8vw, 1.28rem);
}

.presell-home .button-primary::before {
    display: none;
}

.presell-home .button-primary:hover {
    background: linear-gradient(135deg, #f17d5f 0%, #a83f2c 100%);
    border-color: #ffffff;
    box-shadow: 0 18px 42px rgba(181, 71, 49, 0.36), 0 0 0 5px rgba(229, 109, 79, 0.18);
    transform: translateY(-2px);
}

.presell-home .hero-main-cta {
    width: 100%;
}

.presell-home .hero-action-panel p {
    color: var(--home-muted);
    font-size: 0.98rem;
    line-height: 1.45;
    margin: 0;
    font-weight: 700;
}

.presell-home .hero-proof-list {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    max-width: 630px;
}

.presell-home .hero-proof-list li {
    position: relative;
    color: var(--home-ink);
    font-size: 1rem;
    line-height: 1.5;
    padding-left: 30px;
    font-weight: 650;
}

.presell-home .hero-proof-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    place-items: center;
    width: 21px;
    height: 21px;
    border-radius: 999px;
    background: var(--home-teal);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

.presell-home .hero-visual {
    position: relative;
    min-width: 0;
}

.presell-home .product-stage {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.66)),
        radial-gradient(circle at 50% 46%, rgba(13, 90, 87, 0.14), transparent 58%);
    border: 1px solid rgba(13, 90, 87, 0.14);
    border-radius: 8px;
    padding: 20px 20px 18px;
    box-shadow: 0 26px 70px rgba(11, 54, 52, 0.15);
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

.presell-home .hero-product {
    width: min(100%, 480px);
    max-width: 100%;
    margin: 0 auto 10px;
    border-radius: 8px;
    filter: drop-shadow(0 26px 34px rgba(23, 33, 38, 0.22));
    transition: transform 0.25s ease, filter 0.25s ease;
}

.presell-home .hero-product:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 28px 38px rgba(23, 33, 38, 0.25));
}

.presell-home .hero-certifications {
    width: min(100%, 430px);
    max-width: 100%;
    margin: 6px auto 0;
    border-radius: 8px;
    filter: drop-shadow(0 10px 18px rgba(13, 90, 87, 0.12));
}

.presell-home .quick-trust {
    position: relative;
    z-index: 2;
    width: min(1040px, calc(100% - 40px));
    margin: 26px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.presell-home .trust-item {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 88px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--home-line);
    border-radius: 8px;
    padding: 12px 14px;
    text-align: left;
    box-shadow: 0 14px 30px rgba(13, 90, 87, 0.09);
}

.presell-home .trust-item div {
    min-width: 0;
}

.presell-home .trust-icon {
    width: 62px;
    height: 62px;
    object-fit: contain;
    flex: 0 0 62px;
}

.presell-home .trust-item strong {
    display: block;
    color: var(--home-teal-dark);
    font-size: 1rem;
    line-height: 1.2;
}

.presell-home .trust-item span {
    display: block;
    color: var(--home-muted);
    font-size: 0.9rem;
    line-height: 1.35;
    margin-top: 3px;
}

.presell-home .trust-symbol {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 8px;
    background: var(--home-teal);
    color: #ffffff !important;
    font-size: 0.92rem !important;
    font-weight: 900;
    flex: 0 0 58px;
    margin-top: 0 !important;
}

.presell-home .conversion-strip {
    background: var(--home-teal-dark);
    color: #ffffff;
}

.presell-home .strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 20px 0;
}

.presell-home .strip-inner p {
    margin: 0;
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.4;
    font-weight: 800;
}

.presell-home .button-secondary {
    background: #ffffff;
    color: var(--home-teal-dark);
    border: 2px solid rgba(255,255,255,0.92);
    padding: 14px 22px;
    font-size: 0.94rem;
    white-space: nowrap;
}

.presell-home .button-secondary:hover {
    background: var(--home-gold);
    color: var(--home-ink);
    box-shadow: 0 14px 28px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.presell-home .formula-section,
.presell-home .buyer-section,
.presell-home .guarantee-detail {
    padding: 72px 0;
}

.presell-home .section-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.presell-home .section-heading h2,
.presell-home .buyer-copy h2,
.presell-home .guarantee-copy h2,
.presell-home .final-cta-section h2 {
    color: var(--home-ink);
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 14px;
    text-transform: none;
}

.presell-home .section-heading p,
.presell-home .buyer-copy p,
.presell-home .guarantee-copy p {
    color: var(--home-muted);
    font-size: 1.08rem;
    line-height: 1.7;
    margin: 0;
}

.presell-home .formula-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
    gap: 30px;
    align-items: center;
}

.presell-home .formula-layout > *,
.presell-home .buyer-section > * {
    min-width: 0;
}

.presell-home .ingredient-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.presell-home .ingredient-item {
    background: #ffffff;
    border: 1px solid rgba(13, 90, 87, 0.14);
    border-left: 5px solid var(--home-gold);
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(13, 90, 87, 0.08);
    color: var(--home-muted);
    font-size: 1rem;
    line-height: 1.58;
    padding: 20px;
    text-align: left;
}

.presell-home .ingredient-item strong {
    display: block;
    color: var(--home-teal-dark);
    font-size: 1.12rem;
    margin-bottom: 7px;
}

.presell-home .ingredient-item span {
    display: block;
}

.presell-home .formula-image {
    width: min(100%, 460px);
    margin: 0 auto;
    border-radius: 8px;
    filter: drop-shadow(0 20px 35px rgba(13, 90, 87, 0.16));
}

.presell-home .buyer-section {
    display: grid;
    grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.22fr);
    gap: 34px;
    align-items: start;
    border-top: 1px solid rgba(13, 90, 87, 0.1);
    border-bottom: 1px solid rgba(13, 90, 87, 0.1);
}

.presell-home .buyer-copy {
    text-align: left;
    position: sticky;
    top: 20px;
}

.presell-home .buyer-grid {
    display: grid;
    gap: 16px;
}

.presell-home .buyer-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 16px;
    align-items: start;
    background: #ffffff;
    border: 1px solid rgba(13, 90, 87, 0.13);
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 14px 30px rgba(13, 90, 87, 0.07);
    text-align: left;
}

.presell-home .buyer-card span {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: var(--home-mint);
    color: var(--home-teal-dark);
    font-size: 1.2rem;
    font-weight: 900;
}

.presell-home .buyer-card h3 {
    color: var(--home-ink);
    font-size: 1.16rem;
    line-height: 1.25;
    margin: 0 0 7px;
}

.presell-home .buyer-card p {
    color: var(--home-muted);
    font-size: 1rem;
    line-height: 1.58;
    margin: 0;
}

.presell-home .testimonials-section {
    width: min(960px, calc(100% - 40px));
    margin: 0 auto;
    padding: 72px 0;
    max-width: none;
}

.presell-home .testimonials-section h2 {
    border: 0;
    padding-bottom: 0;
}

.presell-home .testimonial-card-full {
    background: #ffffff;
    border: 1px solid rgba(13, 90, 87, 0.13);
    border-left: 5px solid var(--home-coral);
    border-top: 0;
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(13, 90, 87, 0.08);
    gap: 22px;
    margin-bottom: 18px;
    padding: 24px;
}

.presell-home .testimonial-card-full:hover {
    transform: translateY(-2px);
}

.presell-home .testimonial-photo {
    width: 88px;
    height: 88px;
    border: 3px solid var(--home-gold);
}

.presell-home .testimonial-status {
    color: var(--home-teal);
    font-size: 0.82rem;
    margin-bottom: 8px;
}

.presell-home .testimonial-text {
    color: var(--home-ink);
    font-size: 1.05rem;
    line-height: 1.72;
    margin-bottom: 12px;
}

.presell-home .testimonial-author {
    color: var(--home-teal-dark);
    margin-bottom: 2px;
}

.presell-home .testimonial-title {
    color: var(--home-muted);
}

.presell-home .guarantee-detail {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, #fff8ed 0%, #ffffff 100%);
    border: 1px solid rgba(241, 180, 91, 0.34);
    border-radius: 8px;
    box-shadow: 0 20px 46px rgba(129, 84, 22, 0.08);
    margin-bottom: 72px;
    padding: 28px;
}

.presell-home .guarantee-icon {
    width: 108px;
    height: 108px;
    object-fit: contain;
    margin: 0;
}

.presell-home .guarantee-copy {
    text-align: left;
}

.presell-home .guarantee-copy h2 {
    font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.presell-home .guarantee-copy .button-secondary {
    display: inline-flex;
    margin-top: 18px;
    background: var(--home-teal);
    border-color: var(--home-teal);
    color: #ffffff;
}

.presell-home .guarantee-copy .button-secondary:hover {
    background: var(--home-teal-dark);
    color: #ffffff;
}

.presell-home .final-cta-section {
    width: min(960px, calc(100% - 40px));
    margin: 0 auto 48px;
    padding: 46px 34px;
    border-radius: 8px;
    border: 1px solid rgba(13, 90, 87, 0.2);
    background:
        radial-gradient(circle at 18% 0%, rgba(241, 180, 91, 0.28), transparent 30%),
        linear-gradient(135deg, var(--home-teal-dark) 0%, var(--home-teal) 100%);
    box-shadow: 0 22px 60px rgba(13, 90, 87, 0.24);
    color: #ffffff;
}

.presell-home .final-cta-section h2 {
    color: #ffffff;
}

.presell-home .final-cta-section p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.13rem;
    line-height: 1.58;
    margin: 0 auto 22px;
    max-width: 720px;
}

.presell-home .final-cta-section .button-primary {
    margin: 0 auto 20px;
    width: min(100%, 560px);
}

.presell-home .final-cta-section .cta-subtext {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 0.98rem !important;
    margin-bottom: 0;
}

.presell-home .references-strip {
    background: #ffffff;
    border-top: 1px solid rgba(13, 90, 87, 0.1);
    padding: 26px 0 34px;
}

.presell-home .refs-logos {
    width: min(100%, 760px);
    margin: 0 auto;
    opacity: 0.88;
    filter: grayscale(0.08);
}

.presell-home .site-footer {
    background: var(--home-ink);
    border-top: 4px solid var(--home-gold);
}

.presell-home .footer-nav a {
    color: #ffd68c;
}

.presell-home .footer-nav a:hover {
    color: #ffffff;
}

.presell-home .footer-text,
.presell-home .medical-disclaimer {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 920px) {
    .presell-home .header-inner {
        flex-direction: column;
        text-align: center;
    }

    .presell-home .hero-shell,
    .presell-home .formula-layout,
    .presell-home .buyer-section {
        grid-template-columns: 1fr;
    }

    .presell-home .hero-copy,
    .presell-home .buyer-copy {
        text-align: center;
    }

    .presell-home .hero-subtitle,
    .presell-home .hero-proof-list {
        margin-left: auto;
        margin-right: auto;
    }

    .presell-home .hero-action-panel {
        justify-items: center;
        margin: 0 auto;
    }

    .presell-home .quick-trust {
        grid-template-columns: 1fr;
    }

    .presell-home .buyer-copy {
        position: static;
    }
}

@media (max-width: 768px) {
    .presell-home .site-header {
        padding: 12px 14px;
    }

    .presell-home .shell,
    .presell-home .section-shell,
    .presell-home .hero-shell,
    .presell-home .testimonials-section,
    .presell-home .final-cta-section {
        width: min(calc(100% - 48px), 1140px);
    }

    .presell-home .header-nav {
        flex-wrap: wrap;
        gap: 6px;
    }

    .presell-home .header-nav a {
        font-size: 11px;
        padding: 8px 10px;
    }

    .presell-home .conversion-hero {
        padding: 34px 0 22px;
    }

    .presell-home .hero-shell {
        gap: 24px;
    }

    .presell-home .hero-copy h1 {
        font-size: clamp(1.78rem, 7.8vw, 2.08rem);
        line-height: 1.08;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        text-wrap: normal;
    }

    .presell-home .hero-subtitle {
        font-size: 0.98rem;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .presell-home .hero-action-panel {
        padding: 14px;
        width: min(100%, 320px);
    }

    .presell-home .hero-action-panel p {
        text-align: center;
        font-size: 0.9rem;
    }

    .presell-home .hero-proof-list {
        max-width: 320px;
    }

    .presell-home .hero-proof-list li {
        text-align: left;
        font-size: 0.9rem;
        line-height: 1.45;
        overflow-wrap: break-word;
    }

    .presell-home .button-primary {
        min-height: 54px;
        padding: 15px 18px;
        font-size: 0.98rem;
        width: 100%;
    }

    .presell-home .product-stage {
        padding: 14px;
        width: min(100%, 320px);
        margin-left: auto;
        margin-right: auto;
    }

    .presell-home .hero-product {
        width: min(100%, 340px);
        margin-bottom: 8px;
    }

    .presell-home .hero-certifications {
        width: min(100%, 330px);
    }

    .presell-home .trust-item {
        min-height: auto;
        padding: 11px 12px;
    }

    .presell-home .quick-trust {
        width: min(calc(100% - 48px), 340px);
    }

    .presell-home .trust-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .presell-home .trust-symbol {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 0.8rem !important;
    }

    .presell-home .strip-inner {
        flex-direction: column;
        text-align: center;
        padding: 22px 0;
    }

    .presell-home .button-secondary {
        width: 100%;
        white-space: normal;
    }

    .presell-home .formula-section,
    .presell-home .buyer-section,
    .presell-home .testimonials-section {
        padding: 48px 0;
    }

    .presell-home .ingredient-grid {
        grid-template-columns: 1fr;
    }

    .presell-home .buyer-card {
        grid-template-columns: 42px 1fr;
        padding: 18px;
    }

    .presell-home .buyer-card span {
        width: 42px;
        height: 42px;
    }

    .presell-home .testimonial-card-full {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .presell-home .guarantee-detail {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px 18px;
        margin-bottom: 48px;
    }

    .presell-home .guarantee-icon {
        margin: 0 auto;
        width: 88px;
        height: 88px;
    }

    .presell-home .guarantee-copy {
        text-align: center;
    }

    .presell-home .final-cta-section {
        padding: 34px 18px;
    }

    .presell-home .refs-logos {
        width: min(100%, 520px);
    }
}
