        :root {
            --primary: #06153a;
            --gold: #FFD700;
            --bg: #f8fafc;
            --card-bg: #ffffff;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --border: #e2e8f0;
            --radius: #8a95a5;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        
        body { 
            font-family: 'Inter', sans-serif; 
            background: #f8fafc;
            color: var(--text-main); 
            line-height: 1.6;
            padding-top: 0px; /* Abre espaço perfeito para a nav fixa */
        }
		
@keyframes twinkle {
  0%,100% { opacity: 0.2; transform: scale(1); }
  50%      { opacity: 0.9; transform: scale(1.3); }
}

.hero-emoji-row {
  display: flex; gap: 8px; justify-content: center;
  font-size: 7rem; margin-bottom: 1px;
  animation: bounceRow 2s ease-in-out infinite;
}
@keyframes bounceRow {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.hero-sub {
  font-size: 1.05rem; font-weight: 600;
  color: rgba(255,255,255,0.72);
  max-width: 520px; line-height: 1.7;
  margin-bottom: 32px;
}

/* Chips de destaque */
.hero-chips {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 40px;
}
.hero-chip {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 30px; padding: 8px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 1.0rem; color: white;
  display: flex; align-items: center; gap: 6px;
  backdrop-filter: blur(6px);
}

/* Ondinha */
.hero-wave {
  position: absolute; bottom: -2px; left: 0; width: 100%; height: 70px; z-index: 3;
}

        /* Header Premium */
        .sermao-header {
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(135deg, #0b225a 0%, #03102e 100%);
            color: #f7e328;
            position: relative;
            overflow: hidden;
            margin-bottom: 40px;

        }

        .sermao-header h1 {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 800;
			font-color: #f7e328;
            letter-spacing: -1px;
            line-height: 1.1;
            margin-bottom: 15px;
            background: linear-gradient(to right, #ffffff, #2ddbeb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .sermao-header p {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: #f7e328;
            max-width: 700px;
            margin: 0 auto 30px;
            font-weight: 400;
        }

        /* Caixa de Pesquisa em Tempo Real */
        .search-wrapper {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
            z-index: 5;
        }

        .search-wrapper i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 1.2rem;
        }

        .search-input {
            width: 100%;
            padding: 16px 20px 16px 55px;
            border: 2px solid transparent;
            border-radius: 50px;
            background: #ffffff;
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-main);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            outline: none;
        }

        .search-input:focus {
            border-color: var(--gold);
            box-shadow: 0 10px 30px rgba(255,215,0,0.2);
        }

        /* Main Core */
        .main-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px 60px;
        }

        /* Grid de Categorias */
        .categories-grid {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        /* Sanfonas Modernas (<details>) */
        details {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.02);
            transition: all 0.3s ease;
        }

        details[open] {
            box-shadow: 0 10px 20px rgba(6,21,58,0.05);
            border-color: #cbd5e1;
        }

summary {
            list-style: none;
            padding: 22px 25px;
            font-family: 'Poppins', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            transition: all 0.3s ease;
            
            /* IMAGEM DE FUNDO COM 50% DE TRANSPARÊNCIA */
            /* O 0.5 no final do rgba representa os 50%. Se quiser mais claro, mude para 0.7. Se quiser mais forte, 0.3 */
            background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url('imagens/fundo-igreja.jpg');
            background-size: cover; /* Faz a imagem preencher todo o espaço */
            background-position: center; /* Centraliza a imagem */
            background-repeat: no-repeat;
        }

        summary:hover {
            /* No hover, deixamos a "película" um pouco mais opaca (0.8 = 80%) para dar o efeito de clique/seleção */
            background-image: linear-gradient(rgba(248, 250, 252, 0.8), rgba(248, 250, 252, 0.8)), url('imagens/fundo-igreja.jpg');
        }

        summary::-webkit-details-marker { display: none; }

        summary::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 1rem;
            color: var(--text-muted);
            transition: transform 0.3s ease;
        }

        details[open] summary::after {
            transform: rotate(180deg);
            color: var(--primary);
        }

        /* Grid Interno de Links dos Sermões */
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 12px;
            padding: 25px;
            background: #fafafa;
            border-top: 1px solid var(--border);
        }

        .sermao-link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 18px;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            text-decoration: none;
            color: var(--text-main);
            font-size: 0.98rem;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .sermao-link i {
            color: #c0392b;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .sermao-link:hover {
            border-color: #94a3b8;
            background: var(--primary);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }

        .sermao-link:hover i {
            color: var(--gold);
        }

        /* Link Direto para a Página da Categoria */
        .category-view-all {
            grid-column: 1 / -1;
            text-align: right;
            padding-top: 10px;
        }

        .category-view-all a {
            color: #2980b9;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .category-view-all a:hover {
            text-decoration: underline;
            color: var(--primary);
        }
		
        /* Responsividade */
        @media (max-width: 640px) {
            summary { padding: 18px 20px; font-size: 1.15rem; }
            .links-grid { padding: 15px; grid-template-columns: 1fr; }
            .sermao-link { padding: 12px 15px; }
        }
		
		        /* Botões e Banner */
        .action-area { max-width: 900px; margin: 0 auto 50px; }
        .action-buttons { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-bottom: 30px; }
        .btn { padding: 15px; border-radius: 50px; border: none; font-weight: 800; text-transform: uppercase; cursor: pointer; text-decoration: none; text-align: center; color: #fff; transition: 0.3s; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; }
        .btn-outro { background: var(--primary); }