/* ═══════════════════════════════════════════════════════════════════════
   TIRZEC — Design System inspirado em Panvel
   Cores: Azul profundo (#2D1B69) + Laranja (#FF6B00) + Branco
   Mobile-first responsive design
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── Reset & Variables ─────────────────────────────────────────────── */
:root {
    /* Paleta Principal - Laranja */
    --primary: #FF6B00;
    --primary-light: #FF8533;
    --primary-dark: #E55D00;
    --primary-50: #FFF7ED;
    --primary-100: #FFEDD5;
    
    /* Accent - Laranja Escuro */
    --accent: #FF6B00;
    --accent-hover: #E55D00;
    --accent-light: #FFF0E6;
    
    /* Sucesso/Verde */
    --success: #10B981;
    --success-light: #D1FAE5;
    
    /* Texto */
    --text: #1E293B;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --text-on-primary: #FFFFFF;
    
    /* Background */
    --bg: #FFFFFF;
    --bg-soft: #F8FAFC;
    --bg-warm: #FFFBF5;
    --bg-primary: #2D1B69;
    
    /* Borders */
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(45, 27, 105, 0.05);
    --shadow: 0 1px 3px rgba(45, 27, 105, 0.1), 0 1px 2px rgba(45, 27, 105, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(45, 27, 105, 0.1), 0 2px 4px -2px rgba(45, 27, 105, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(45, 27, 105, 0.1), 0 4px 6px -4px rgba(45, 27, 105, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(45, 27, 105, 0.1), 0 8px 10px -6px rgba(45, 27, 105, 0.1);
    
    /* Spacing & Sizing */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-w: 1280px;
    --header-h: 70px;
    --announce-h: 44px;
    --transition: 0.2s ease;
    --transition-slow: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
    scroll-behavior: smooth; 
    -webkit-text-size-adjust: 100%; 
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body.nav-open {
    overflow: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.25; font-weight: 700; color: var(--text); }

main {
    min-height: 60vh;
    padding-bottom: 60px;
}

.container { 
    width: 100%; 
    max-width: var(--max-w); 
    margin: 0 auto; 
    padding: 0 16px; 
}
@media (min-width: 768px) { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

/* ─── Announcement Bar - Carrossel Infinito ─────────────────────────── */
.announcement-bar {
    background: linear-gradient(90deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    min-height: var(--announce-h);
    overflow: hidden;
    position: relative;
}

.announcement-track {
    display: flex;
    width: max-content;
    animation: scroll-announcement 25s linear infinite;
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    white-space: nowrap;
}

.announcement-content span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.announcement-content span:nth-child(even) {
    color: rgba(255,255,255,0.4);
    font-size: 8px;
    margin: 0 8px;
}

@keyframes scroll-announcement {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.announcement-bar:hover .announcement-track {
    animation-play-state: paused;
}

/* ─── Header ────────────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    box-shadow: var(--shadow);
    height: var(--header-h);
}
.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 8px;
    overflow: hidden;
}
@media (min-width: 480px) { .nav-container { padding: 0 16px; gap: 12px; } }
@media (min-width: 768px) { .nav-container { padding: 0 24px; gap: 20px; } }
@media (min-width: 1024px) { .nav-container { padding: 0 32px; } }

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
}
.logo svg { flex-shrink: 0; }
.logo span { 
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis;
}
@media (min-width: 400px) { .logo { font-size: 20px; } }
@media (min-width: 640px) { .logo { font-size: 24px; flex-shrink: 0; } }
.logo-tagline {
    display: none;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid var(--border);
}
@media (min-width: 1024px) { .logo-tagline { display: block; } }

.nav-links {
    display: none;
    align-items: center;
    gap: 4px;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.nav-links a:hover {
    color: var(--primary);
    background: var(--primary-50);
}
.nav-links a.active {
    color: var(--primary);
    background: var(--primary-50);
    font-weight: 600;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-actions { 
    display: flex; 
    align-items: center; 
    gap: 4px;
    flex-shrink: 0;
}
@media (min-width: 480px) { .nav-actions { gap: 8px; } }

.nav-cta {
    display: none;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    background: var(--primary-50);
    transition: all var(--transition);
}
.nav-cta:hover {
    background: var(--primary);
    color: #fff;
}
@media (min-width: 640px) { .nav-cta { display: flex; } }

.cart-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
    border: none;
    background: transparent;
}
@media (min-width: 480px) { .cart-btn { padding: 10px 14px; gap: 8px; } }
.cart-btn:hover { 
    color: var(--primary); 
    background: var(--primary-50); 
}
.cart-btn .cart-text { display: none; }
@media (min-width: 640px) { .cart-btn .cart-text { display: inline; } }

.cart-btn .badge {
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    position: absolute;
    top: 2px;
    right: 2px;
    transform: translate(25%, -25%);
}
.cart-btn .badge:empty { display: none; }

.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--bg-soft);
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: background var(--transition);
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    position: relative;
    z-index: 10;
}
.mobile-toggle:hover { background: var(--primary-50); color: var(--primary); }
.mobile-toggle:active { background: var(--primary-100); }
@media (min-width: 1024px) { .mobile-toggle { display: none !important; } }

/* ─── Mobile Navigation ─────────────────────────────────────────────── */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 200;
    visibility: hidden;
    opacity: 0;
    transition: visibility var(--transition-slow), opacity var(--transition-slow);
}
.mobile-nav.open { visibility: visible; opacity: 1; }
.mobile-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(45, 27, 105, 0.5);
    backdrop-filter: blur(4px);
}
.mobile-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(340px, 90vw);
    height: 100%;
    background: var(--bg);
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform var(--transition-slow) cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    background: var(--primary);
}
.mobile-nav-header .logo { color: #fff; }

.mobile-nav-close {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    font-size: 24px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.mobile-nav-close:hover { background: rgba(255,255,255,0.2); }

.mobile-nav-links { padding: 16px 0; flex: 1; }
.mobile-nav-links li { border-bottom: 1px solid var(--border-light); }
.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
}
.mobile-nav-links a:hover { 
    background: var(--primary-50); 
    color: var(--primary); 
}
.mobile-nav-links a svg { 
    color: var(--text-light); 
    width: 20px; 
    height: 20px; 
    flex-shrink: 0; 
}

/* ─── Buttons ───────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    line-height: 1.4;
    text-align: center;
}
.btn svg { flex-shrink: 0; }

.btn-primary { 
    background: var(--accent); 
    color: #fff; 
    border-color: var(--accent); 
}
.btn-primary:hover { 
    background: var(--accent-hover); 
    border-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.btn-accent { 
    background: var(--accent); 
    color: #fff; 
    border-color: var(--accent); 
}
.btn-accent:hover { 
    background: var(--accent-hover); 
    border-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.btn-outline { 
    background: transparent; 
    color: var(--text); 
    border-color: var(--border); 
}
.btn-outline:hover { 
    border-color: var(--primary); 
    color: var(--primary); 
    background: var(--primary-50); 
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border-color: transparent;
}
.btn-ghost:hover {
    background: var(--primary-50);
}

.btn-lg { 
    padding: 14px 32px; 
    font-size: 15px; 
    border-radius: var(--radius);
}
.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}
.btn-block { width: 100%; }
.btn:disabled { 
    opacity: 0.5; 
    cursor: not-allowed;
    transform: none !important;
}

/* ─── Hero ──────────────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #FF6B00 0%, #E55D00 100%);
    padding: 48px 0 56px;
    overflow: hidden;
    position: relative;
    color: white;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
}
@media (min-width: 768px) {
    .hero { padding: 64px 0 72px; }
    .hero-inner { 
        padding: 0 24px; 
        flex-direction: row; 
        align-items: center; 
        gap: 48px; 
    }
}
@media (min-width: 1024px) {
    .hero { padding: 80px 0 96px; }
    .hero-inner { padding: 0 32px; gap: 64px; }
}

.hero-content { flex: 1; min-width: 0; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: var(--bg);
    border: 1px solid var(--primary-100);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.hero-badge svg { color: var(--success); }

.hero h1 {
    font-size: clamp(30px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text);
}
.hero h1 em { 
    font-style: normal; 
    color: var(--primary);
    position: relative;
}
.hero h1 em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--accent);
    opacity: 0.3;
    z-index: -1;
    border-radius: 2px;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 560px;
}
@media (min-width: 768px) { .hero-desc { font-size: 17px; } }

.hero-price { 
    font-size: 15px; 
    color: var(--text-muted); 
    margin-bottom: 28px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}
.hero-price strong { 
    font-size: 32px; 
    font-weight: 800; 
    color: var(--primary); 
}
.hero-price .pix-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--success);
    background: var(--success-light);
    padding: 4px 10px;
    border-radius: 100px;
}

.hero-actions { 
    display: flex; 
    gap: 12px; 
    flex-wrap: wrap; 
    margin-bottom: 32px; 
}

.hero-trust { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}
.hero-trust-item svg { 
    color: var(--primary); 
    flex-shrink: 0; 
}

.hero-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}
.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    aspect-ratio: 4/3;
}
@media (min-width: 768px) {
    .hero-image { width: 45%; max-width: none; margin: 0; }
}

/* ─── Stats Bar ─────────────────────────────────────────────────────── */
.stats-bar { 
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%); 
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}
.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.05) 50%, transparent 100%);
}
.stats-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: center;
    position: relative;
}
@media (min-width: 768px) {
    .stats-grid { 
        grid-template-columns: repeat(4, 1fr); 
        padding: 0 24px; 
    }
}
@media (min-width: 1024px) {
    .stats-grid { padding: 0 32px; }
}

.stat-item { 
    padding: 8px 0;
}
.stat-item strong { 
    display: block; 
    font-size: 28px; 
    font-weight: 800; 
    color: #fff;
    margin-bottom: 4px;
}
@media (min-width: 768px) { .stat-item strong { font-size: 32px; } }
.stat-item span { 
    font-size: 13px; 
    color: rgba(255,255,255,0.75); 
    font-weight: 500; 
}

/* ─── Disclaimer Popup ──────────────────────────────────────────────── */
.disclaimer-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
}
.disclaimer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}
.disclaimer-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 16px;
    padding: 18px 16px;
    max-width: 400px;
    width: calc(100% - 24px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: popupSlideIn 0.3s ease;
}
@keyframes popupSlideIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.95); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.disclaimer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #D1FAE5;
    color: #065F46;
    padding: 5px 10px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.disclaimer-badge svg {
    stroke: #10B981;
    width: 14px;
    height: 14px;
}
.disclaimer-modal h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}
.disclaimer-content {
    margin-bottom: 12px;
}
.disclaimer-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: var(--bg-soft);
    border-radius: 10px;
    margin-bottom: 6px;
}
.disclaimer-item-highlight {
    background: var(--primary-50);
    border: 1px solid var(--primary-100);
}
.disclaimer-item-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.disclaimer-item-icon svg {
    width: 20px;
    height: 20px;
}
.disclaimer-item strong {
    display: block;
    font-size: 0.8rem;
    color: var(--text);
    margin-bottom: 2px;
}
.disclaimer-item p {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}
.disclaimer-legal {
    background: #F8FAFC;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px;
    font-size: 0.68rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 12px;
}
.disclaimer-legal strong {
    color: var(--text);
}
.disclaimer-btn {
    width: 100%;
    padding: 12px 20px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}
.disclaimer-btn:hover {
    background: var(--primary-dark);
}
.disclaimer-btn:active {
    transform: scale(0.98);
}

/* ─── Testimonials Section ──────────────────────────────────────────── */
.testimonials-section {
    background: var(--bg-soft);
    padding: 48px 0 56px;
}

@media (min-width: 768px) {
    .testimonials-section { padding: 64px 0 72px; }
}

.testimonials-header {
    text-align: center;
    margin-bottom: 32px;
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--success-light);
    color: var(--success);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.testimonials-badge svg {
    color: var(--success);
}

.testimonials-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .testimonials-title { font-size: 36px; }
}

.testimonials-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.testimonials-rating .stars {
    display: flex;
    gap: 2px;
}

.rating-text {
    font-size: 14px;
    color: var(--text-muted);
}

.rating-text strong {
    color: var(--text);
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

@media (min-width: 640px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

/* Mobile: more compact cards */
@media (max-width: 639px) {
    .testimonial-card {
        padding: 14px;
    }
    .testimonial-card.mobile-hidden {
        display: none;
    }
    .testimonial-card.mobile-hidden.show-all {
        display: block;
    }
    .testimonial-avatar {
        width: 40px;
        height: 40px;
    }
    .testimonial-text {
        font-size: 13px;
        margin-bottom: 8px;
    }
    .testimonials-collapse-btn {
        font-size: 12px;
        padding: 10px 16px;
    }
    .testimonials-toggle-area {
        margin-top: 16px;
        padding-top: 16px;
    }
    .testimonials-header {
        flex-direction: column;
        text-align: center;
    }
    .testimonials-badge {
        justify-content: center;
    }
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-meta {
    flex: 1;
    min-width: 0;
}

.testimonial-name {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-location {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

.testimonial-verified {
    flex-shrink: 0;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 12px;
}

.testimonial-time {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
}

/* Pagination */
.testimonials-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.testimonials-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.testimonials-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.testimonials-btn:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: none;
}

.testimonials-count {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonials-cta {
    text-align: center;
    padding: 16px 24px;
    background: rgba(255, 107, 0, 0.06);
    border-radius: var(--radius);
    border: 1px dashed rgba(255, 107, 0, 0.3);
    margin-top: 16px;
}

.testimonials-cta p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.testimonials-cta svg {
    color: var(--primary);
    flex-shrink: 0;
}

.testimonials-cta strong {
    color: var(--primary);
}

/* Toggle area below testimonials */
.testimonials-toggle-area {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* Collapse/Expand button */
.testimonials-collapse-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}
.testimonials-collapse-btn:hover {
    background: var(--bg);
    color: var(--text);
    border-color: var(--text-muted);
}
.testimonials-collapse-btn svg {
    transition: transform 0.3s;
}
.testimonials-collapse-btn.collapsed {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-color: transparent;
    color: white;
}
.testimonials-collapse-btn.collapsed:hover {
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}
.testimonials-collapse-btn.collapsed svg {
    transform: rotate(180deg);
    stroke: white;
}
.testimonials-header {
    position: relative;
}

/* Content collapse animation */
.testimonials-content {
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    max-height: 3000px;
    opacity: 1;
}
.testimonials-content.collapsed {
    max-height: 0;
    opacity: 0;
}

/* Animation for new cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card.new {
    animation: fadeInUp 0.4s ease forwards;
}

/* ─── Sections ──────────────────────────────────────────────────────── */
.section { padding: 56px 0; }
.section-alt { background: var(--bg-soft); }
.section-warm { background: var(--bg-warm); }
.section-dark { 
    background: var(--primary); 
    color: #fff;
}
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.8); }

@media (min-width: 768px) { .section { padding: 72px 0; } }
@media (min-width: 1024px) { .section { padding: 96px 0; } }

.section-header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.section-header h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.section-header p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

/* ─── Products Grid ─────────────────────────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}
@media (min-width: 640px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

.product-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition-slow);
    border: 1px solid var(--border-light);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-100);
}

.product-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-soft);
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.product-tag-green { 
    background: var(--success); 
    color: #fff; 
}
.product-tag-orange { 
    background: var(--accent); 
    color: #fff; 
}
.product-tag-purple { 
    background: var(--primary); 
    color: #fff; 
}

.product-card-out {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-card-body {
    padding: 20px;
}
.product-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}
.product-card-body h3 a {
    color: var(--text);
    transition: color var(--transition);
}
.product-card-body h3 a:hover {
    color: var(--primary);
}

.product-card .dose {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.product-card .description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 16px;
}
.product-card-price .current {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
}
.product-card-price .old {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}
.product-card-price .discount {
    font-size: 12px;
    font-weight: 700;
    color: var(--success);
    background: var(--success-light);
    padding: 2px 8px;
    border-radius: 100px;
}

/* ─── Benefits Section ──────────────────────────────────────────────── */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}
@media (min-width: 768px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .benefits-grid { grid-template-columns: repeat(4, 1fr); }
}

.benefit-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}
.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-100);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--accent);
}

.benefit-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.benefit-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── How It Works ──────────────────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
    counter-reset: step;
}
@media (min-width: 768px) {
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.step-card {
    position: relative;
    text-align: center;
    padding: 32px 24px;
}
.step-card::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 36px 0 12px;
}
.step-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ─── FAQ ───────────────────────────────────────────────────────────── */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: color var(--transition);
}
.faq-question:hover {
    color: var(--primary);
}
.faq-question svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform var(--transition);
}
.faq-item.open .faq-question svg {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}
.faq-item.open .faq-answer {
    max-height: 500px;
}
.faq-answer-inner {
    padding: 0 0 20px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ─── Notifications ─────────────────────────────────────────────────── */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 48px 16px 20px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    max-width: 90%;
    font-size: 14px;
}
.notification.show {
    transform: translateX(0);
}
.notification-success {
    border-left: 4px solid #10b981;
}
.notification-error {
    border-left: 4px solid #ef4444;
}
.notification-info {
    border-left: 4px solid var(--accent);
}
.notification-close {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1;
}
.notification-close:hover {
    color: var(--text);
}

/* ─── Steps List (Como Comprar) ─────────────────────────────────────── */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.1);
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px 0;
}

.step-content p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .step-item {
        padding: 16px;
        gap: 16px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .step-content h3 {
        font-size: 16px;
    }
}

/* ─── Info Cards (Laboratório & Entrega) ────────────────────────────── */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.1);
}

.info-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 12px 0;
}

.info-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.info-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
}

.info-card-list li svg {
    color: var(--accent);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .info-card {
        padding: 24px;
    }
    
    .info-card h3 {
        font-size: 18px;
    }
}

/* ─── Two Columns Grid (Como Comprar & FAQ) ─────────────────────────── */
.two-columns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.column-box {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border);
}

.column-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 24px 0;
    text-align: center;
}

.steps-list-compact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-item-compact {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--bg-soft);
    border-radius: 10px;
}

.step-number-sm {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.step-content-sm h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 4px 0;
}

.step-content-sm p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* FAQ dentro da coluna */
.column-box .faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.column-box .faq-item {
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.column-box .faq-question {
    padding: 14px 0;
    font-size: 14px;
}

.column-box .faq-answer-inner {
    font-size: 13px;
    padding-bottom: 14px;
}

@media (max-width: 900px) {
    .two-columns-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .column-box {
        padding: 24px;
    }
    
    .column-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

/* ─── Footer ────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--primary);
    color: rgba(255,255,255,0.85);
    padding: 56px 0 0;
}

.footer-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 768px) {
    .footer-grid { 
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr; 
        padding: 0 24px;
        gap: 32px;
    }
}
@media (min-width: 1024px) {
    .footer-grid { padding: 0 32px; }
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 16px;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: #fff;
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    transition: color var(--transition);
}
.footer-col a:hover {
    color: var(--accent);
}

.footer-disclaimer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 32px 0;
    margin-top: 48px;
}
.footer-disclaimer p {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-bottom {
    background: var(--primary-dark);
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        padding: 16px 24px;
    }
}
@media (min-width: 1024px) {
    .footer-bottom { padding: 16px 32px; }
}
.footer-bottom span {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ─── Payment Methods ───────────────────────────────────────────────── */
.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 24px;
}
.payment-icon {
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}
.payment-icon svg {
    width: 20px;
    height: 20px;
}

/* ─── WhatsApp Float ────────────────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: all var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

/* ─── Forms ─────────────────────────────────────────────────────────── */
.form-group {
    margin-bottom: 20px;
}
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
    transition: all var(--transition);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-50);
}
.form-input::placeholder {
    color: var(--text-light);
}
.form-textarea {
    min-height: 120px;
    resize: vertical;
}
.form-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}
@media (min-width: 640px) {
    .form-row { grid-template-columns: repeat(2, 1fr); }
}

.form-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}
.form-error {
    font-size: 12px;
    color: #DC2626;
    margin-top: 6px;
}

/* ─── Checkout Styles ───────────────────────────────────────────────── */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 16px;
}
@media (min-width: 1024px) {
    .cart-layout { 
        grid-template-columns: 1fr 400px; 
        padding: 0 32px;
    }
}

.order-summary {
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: sticky;
    top: calc(var(--header-h) + 24px);
    border: 1px solid var(--border);
}
.order-summary h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.summary-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}
.summary-item:last-child { border-bottom: none; }
.summary-item-image {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}
.summary-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.summary-item-details {
    flex: 1;
    min-width: 0;
}
.summary-item-details h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}
.summary-item-details p {
    font-size: 13px;
    color: var(--text-muted);
}
.summary-item-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}

.summary-totals {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--border);
}
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}
.summary-row.total {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px solid var(--border);
}

/* ─── PIX Payment Box ───────────────────────────────────────────────── */
.pix-box {
    background: var(--bg);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    max-width: 500px;
    margin: 32px auto;
}
.pix-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
}
.pix-box p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.pix-qr {
    background: var(--bg-soft);
    padding: 24px;
    border-radius: var(--radius);
    display: inline-block;
    margin-bottom: 20px;
}
.pix-code {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 12px;
    font-family: monospace;
    word-break: break-all;
    margin-bottom: 16px;
}
.pix-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}
.pix-copy-btn:hover {
    background: var(--primary-dark);
}
.pix-timer {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
}
.pix-timer strong {
    color: var(--accent);
    font-size: 24px;
    font-weight: 700;
}

/* ─── Page Header ───────────────────────────────────────────────────── */
.page-header {
    background: var(--bg-soft);
    padding: 32px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border);
}
.page-header .container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}
.page-header h1 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    margin: 0;
}
.page-header p {
    font-size: 16px;
    color: var(--text-muted);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.breadcrumbs a {
    color: var(--text-muted);
    transition: color var(--transition);
}
.breadcrumbs a:hover {
    color: var(--primary);
}
.breadcrumbs span {
    color: var(--text-light);
}

/* ─── Alerts ────────────────────────────────────────────────────────── */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.alert svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}
.alert-success {
    background: var(--success-light);
    color: #065F46;
    border: 1px solid #A7F3D0;
}
.alert-error {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}
.alert-warning {
    background: #FFFBEB;
    color: #92400E;
    border: 1px solid #FDE68A;
}
.alert-info {
    background: var(--primary-50);
    color: var(--primary-dark);
    border: 1px solid var(--primary-100);
}

/* ─── Tracking Timeline ─────────────────────────────────────────────── */
.tracking-timeline {
    position: relative;
    padding-left: 32px;
}
.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--border);
}

.tracking-item {
    position: relative;
    padding: 16px 0;
}
.tracking-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 20px;
    width: 14px;
    height: 14px;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 50%;
}
.tracking-item.completed::before {
    background: var(--success);
    border-color: var(--success);
}
.tracking-item.current::before {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-50);
}

.tracking-item h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}
.tracking-item p {
    font-size: 13px;
    color: var(--text-muted);
}
.tracking-item time {
    font-size: 12px;
    color: var(--text-light);
}

/* ─── Utilities ─────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-success { color: var(--success); }

.bg-soft { background: var(--bg-soft); }
.bg-primary { background: var(--primary); color: #fff; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.py-1 { padding-top: 8px; padding-bottom: 8px; }
.py-2 { padding-top: 16px; padding-bottom: 16px; }
.py-3 { padding-top: 24px; padding-bottom: 24px; }
.py-4 { padding-top: 32px; padding-bottom: 32px; }

.hidden { display: none !important; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ─── Animations ────────────────────────────────────────────────────── */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-fadeIn { animation: fadeIn 0.3s ease-out; }
.animate-pulse { animation: pulse 2s infinite; }
.animate-spin, .spin { animation: spin 1s linear infinite; }

/* ─── Loading Spinner ───────────────────────────────────────────────── */
.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
.spinner-lg {
    width: 40px;
    height: 40px;
    border-width: 4px;
}

/* ─── Cards ─────────────────────────────────────────────────────────── */
.card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    overflow: hidden;
}
.card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}
.card-body {
    padding: 24px;
}
.card-footer {
    padding: 16px 24px;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
}

/* ─── Product Showcase (Single Product Layout) ─────────────────────── */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
}

.product-showcase-image {
    position: relative;
    background: linear-gradient(145deg, #fff5f0 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.product-showcase-image img {
    max-width: 320px;
    max-height: 380px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-showcase-image:hover img {
    transform: scale(1.05);
}

.product-showcase-image .research-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-showcase-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-showcase-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    line-height: 1.2;
}

.product-showcase-info .product-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: -8px;
}

.product-specs {
    background: var(--bg-soft);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row .label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.spec-row .value {
    font-size: 14px;
    color: var(--text);
    font-weight: 600;
}

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

.product-price-box {
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.product-price-box .old-price {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.product-price-box .current-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.product-price-box .current-price small {
    font-size: 18px;
    font-weight: 500;
}

.product-price-box .discount-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
}

.product-price-box .installments {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

.product-trust-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.product-trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.product-trust-badges .badge svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

/* Responsive Product Showcase */
@media (max-width: 900px) {
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px;
    }
    
    .product-showcase-image {
        max-width: 350px;
        margin: 0 auto;
        min-height: auto;
        padding: 24px;
        position: static;
        order: 1;
    }
    
    .product-showcase-image img {
        max-width: 280px;
        max-height: 320px;
    }
    
    .product-showcase-info {
        text-align: center;
        order: 2;
    }
    
    .product-label {
        justify-content: center;
    }
    
    .product-title {
        font-size: 28px;
    }
    
    .product-specs {
        text-align: left;
    }
    
    .product-specs .spec-row {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .product-price-box {
        padding: 20px;
    }
    
    .price-current {
        font-size: 36px;
    }
    
    .product-trust-badges {
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .product-showcase {
        padding: 16px;
        gap: 20px;
        margin: 0 -8px;
        border-radius: 12px;
    }
    
    .product-showcase-image {
        max-width: 300px;
        padding: 20px;
    }
    
    .product-showcase-image img {
        max-width: 220px;
        max-height: 260px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .product-specs {
        padding: 16px;
    }
    
    .product-specs .spec-row {
        padding: 10px 0;
    }
    
    .product-price-box {
        padding: 16px;
    }
    
    .price-current {
        font-size: 32px;
    }
    
    .price-old {
        font-size: 14px;
    }
    
    .product-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .trust-badge {
        font-size: 13px;
    }
}

/* Classes adicionais para Product Showcase */
.product-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.3);
}

.product-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    margin: 4px 0 0 0;
    line-height: 1.1;
}

.product-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
}

.price-current {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    order: 1;
}

.price-old {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
    order: 2;
}

.price-discount {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    order: 3;
}

.product-add-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.trust-badge svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Ajuste do gap no product-showcase-info */
.product-showcase-info {
    gap: 16px;
}

/* Ajuste do product-price-box para flex */
.product-price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Responsive adicional */
@media (max-width: 900px) {
    .product-label,
    .product-subtitle {
        text-align: center;
    }
    
    .product-title {
        font-size: 28px;
        text-align: center;
    }
    
    .price-current {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 24px;
    }
    
    .price-current {
        font-size: 32px;
    }
    
    .product-trust-badges {
        gap: 12px;
    }
    
    .trust-badge {
        font-size: 12px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO CLEAN - Design Minimalista
   ═══════════════════════════════════════════════════════════════════════ */

/* Hero Clean */
.hero-clean {
    background: linear-gradient(135deg, #FF6B00 0%, #E55A00 100%);
    padding: 28px 20px 36px;
}

.hero-clean-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

@media (min-width: 640px) {
    .hero-clean-inner {
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 32px;
        text-align: left;
    }
}

/* Imagem do produto - sem card */
.hero-clean-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product-img {
    max-width: 160px;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 32px rgba(0,0,0,0.35));
}

@media (min-width: 480px) {
    .hero-product-img {
        max-width: 180px;
        max-height: 240px;
    }
}

@media (min-width: 768px) {
    .hero-clean {
        padding: 48px 24px 56px;
    }
    .hero-clean-inner {
        grid-template-columns: 1fr 1.5fr;
        gap: 48px;
    }
    .hero-product-img {
        max-width: 200px;
        max-height: 280px;
    }
}

@media (min-width: 1024px) {
    .hero-product-img {
        max-width: 220px;
        max-height: 320px;
    }
}

/* Conteúdo */
.hero-clean-content {
    text-align: center;
}

@media (min-width: 640px) {
    .hero-clean-content {
        text-align: left;
    }
}

.hero-clean-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    background: rgba(255,255,255,0.15);
    padding: 6px 14px;
    border-radius: 6px;
}

@media (min-width: 768px) {
    .hero-clean-tag {
        font-size: 13px;
        margin-bottom: 12px;
        padding: 8px 16px;
    }
}

.hero-clean-title {
    font-size: 44px;
    font-weight: 900;
    color: white;
    line-height: 1.05;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

@media (min-width: 480px) {
    .hero-clean-title {
        font-size: 52px;
    }
}

@media (min-width: 768px) {
    .hero-clean-title {
        font-size: 64px;
        margin-bottom: 10px;
    }
}

.hero-clean-price {
    font-size: 32px;
    font-weight: 900;
    color: #FCD34D;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .hero-clean-price {
        font-size: 42px;
        margin-bottom: 20px;
    }
}

/* Certificado */
.hero-clean-cert {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.15);
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .hero-clean-cert {
        padding: 14px 18px;
        gap: 14px;
        margin-bottom: 20px;
    }
}

/* Subtítulo hero */
.hero-clean-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

@media (min-width: 768px) {
    .hero-clean-subtitle {
        font-size: 16px;
        margin-bottom: 12px;
    }
}

/* Features list no hero */
.hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-features {
        align-items: flex-start;
    }
}

.hero-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    line-height: 1.4;
    padding: 2px 0;
    text-align: left;
}

.hero-features li svg {
    color: #FCD34D;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

@media (min-width: 768px) {
    .hero-features {
        gap: 8px;
        margin-bottom: 28px;
    }
    .hero-features li {
        font-size: 15px;
        gap: 12px;
    }
    .hero-features li svg {
        width: 20px;
        height: 20px;
    }
}

.hero-clean-cert svg {
    color: #FCD34D;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

@media (min-width: 768px) {
    .hero-clean-cert svg {
        width: 28px;
        height: 28px;
    }
}

.hero-clean-cert > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-clean-cert strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .hero-clean-cert strong {
        font-size: 15px;
    }
}

.hero-clean-cert span {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
}

@media (min-width: 768px) {
    .hero-clean-cert span {
        font-size: 13px;
    }
}

.hero-clean-cert a {
    color: #FCD34D;
    font-weight: 600;
    text-decoration: underline;
}

.hero-clean-cert a:hover {
    color: white;
}

/* Botão */
.hero-clean-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #FF6B00;
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

@media (min-width: 768px) {
    .hero-clean-btn {
        padding: 18px 48px;
        font-size: 17px;
        margin-bottom: 20px;
    }
}

.hero-clean-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Info inline com pontos */
.hero-clean-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

@media (min-width: 640px) {
    .hero-clean-info {
        justify-content: flex-start;
    }
}

@media (min-width: 768px) {
    .hero-clean-info {
        gap: 8px;
        font-size: 13px;
    }
}

.hero-clean-info .dot {
    opacity: 0.6;
}

/* Trust Bar - sem emojis, só texto com pontos */
.trust-bar {
    background: #1E293B;
    padding: 14px 16px;
}

.trust-bar-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

@media (min-width: 768px) {
    .trust-bar-inner {
        gap: 12px;
        font-size: 13px;
    }
}

.trust-bar-inner .dot {
    opacity: 0.4;
}

/* Hide old styles */
.hero-premium { display: none; }
.info-bar { display: none; }
.trust-item { display: none; }
.trust-icon { display: none; }
.hero-clean-img-wrap { display: none; }
.hero-clean-info-item { display: none; }

/* ═══════════════════════════════════════════════════════════════════════
   HERO PREMIUM (LEGACY) - Design Sofisticado e Moderno
   ═══════════════════════════════════════════════════════════════════════ */

.hero-premium-legacy {
    background: linear-gradient(135deg, #FF6B00 0%, #E55A00 100%);
    padding: 40px 20px 48px;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-inner {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 48px;
    }
    .hero-premium-legacy {
        padding: 56px 24px 64px;
    }
}

@media (min-width: 1024px) {
    .hero-premium-legacy {
        padding: 72px 32px 80px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Disponibilidade */
.hero-avail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
}

.avail-dot {
    width: 8px;
    height: 8px;
    background: #FCD34D;
    border-radius: 50%;
    animation: avail-pulse 2s ease-in-out infinite;
}

@keyframes avail-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Nome do Produto */
.hero-product-name {
    margin-bottom: 12px;
}

.hero-product-name .product-line {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.hero-product-name h1 {
    font-size: clamp(40px, 10vw, 64px);
    font-weight: 900;
    color: white;
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-product-name h1 em {
    font-style: normal;
    color: rgba(255,255,255,0.85);
    font-weight: 700;
}

/* Descrição */
.hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Preço */
.hero-pricing {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.price-from {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    text-decoration: line-through;
}

.price-main {
    font-size: clamp(32px, 8vw, 44px);
    font-weight: 900;
    color: white;
}

.price-save {
    font-size: 13px;
    font-weight: 600;
    color: #FCD34D;
    background: rgba(0,0,0,0.2);
    padding: 4px 10px;
    border-radius: 4px;
}

/* Botão CTA */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #FF6B00;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 20px;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

@media (min-width: 768px) {
    .hero-btn {
        padding: 18px 40px;
        font-size: 17px;
    }
}

/* Benefícios inline */
.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
}

.hero-benefits svg {
    color: #FCD34D;
}

/* Imagem do Hero */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrap {
    position: relative;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px;
    max-width: 280px;
}

.hero-image-wrap img {
    width: 100%;
    border-radius: 8px;
}

.hero-badge-lab {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .hero-visual {
        order: -1;
    }
    .hero-image-wrap {
        max-width: 200px;
        padding: 16px;
    }
}

/* ═══ INFO BAR ═══════════════════════════════════════════════════════ */
.info-bar {
    background: #1E293B;
    padding: 14px 16px;
}

.info-bar-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

@media (min-width: 768px) {
    .info-bar-content {
        gap: 40px;
    }
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

.info-item svg {
    color: #FF6B00;
    flex-shrink: 0;
}

.info-item strong {
    color: white;
    font-weight: 600;
}

/* ═══ LEGACY HERO SUPPORT ════════════════════════════════════════════ */
.hero-new { display: none; }
.paraguay-notice { display: none; }

/* Placeholder for notice-text strong used elsewhere */
.notice-text strong {
    font-size: 15px;
    font-weight: 700;
    color: white;
}

.notice-text span {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}

/* ─── Hero Responsive ─────────────────────────────────────────────── */
@media (min-width: 768px) {
    .hero-new {
        padding: 72px 24px 80px;
    }
    
    .stock-badge {
        font-size: 14px;
        padding: 12px 24px;
    }
    
    .hero-trust {
        gap: 32px;
    }
    
    .hero-trust-item {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .hero-new {
        padding: 96px 32px 104px;
    }
    
    .hero-title {
        flex-direction: row;
        gap: 16px;
    }
    
    .hero-cta {
        padding: 20px 64px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero-new {
        padding: 36px 16px 44px;
    }
    
    .stock-badge {
        font-size: 11px;
        padding: 8px 14px;
    }
    
    .hero-tag {
        font-size: 10px;
        padding: 5px 10px;
    }
    
    .hero-cta {
        width: 100%;
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 10px;
    }
    
    .notice-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .notice-text {
        text-align: center;
    }
    
    .notice-text strong {
        font-size: 14px;
    }
    
    .notice-text span {
        font-size: 12px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   COA SECTION - Certificados em Destaque
   ═══════════════════════════════════════════════════════════════════════ */

.coa-section {
    background: linear-gradient(180deg, #FFFBF5 0%, #FFF7ED 100%);
    padding: 48px 20px;
    border-top: 1px solid #FED7AA;
    border-bottom: 1px solid #FED7AA;
}

.coa-header {
    text-align: center;
    margin-bottom: 32px;
}

.coa-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF6B00 0%, #E55D00 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.coa-title {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 8px;
}

.coa-subtitle {
    font-size: 15px;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.coa-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto 24px;
}

.coa-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.coa-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #FF6B00 0%, #E55D00 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coa-card:hover {
    border-color: #FF6B00;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.15);
}

.coa-card:hover::before {
    opacity: 1;
}

.coa-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #FF6B00;
}

.coa-card-content {
    flex: 1;
    min-width: 0;
}

.coa-card-label {
    font-size: 12px;
    font-weight: 600;
    color: #FF6B00;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coa-card-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1E293B;
    margin: 4px 0;
}

.coa-card-meta {
    font-size: 13px;
    color: #64748B;
}

.coa-card-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    padding: 10px 16px;
    border-radius: 10px;
    flex-shrink: 0;
}

.coa-card-badge span {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.coa-card-badge small {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.coa-card-action {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748B;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.coa-card:hover .coa-card-action {
    color: #FF6B00;
}

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

.coa-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FF6B00;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 10px;
    background: white;
    border: 2px solid #FF6B00;
    transition: all 0.3s ease;
}

.coa-link:hover {
    background: #FF6B00;
    color: white;
}

/* COA Responsive */
@media (min-width: 768px) {
    .coa-section {
        padding: 64px 24px;
    }
    
    .coa-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .coa-card {
        padding: 24px;
    }
}

@media (max-width: 600px) {
    .coa-card {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .coa-card-icon {
        width: 48px;
        height: 48px;
    }
    
    .coa-card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .coa-card-badge {
        order: 3;
        padding: 8px 12px;
    }
    
    .coa-card-badge span {
        font-size: 16px;
    }
    
    .coa-card-action {
        order: 4;
        width: 100%;
        justify-content: center;
        padding-top: 12px;
        border-top: 1px solid #E2E8F0;
        margin-top: 4px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   CART PAGE - Estilos Melhorados
   ═══════════════════════════════════════════════════════════════════════ */

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.cart-table thead {
    background: #F8FAFC;
    border-bottom: 2px solid #E2E8F0;
}

.cart-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-table tbody tr {
    border-bottom: 1px solid #F1F5F9;
    transition: background 0.2s ease;
}

.cart-table tbody tr:last-child {
    border-bottom: none;
}

.cart-table tbody tr:hover {
    background: #FAFAFA;
}

.cart-table td {
    padding: 20px;
    vertical-align: middle;
}

/* Produto no carrinho */
.cart-product {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #E2E8F0;
    background: #F8FAFC;
}

.cart-product-name {
    font-size: 16px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 4px;
}

.cart-product-dose {
    font-size: 13px;
    color: #64748B;
    margin-bottom: 4px;
}

.cart-remove {
    font-size: 13px;
    color: #DC2626;
    font-weight: 500;
    margin-top: 8px;
    display: inline-block;
    transition: color 0.2s ease;
}

.cart-remove:hover {
    color: #B91C1C;
    text-decoration: underline;
}

/* Seletor de Quantidade */
.qty-selector {
    display: inline-flex;
    align-items: center;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.qty-selector button {
    width: 36px;
    height: 36px;
    border: none;
    background: #F8FAFC;
    font-size: 18px;
    font-weight: 600;
    color: #64748B;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-selector button:hover {
    background: #FF6B00;
    color: white;
}

.qty-selector button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.qty-selector button:disabled:hover {
    background: #F8FAFC;
    color: #64748B;
}

.qty-selector input {
    width: 48px;
    height: 36px;
    border: none;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #1E293B;
    background: white;
    -moz-appearance: textfield;
}

.qty-selector input::-webkit-outer-spin-button,
.qty-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Display de quantidade (limite 1) */
.qty-display {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.qty-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #F8FAFC;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #1E293B;
}

.qty-limit {
    font-size: 11px;
    color: #94A3B8;
    font-weight: 500;
}

/* Cart Summary */
.cart-summary {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 2px solid #E2E8F0;
    position: sticky;
    top: 90px;
}

.cart-summary h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #F1F5F9;
}

.cart-summary .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 15px;
    color: #64748B;
}

.cart-summary .summary-row span:last-child {
    font-weight: 600;
    color: #1E293B;
}

.cart-summary .summary-row .free {
    color: #FF6B00;
    font-weight: 700;
}

.cart-summary .summary-row.total {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid #E2E8F0;
    font-size: 18px;
}

.cart-summary .summary-row.total span:first-child {
    font-weight: 700;
    color: #1E293B;
}

.cart-summary .summary-row.total span:last-child {
    font-size: 24px;
    font-weight: 800;
    color: #FF6B00;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 24px;
    max-width: 400px;
    margin: 0 auto;
}

.empty-state svg {
    color: #CBD5E1;
    margin-bottom: 24px;
}

.empty-state h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 12px;
}

.empty-state p {
    font-size: 15px;
    color: #64748B;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Cart Responsive */
@media (max-width: 767px) {
    .cart-table thead {
        display: none;
    }
    
    .cart-table tbody tr {
        display: block;
        padding: 20px;
        margin-bottom: 12px;
        border-radius: 12px;
        border: 1px solid #E2E8F0;
        background: white;
    }
    
    .cart-table td {
        display: block;
        padding: 8px 0;
        text-align: left !important;
    }
    
    .cart-product img {
        width: 100px;
        height: 100px;
    }
    
    .qty-selector {
        margin-top: 12px;
    }
    
    .cart-summary {
        position: static;
        margin-top: 24px;
    }
}

/* ─── Print Styles ──────────────────────────────────────────────────── */
@media print {
    .site-header,
    .site-footer,
    .whatsapp-float,
    .mobile-nav,
    .btn {
        display: none !important;
    }
    body {
        font-size: 12pt;
        color: #000;
    }
    .container {
        max-width: 100%;
        padding: 0;
    }
}


