/* ==========================================================================
   RIOS MINISTÉRIO - DESIGN SYSTEM & PREMIUM STYLESHEET
   Exact High-Contrast Executive Aesthetics Cloned from: https://riosministerio.com/blog/
   Palette: Pure White (#FFFFFF), Clean Light Gray (#F8F9FA), Executive Slate (#0F172A),
            Royal Prestige Gold (#C89B42 / #D4AF37), and Vibrant Action Blue (#008AFF).
   Focus: Maximum Legibility, High Contrast, Executive Elegance & Dynamic Slider
   ========================================================================== */

:root {
    /* Executive Petrol-Teal & Gold Palette (Inspirado na 3ª Imagem) */
    --bg-main: #F4F7F8;          /* Suave tom acetinado repousante (acaba com o branco forte) */
    --bg-section-alt: #E8EEF1;   /* Cinza/petróleo claríssimo para descanso visual */
    --bg-dark: #0B2D35;          /* Petróleo Real / Teal Profundo da 3ª imagem */
    --bg-card: #FFFFFF;          /* Cartão limpo com bordas petrol/douradas */
    --bg-card-dark: #144D5B;     /* Petróleo intermediário elegante */
    
    --gold-primary: #C89B42;     /* Dourado Oficial Realeza */
    --gold-light: #D4AF37;       /* Dourado Luminoso */
    --gold-deep: #997328;        /* Dourado Profundo */
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #C89B42 50%, #997328 100%);
    
    --blue-action: #008AFF;      /* Elementor Action Blue */
    --green-pix: #22C55E;        /* Pix Badge Green */
    
    --text-main: #0B2D35;        /* Chumbo/Petróleo escuro para contraste nobre na leitura */
    --text-muted: #334E58;       /* Petróleo médio para textos de apoio */
    --text-light: #64748B;
    --text-white: #FFFFFF;       /* Branco puro para áreas escuras */
    
    /* Elevation & Shadows */
    --shadow-sm: 0 4px 12px rgba(11, 45, 53, 0.08);
    --shadow-md: 0 10px 25px rgba(11, 45, 53, 0.14);
    --shadow-lg: 0 20px 45px rgba(11, 45, 53, 0.22);
    --shadow-glow: 0 0 30px rgba(200, 155, 66, 0.35);
    
    --border-light: rgba(20, 77, 91, 0.18);
    --border-gold: rgba(200, 155, 66, 0.4);
    --border-gold-strong: rgba(200, 155, 66, 0.8);
    
    /* Typography */
    --font-serif: 'Domine', 'Playfair Display', serif;
    --font-title: 'Cinzel', serif;
    --font-sans: 'Poppins', 'Inter', sans-serif;
    
    /* Spacing & Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* Typography Utility */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.25;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-deep);
    background: rgba(200, 155, 66, 0.12);
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(200, 155, 66, 0.3);
    margin-bottom: 14px;
}

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

/* Card & Panel Component */
.card-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.card-panel:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

/* Buttons Component */
.btn-primary, .btn-secondary, .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--gold-gradient);
    color: #0F172A;
    box-shadow: 0 6px 20px rgba(200, 155, 66, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 155, 66, 0.55);
    background: linear-gradient(135deg, #EAD07D, #C89B42);
}

.btn-secondary {
    background: #0F172A;
    color: #FFFFFF;
    border: 1px solid #0F172A;
}

.btn-secondary:hover {
    background: var(--gold-primary);
    color: #0F172A;
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.btn-action {
    background: var(--blue-action);
    color: #FFFFFF;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 500;
}

.btn-action:hover {
    background: #0070cc;
    box-shadow: 0 4px 15px rgba(0, 138, 255, 0.35);
}

.w-100 { width: 100%; }

/* ==========================================================================
   HEADER / NAVBAR (Rich Petrol-Teal & Gold Luxury Bar)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #0B2D35 0%, #0E3842 50%, #144D5B 100%);
    border-bottom: 2px solid var(--gold-primary);
    box-shadow: 0 8px 30px rgba(11, 45, 53, 0.45);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 6px 0;
    background: rgba(11, 45, 53, 0.98);
    box-shadow: 0 12px 35px rgba(11, 45, 53, 0.65);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.03);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-light);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.blog-badge {
    background: rgba(200, 155, 66, 0.2);
    padding: 8px 18px;
    border-radius: 25px;
    border: 1px solid var(--gold-primary);
    color: #FEE180 !important;
    font-weight: 700;
}

.blog-badge::after { display: none; }

.nav-cta {
    padding: 12px 24px;
    font-size: 0.9rem;
    background: var(--gold-gradient);
    color: #0B2D35 !important;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================================================
   HERO SLIDER (Exact Banner Model, 100% Brightness & Clean Controls)
   ========================================================================== */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 580px;
    margin-top: 85px;
    overflow: hidden;
    background: #0F172A;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-bg::before {
    display: none;
}

.img-slider-mobile {
    display: none !important;
}
.img-slider-desktop {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 6s ease-out;
}
.slide.active .img-slider-desktop,
.slide.active .img-slider-mobile {
    transform: scale(1.02);
}

.slide-content {
    display: none;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    right: 6%;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(15, 23, 42, 0.9);
    padding: 8px 18px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(8px);
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1E293B;
    color: var(--gold-light);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid var(--border-gold);
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--gold-primary);
    color: #0F172A;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gold-light);
    width: 26px;
    border-radius: 10px;
}

/* ==========================================================================
   PERMANEÇA CONECTADO À GRAÇA DE DEUS (Rich Layered Petrol Gradient + Gold)
   ========================================================================== */
.connected-section {
    padding: 95px 0;
    background: linear-gradient(180deg, #0B2D35 0%, #0E3842 50%, #144D5B 100%);
    border-top: 2px solid var(--gold-primary);
    border-bottom: 2px solid var(--gold-primary);
    color: var(--text-white);
    position: relative;
}

.connected-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.connected-text h2.main-title {
    font-size: 2.8rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.connected-text h3.sub-title {
    font-size: 1.3rem;
    font-weight: 400;
    color: #E2E8F0;
    line-height: 1.6;
}

.connected-form-card {
    background: linear-gradient(145deg, #144D5B 0%, #0B2D35 100%);
    padding: 42px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gold-primary);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
}

.connected-form .form-group {
    margin-bottom: 18px;
}

.connected-form input {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid #334155;
    background: #0F172A;
    color: var(--text-white);
    font-size: 0.95rem;
}

.connected-form input:focus {
    outline: none;
    border-color: var(--gold-light);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: #CBD5E1;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    cursor: pointer;
}

/* ==========================================================================
   VITRINE DE LIVROS & PRODUTOS RECENTES (Soften white, rich petrol accents)
   ========================================================================== */
.books-section {
    padding: 100px 0;
    background-color: var(--bg-section-alt);
    border-bottom: 1px solid rgba(20, 77, 91, 0.15);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.6rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.book-card {
    padding: 26px;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border: 1px solid rgba(20, 77, 91, 0.18);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.book-card:hover {
    box-shadow: 0 18px 40px rgba(11, 45, 53, 0.2);
    transform: translateY(-8px);
    border-color: var(--gold-primary);
}

.book-image-wrapper {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #F4F7F8 0%, #E8EEF1 100%);
    border-radius: var(--radius-md);
    padding: 16px;
    overflow: hidden;
    border: 1px solid rgba(20, 77, 91, 0.08);
}

.sale-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #EF4444;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 5;
}

.book-img {
    max-height: 100%;
    max-width: 90%;
    object-fit: contain;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.18));
    transition: var(--transition);
}

.book-card:hover .book-img {
    transform: scale(1.06);
}

.book-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.book-category {
    font-size: 0.8rem;
    color: var(--gold-deep);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.book-info h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text-main);
    line-height: 1.4;
}

.book-price-box {
    margin-bottom: 20px;
    background: #F8F9FA;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
}

.original-price {
    font-size: 0.9rem;
    color: #94A3B8;
    text-decoration: line-through;
    margin-right: 8px;
}

.sale-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0F172A;
}

.installments-badge {
    display: block;
    font-size: 0.85rem;
    color: #475569;
    margin: 4px 0;
}

.pix-offer {
    display: inline-block;
    background: rgba(34, 197, 94, 0.15);
    color: #16A34A;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 4px;
    margin-top: 6px;
}

/* ==========================================================================
   QUEM É STÊNIO MENDES RIOS? (Softened background, Gold & Petrol accents)
   ========================================================================== */
.about-section {
    padding: 100px 0;
    background: var(--bg-main);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    color: var(--text-main);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--gold-primary);
}

.about-image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   MÍDIA / YOUTUBE SECTION (Rich Petrol & Gold Box)
   ========================================================================== */
.media-section {
    padding: 90px 0;
    background: var(--bg-section-alt);
}

.media-header-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #0B2D35 0%, #144D5B 100%);
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gold-primary);
    box-shadow: 0 15px 40px rgba(11, 45, 53, 0.35);
    color: var(--text-white);
}

.btn-youtube {
    display: inline-flex;
    align-items: center;
    background: #FF0000;
    color: #FFFFFF !important;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
    transition: var(--transition);
    border: 2px solid #FF3333;
}

.btn-youtube:hover {
    background: #CC0000;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 35px rgba(255, 0, 0, 0.6);
}

.media-pastor-display {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid #FF2222;
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.35), 0 0 0 1px rgba(200, 155, 66, 0.4);
    background: #0F172A;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.youtube-backdrop {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: linear-gradient(135deg, #FF0000 0%, #B30000 100%);
    padding: 8px 18px;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
    z-index: 5;
    border: 1px solid #FF6666;
    pointer-events: none;
}

.yt-logo-glow {
    font-size: 0.95rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pastor-yt-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-pastor-display:hover .pastor-yt-img {
    transform: scale(1.05);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.video-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #000;
    aspect-ratio: 16/9;
}

.video-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   ORAÇÃO & DOAÇÃO
   ========================================================================== */
.prayer-donate-section {
    padding: 100px 0;
    background: var(--bg-main);
}

.pd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.prayer-box, .donate-box {
    background: #FFFFFF;
    padding: 44px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(20, 77, 91, 0.18);
    box-shadow: var(--shadow-md);
}

.prayer-box h3, .donate-box h3 {
    font-size: 2rem;
    margin-bottom: 14px;
    color: var(--text-main);
}

.prayer-box p, .donate-box p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pix-container {
    background: #FFFFFF;
    padding: 24px;
    border-radius: var(--radius-md);
    border: 2px dashed var(--gold-primary);
    text-align: center;
    margin-top: 20px;
}

.pix-container input {
    width: 100%;
    padding: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px solid #CBD5E1;
    border-radius: 6px;
    margin-bottom: 14px;
    color: var(--text-main);
}

.btn-copy {
    background: var(--gold-primary);
    color: #0F172A;
    padding: 12px 24px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-copy:hover {
    background: var(--gold-light);
}

.copy-alert {
    display: block;
    color: #16A34A;
    font-weight: 600;
    margin-top: 10px;
}

/* ==========================================================================
   FOOTER (Exact layout from Blog)
   ========================================================================== */
.footer {
    background: #0F172A;
    border-top: 4px solid var(--gold-primary);
    padding: 70px 0 30px;
    color: var(--text-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo img {
    max-width: 380px;
    height: auto;
    margin-bottom: 20px;
}

.footer-quote {
    font-family: var(--font-serif);
    font-style: italic;
    color: #CBD5E1;
    font-size: 1.05rem;
    line-height: 1.6;
}

.footer-col h4 {
    color: var(--gold-light);
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: #CBD5E1;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold-light);
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    color: #94A3B8;
    font-size: 0.9rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 992px) {
    .connected-grid, .about-grid, .media-header-grid, .pd-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Controle Global contra Estouro Horizontal de Imagens e Layout no Mobile */
    html, body {
        max-width: 100vw;
        overflow-x: hidden !important;
    }
    .container {
        padding: 0 16px !important;
        max-width: 100% !important;
    }
    img, video, iframe {
        max-width: 100% !important;
        height: auto;
        box-sizing: border-box;
    }

    /* Alternar do Slider Desktop para o Slider Mobile Especial */
    .img-slider-desktop {
        display: none !important;
    }
    .img-slider-mobile {
        display: block !important;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        transition: transform 6s ease-out;
    }

    /* Navbar no Mobile - Executive Dark Glassmorphism & Animated Menu */
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background: var(--gold-light);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background: var(--gold-light);
    }

    .nav-menu {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background: linear-gradient(180deg, #0B2D35 0%, #0F3B47 60%, #082127 100%) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        padding: 30px 20px 50px 20px !important;
        gap: 16px !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6) !important;
        transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        z-index: 1000 !important;
        overflow-y: auto !important;
        border-left: 1px solid rgba(200, 155, 66, 0.3);
    }
    .nav-menu.active {
        left: 0 !important;
    }
    .nav-menu .nav-link {
        color: #FFFFFF !important;
        font-size: 1.15rem !important;
        font-weight: 600 !important;
        padding: 16px 22px !important;
        border-radius: 12px !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        background: rgba(255, 255, 255, 0.06) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
        text-decoration: none !important;
        letter-spacing: 0.5px;
    }
    .nav-menu .nav-link::after {
        display: none !important; /* Remove barra inferior do desktop no mobile */
    }
    .nav-menu .nav-link:hover, .nav-menu .nav-link:active, .nav-menu .nav-link.active {
        background: linear-gradient(135deg, rgba(200, 155, 66, 0.35) 0%, rgba(212, 175, 55, 0.15) 100%) !important;
        color: #FEE180 !important;
        border-color: var(--gold-light) !important;
        transform: translateX(8px) !important;
        box-shadow: 0 6px 18px rgba(200, 155, 66, 0.3) !important;
    }
    .nav-menu .blog-badge {
        background: linear-gradient(135deg, #D4AF37 0%, #C89B42 100%) !important;
        color: #0B2D35 !important;
        font-weight: 700 !important;
        border: none !important;
        box-shadow: 0 8px 25px rgba(200, 155, 66, 0.45) !important;
        margin-top: 12px !important;
        justify-content: center !important;
    }
    .nav-menu .blog-badge:active {
        transform: scale(0.98) !important;
    }
    .logo img {
        height: 48px !important;
    }
    .nav-cta {
        display: none !important;
    }
    
    /* Hero e Controles do Slider no Mobile */
    .hero-section {
        height: 75vh !important;
        min-height: 480px !important;
        margin-top: 75px !important;
    }
    .slider-controls {
        bottom: 16px !important;
        right: 50% !important;
        transform: translateX(50%) !important;
        padding: 6px 14px !important;
        gap: 12px !important;
    }
    .slider-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 1.1rem !important;
    }

    /* Cards da Vitrine de Livros no Mobile */
    .books-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .book-card {
        padding: 18px !important;
        max-width: 100% !important;
    }
    .book-image-wrapper {
        height: 260px !important;
        padding: 12px !important;
    }
    .book-img {
        max-width: 85% !important;
        max-height: 230px !important;
        height: auto !important;
        object-fit: contain !important;
    }
    .sale-price {
        font-size: 1.25rem !important;
    }

    /* Seções e Caixas que tinham Padding ou Imagem Muito Grande */
    .section-header h2, .connected-text h2.main-title, .about-text h2 {
        font-size: 1.85rem !important;
        line-height: 1.3 !important;
    }
    .connected-form-card, .media-header-grid, .prayer-box, .donate-box {
        padding: 24px 16px !important;
        max-width: 100% !important;
    }
    .connected-grid, .about-grid, .media-header-grid, .pd-grid {
        gap: 30px !important;
    }
    .about-image-frame, .media-pastor-display {
        max-width: 100% !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 480px) {
    .section-header h2, .connected-text h2.main-title, .about-text h2 {
        font-size: 1.6rem !important;
    }
    .book-info h3 {
        font-size: 1.1rem !important;
    }
    .hero-section {
        height: 70vh !important;
        min-height: 440px !important;
    }
}

