/* ============================================
   SACRAMENTOS - PÁGINA DEDICADA
   ============================================ */

/* ============================================
   HERO SECTION
   ============================================ */
.sacramentos-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.sacramentos-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/batismo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.sacramentos-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(201, 168, 96, 0.1) 0%, transparent 60%),
        linear-gradient(180deg, rgba(44, 36, 32, 0.82) 0%, rgba(44, 36, 32, 0.7) 40%, rgba(44, 36, 32, 0.85) 100%);
}

.sacramentos-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(44, 36, 32, 0.4) 100%);
    z-index: 2;
}

.sacramentos-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 60px 20px;
}

.sacramentos-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 168, 96, 0.2);
    border: 1px solid rgba(201, 168, 96, 0.4);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.sacramentos-hero-badge i {
    font-size: 18px;
    color: var(--gold);
}

.sacramentos-hero-badge span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-light);
}

.sacramentos-hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.1;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.sacramentos-hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.9;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   INTRO SECTION
   ============================================ */
.sacramentos-intro {
    padding: 64px 0 40px;
    background: var(--cream);
}

.sacramentos-intro-text {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.sacramentos-intro-text p {
    font-size: 17px;
    color: var(--dark-soft);
    line-height: 1.8;
    margin-bottom: 16px;
}

.sacramentos-nav-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 40px;
    padding-bottom: 8px;
}

.sacramento-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--primary-pale);
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.sacramento-pill i {
    font-size: 15px;
    color: var(--gold);
}

.sacramento-pill:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.sacramento-pill:hover i {
    color: var(--gold-light);
}

/* ============================================
   SACRAMENTOS SECTIONS
   ============================================ */
.sacramentos-section {
    padding: 80px 0;
}

.sacramentos-section:nth-child(even) {
    background: var(--cream-dark);
}

.sacramentos-section:nth-child(odd) {
    background: var(--cream);
}

.sacramento-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.sacramento-block.reverse {
    direction: rtl;
}

.sacramento-block.reverse > * {
    direction: ltr;
}

.sacramento-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sacramento-photo-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.sacramento-photo-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    border: 3px solid rgba(201, 168, 96, 0.35);
    pointer-events: none;
}

.sacramento-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.sacramento-photo-wrapper:hover .sacramento-photo {
    transform: scale(1.04);
}

.sacramento-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sacramento-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 96, 0.12);
    border: 1px solid rgba(201, 168, 96, 0.3);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    width: fit-content;
}

.sacramento-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
}

.sacramento-description {
    font-size: 16px;
    color: var(--dark-soft);
    line-height: 1.8;
}

.sacramento-requirements {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--gold);
}

.sacramento-requirements h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sacramento-requirements ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sacramento-requirements li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--dark-soft);
    line-height: 1.6;
}

.sacramento-requirements li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 7px;
}

.sacramento-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    width: fit-content;
}

.sacramento-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

/* ============================================
   CTA FINAL
   ============================================ */
.sacramentos-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.sacramentos-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 168, 96, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(201, 168, 96, 0.1) 0%, transparent 60%);
}

.sacramentos-cta-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.sacramentos-cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.sacramentos-cta-content p {
    font-size: 17px;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.sacramentos-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-dark);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.5);
    transition: var(--transition-base);
}

.btn-cta-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-3px);
    color: var(--white);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .sacramento-block,
    .sacramento-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 32px;
    }

    .sacramento-photo-wrapper {
        aspect-ratio: 16 / 9;
    }

    .sacramentos-nav-pills {
        gap: 8px;
    }

    .sacramento-pill {
        font-size: 13px;
        padding: 8px 16px;
    }
}

@media (max-width: 600px) {
    .sacramentos-section {
        padding: 56px 0;
    }

    .sacramentos-intro {
        padding: 48px 0 32px;
    }

    .sacramentos-cta-section {
        padding: 56px 0;
    }

    .sacramentos-cta-btns {
        flex-direction: column;
        align-items: center;
    }
}
