/* ==========================================================================
   PORTAL ESCLARECER (TIBYAN) - DESIGN SYSTEM MODERNO & MINIMALISTA
   ========================================================================== */

/* --- GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400&family=Cairo:wght@400;600;700;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

/* --- VARIÁVEIS DE COR E DESIGN TOKENS --- */
:root {
    /* Cores de Marca & Destaques */
    --brand-primary: #14b8a6;         /* Esmeralda / Teal Luminoso */
    --brand-primary-hover: #0d9488;
    --brand-secondary: #0ea5e9;       /* Ciano Celeste */
    --brand-glow: rgba(20, 184, 166, 0.2);
    
    /* Tema Claro (Editorial Pearl) */
    --bg-page: #f8fafc;
    --bg-surface: #ffffff;
    --bg-surface-elevated: #ffffff;
    --bg-surface-glass: rgba(255, 255, 255, 0.85);
    --border-subtle: #e2e8f0;
    --border-highlight: rgba(20, 184, 166, 0.35);
    
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    
    /* Sombras & Efeitos */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 12px 30px rgba(15, 23, 42, 0.08);
    --shadow-glow: 0 0 20px rgba(20, 184, 166, 0.12);
    
    /* Layout Tokens */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] {
    /* Tema Escuro (Obsidian & Emerald) */
    --bg-page: #080c10;
    --bg-surface: #0f1720;
    --bg-surface-elevated: #151f2b;
    --bg-surface-glass: rgba(15, 23, 32, 0.85);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(20, 184, 166, 0.4);
    
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --text-light: #64748b;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 24px rgba(20, 184, 166, 0.15);
}

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    padding-top: 80px;
    transition: background-color var(--transition-smooth), color var(--transition-smooth);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- BARRA DE PROGRESSO DE LEITURA (TOP) --- */
#readingProgressBar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
    z-index: 99999;
    transition: width 0.1s ease-out;
}

/* --- NAVBAR FLUTUANTE GLASSMORPHISM (100% LIMPA) --- */
.top-nav {
    background: var(--bg-surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    transition: background-color var(--transition-smooth), border-color var(--transition-smooth);
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Logo Estilizado */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 800;
    letter-spacing: -0.5px;
    font-size: 1.15rem;
    transition: transform var(--transition-fast);
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-latin {
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--text-main), var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-arabic {
    font-family: 'Cairo', sans-serif;
    font-weight: 800;
    color: var(--brand-primary);
    font-size: 1.25rem;
    line-height: 1;
    margin-left: 2px;
}

/* Botões da Navbar */
.nav-btn {
    background: var(--bg-surface);
    color: var(--text-main);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.nav-btn:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    transform: translateY(-1px);
}

.menu-icon-container {
    padding: 8px 12px;
    font-size: 1.15rem;
    line-height: 1;
}

.theme-toggle-btn {
    border-radius: var(--radius-full);
    padding: 8px 16px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* --- MENU LATERAL DESLIZANTE --- */
.menu-navigation {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: var(--bg-surface-elevated);
    border-right: 1px solid var(--border-subtle);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-navigation.open {
    left: 0;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.close-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast);
}

.close-btn:hover {
    color: var(--brand-primary);
}

.menu-navigation ul {
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-navigation ul li a {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.menu-navigation ul li a:hover,
.menu-navigation ul li a.active {
    background: rgba(20, 184, 166, 0.08);
    color: var(--brand-primary);
    transform: translateX(4px);
}

.menu-navigation ul li a .vetor-minimalista {
    width: 20px;
    height: 20px;
    fill: var(--text-muted);
    transition: fill var(--transition-fast);
}

.menu-navigation ul li a:hover .vetor-minimalista,
.menu-navigation ul li a.active .vetor-minimalista {
    fill: var(--brand-primary);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- HERO SECTION --- */
.hero-section {
    padding: 50px 20px 30px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(20, 184, 166, 0.08);
    border: 1px solid var(--border-highlight);
    color: var(--brand-primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Cairo', 'Plus Jakarta Sans', sans-serif;
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.hero-title .title-accent {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-arabic-subtitle {
    font-family: 'Amiri', serif;
    font-size: 1.8rem;
    color: var(--brand-primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.hero-trust-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.trust-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-sm);
}

/* --- BARRA DE BUSCA & FILTROS POR CATEGORIA --- */
.discovery-container {
    max-width: 720px;
    margin: 0 auto 35px;
    padding: 0 20px;
}

.search-box-wrapper {
    position: relative;
    margin-bottom: 16px;
}

.search-input {
    width: 100%;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    padding: 14px 20px 14px 46px;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.search-input:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px var(--brand-glow);
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    fill: var(--text-light);
    pointer-events: none;
}

.category-pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
}

.category-pills::-webkit-scrollbar {
    display: none;
}

.pill-btn {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.pill-btn:hover {
    border-color: var(--brand-primary);
    color: var(--text-main);
}

.pill-btn.active {
    background: var(--brand-primary);
    color: #ffffff;
    border-color: var(--brand-primary);
    box-shadow: 0 2px 8px var(--brand-glow);
}

/* --- CONTAINER PRINCIPAL --- */
.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 35px 0 18px;
}

.section-title {
    color: var(--brand-primary);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--brand-primary);
    border-radius: 2px;
}

/* --- CARDS DE CONTEÚDO (SCRIPT ITEMS) --- */
.script-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.script-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.script-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--brand-primary), var(--brand-secondary));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.script-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-highlight);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

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

.card-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-category-tag {
    background: rgba(20, 184, 166, 0.08);
    color: var(--brand-primary);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-read-time {
    font-size: 0.75rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}

.script-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.35;
}

.script-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
}

.btn-read {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-primary);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 8px var(--brand-glow);
    border: none;
    cursor: pointer;
}

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

.btn-read svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform var(--transition-fast);
}

.btn-read:hover svg {
    transform: translateX(3px);
}

/* --- VÍDEO FEATURED CONTAINER --- */
.video-card-container {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.video-card-container:hover {
    border-color: var(--border-highlight);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.video-responsive-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000000;
}

.video-responsive-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card-details {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.video-card-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
}

.video-badge {
    background: #ef4444;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

/* --- SEÇÃO DE SUBSCRIÇÃO --- */
.subscribe-section {
    background: linear-gradient(145deg, var(--bg-surface-elevated), var(--bg-surface));
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    margin: 45px 0 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.subscribe-icon-badge {
    width: 48px;
    height: 48px;
    background: rgba(20, 184, 166, 0.08);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--brand-primary);
    font-size: 1.3rem;
}

.subscribe-section h4 {
    font-family: 'Cairo', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}

.subscribe-section p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 22px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    max-width: 460px;
    margin: 0 auto;
}

.subscribe-input {
    flex: 1;
    background: var(--bg-page);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    padding: 12px 18px;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: all var(--transition-fast);
}

.subscribe-input:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px var(--brand-glow);
}

.btn-subscribe {
    background: var(--brand-primary);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 10px var(--brand-glow);
}

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

/* --- ESTILOS DE LEITURA EDITORIAL --- */
.article-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-subtle);
}

.article-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 12px 0;
    color: var(--text-main);
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.roteiro-texto {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-main);
    margin-bottom: 24px;
}

.roteiro-texto p {
    margin-bottom: 1.4rem;
}

.roteiro-destaque {
    background: var(--bg-surface-elevated);
    padding: 24px 28px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--brand-primary);
    margin: 30px 0;
    border-top: 1px solid var(--border-subtle);
    border-right: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    font-size: 1rem;
    line-height: 1.65;
}

.versiculo-arabe {
    font-family: 'Amiri', serif;
    font-size: 1.75rem;
    line-height: 2.2;
    direction: rtl;
    text-align: right;
    padding: 16px 0;
    color: var(--text-main);
}

.quran-container {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    margin: 28px 0;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

/* --- SEÇÃO DO AUTOR & CONTATOS --- */
.author-hero-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}

.author-avatar-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 18px;
}

.author-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--brand-primary);
    box-shadow: 0 0 20px var(--brand-glow);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.contact-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 18px 14px;
    text-align: center;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-fast);
}

.contact-card:hover {
    border-color: var(--brand-primary);
    background: var(--bg-surface-elevated);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--brand-primary);
}

.contact-svg {
    width: 26px;
    height: 26px;
    fill: var(--text-muted);
    transition: fill var(--transition-fast);
}

.contact-card:hover .contact-svg {
    fill: var(--brand-primary);
}

/* --- RODAPÉ DISCRETO & SELO DURRIY SUTIL --- */
.main-footer {
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-surface);
    padding: 40px 20px 30px;
    margin-top: 60px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--brand-primary);
}

.footer-links span {
    color: var(--border-subtle);
}

.copyright {
    font-size: 0.78rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

/* Selo Discreto no Rodapé */
.footer-durriy-subtle {
    margin-top: 10px;
    font-size: 0.75rem;
}

.footer-durriy-subtle a {
    color: var(--text-muted);
    text-decoration: none;
    opacity: 0.7;
    transition: all var(--transition-fast);
    font-weight: 600;
}

.footer-durriy-subtle a:hover {
    opacity: 1;
    color: var(--brand-primary);
}

/* --- FAQ / ACORDEÃO --- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-question {
    padding: 18px 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    user-select: none;
}

.faq-question:hover {
    color: var(--brand-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.92rem;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active {
    border-color: var(--border-highlight);
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

.faq-icon {
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--brand-primary);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 640px) {
    body {
        padding-top: 72px;
    }

    .top-nav {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-tagline {
        font-size: 0.95rem;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .btn-subscribe {
        width: 100%;
    }

    .script-card {
        padding: 20px 16px;
    }

    .card-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .btn-read {
        justify-content: center;
    }
}
