/* ============================================================
   Landing Page — Pastor Miguel Arroyo
   ============================================================ */

/* Variables globales */
:root {
    --gold: #d4af37;
    --dark-bg: #0b0b0b;
    --text-light: #f8f9fa;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

.text-gold {
    color: var(--gold);
}

.bg-gold {
    background-color: var(--gold);
}

/* Typography */
h1,
.display-1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.script-font {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 1.5rem;
    display: block;
    margin-bottom: -15px;
}

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)),
        url('../images/miguel_arroyo_c.jpg') no-repeat center center;
    background-size: cover;
}

.pastor-img {
    border-bottom: 5px solid var(--gold);
    filter: grayscale(20%);
    transition: transform 0.3s ease;
}

.pastor-img:hover {
    transform: scale(1.02);
}

/* ── Topics Section ─────────────────────────────────────────── */
.topic-pill {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    padding: 10px 20px;
    border-radius: 50px;
    margin: 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.topic-pill:hover {
    background: var(--gold);
    color: #000;
}

/* ── Info Bar ───────────────────────────────────────────────── */
.info-bar {
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
}

/* ── CTA Button ─────────────────────────────────────────────── */
.btn-cta {
    background-color: var(--gold);
    color: #000;
    font-weight: bold;
    padding: 15px 40px;
    border-radius: 0;
    text-transform: uppercase;
    transition: 0.4s;
}

.btn-cta:hover {
    background-color: #fff;
    transform: translateY(-3px);
}

/* ── Curriculum Section ─────────────────────────────────────── */
.section-title-line {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-title-line::before,
.section-title-line::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.justificacion-block {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--gold);
    padding: 1.5rem 2rem;
    border-radius: 0 8px 8px 0;
}

.modulo-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.modulo-card:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.modulo-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1.5rem 2rem;
}

.modulo-header h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 0;
}

.modulo-body {
    padding: 1.5rem 2rem;
}

.leccion-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.leccion-item:last-child {
    border-bottom: none;
}

.leccion-num {
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.leccion-content strong {
    display: block;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.92rem;
}

.leccion-content span {
    color: #aaa;
    font-size: 0.82rem;
}

.nota-box {
    background: rgba(212, 175, 55, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    padding: 2rem 2.5rem;
}

.nota-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.92rem;
    color: #ccc;
}

.nota-item:last-child {
    margin-bottom: 0;
}

.nota-item i {
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

/* ── Footer ─────────────────────────────────────────────────── */
footer {
    border-top: 1px solid #333;
}
