/* Variáveis baseadas no tailwind.config.ts e index.css originais */
:root {
    --primary: #2d9a7a;
    --primary-dark: #1f6b55;
    --dark-navy: #1a202c;
    --dark-blue: #1e3a8a;
    --light-gray: #f7fafc;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --border: #e2e8f0;
    --white: #ffffff;
    --radius: 0.5rem;
}

/* Base */
body { 
    font-family: 'Inter', sans-serif; 
    margin: 0; 
    color: var(--text-primary); 
    line-height: 1.6; 
    background-color: var(--white);
}

.container { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 0 24px; 
}

.main-content {
    max-width: 900px; /* Mantém o conteúdo centralizado e legível */
    margin: 0 auto;
}

/* Header & Hero */
.header { background: var(--dark-navy); padding: 1rem 0; color: white; }
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-box { 
    border: 2px solid var(--primary); 
    padding: 5px; 
    border-radius: 4px; 
    line-height: 1; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}
.highlight { color: var(--primary); }

/* Hero sem bordas e com espaçamento ajustado */
.hero { 
    background: var(--light-gray); 
    padding: 2rem 1rem; 
    text-align: center; 
    border: none; /* Remove bordas superior e inferior */
}
.hero-title { font-size: 2.5rem; font-weight: 800; margin: 0; letter-spacing: -0.025em; }

/* Product Cards */
.product-card { 
    border: 1px solid var(--border); 
    border-radius: 12px; 
    margin-bottom: 2rem; 
    overflow: hidden; 
    background: var(--white); 
    box-shadow: 0 1px 3px rgba(0,0,0,0.1); 
}

.badge-banner { 
    color: white; 
    padding: 8px; 
    text-align: center; 
    font-weight: bold; 
    text-transform: uppercase; 
    font-size: 0.75rem; 
    letter-spacing: 0.05em;
}
.editors-choice { background: #f97316; }

.card-body { padding: 1.5rem; }

/* Ratings Section */
.rating-row { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; }
.rating-bar-bg { flex: 1; height: 8px; background: #edf2f7; border-radius: 10px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--primary); border-radius: 10px; }

/* Seções de Texto e Checklist */
.section-title { font-size: 1.8rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--text-primary); }

.criteria-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 1.5rem; 
    margin-top: 1.5rem; 
}

/* Responsividade Mobile */
@media (max-width: 767px) {
    .hero-title { font-size: 1.8rem; }
    .card-grid { grid-template-columns: 1fr !important; }
    .criteria-grid { grid-template-columns: 1fr; }
    .rating-label { width: 100px !important; font-size: 0.75rem; }
}

/* Botões */
.cta-button { 
    display: block; 
    background: var(--primary); 
    color: white; 
    text-align: center; 
    padding: 1rem; 
    border-radius: 8px; 
    text-decoration: none; 
    font-weight: bold; 
    transition: background 0.2s ease;
}
.cta-button:hover { background: var(--primary-dark); }

.footer {
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 1px solid var(--border);
    text-align: center;
    background-color: #f7fafc;
    width: 100%;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cc6666;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
}

.logo { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    text-decoration: none;
}

.logo-icon {
    color: var(--primary);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
}

.logo-text {
    font-weight: 700;
    font-size: 1.3rem;
    color: #ffffff;
    letter-spacing: -0.5px;
}

/* Novos Estilos Adicionados */
.sticky-header {
    position: sticky;
    top: 0;
    background: #1e3a8a;
    color: white;
    padding: 10px 0;
    text-align: center;
    z-index: 1000;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.sticky-header a {
    color: white;
    text-decoration: none;
}

.sponsored-tag {
    text-align: center;
    font-size: 0.75rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 0;
    background: #f7fafc;
    border-bottom: 1px solid #e2e8f0;
}
