/* Estilos personalizados para County Line Church */

/* === TIPOGRAFÍA === */
body {
    color: black;
    font-size: 1rem; /* 16px base */
}

h2 {
    color: #000;
    font-family: Montserrat;
    font-size: clamp(2rem, 4vw + 0.5rem, 3.375rem); /* Mobile: 32px | Desktop: 54px */
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

h3 {
    color: #000;
    font-family: Montserrat;
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem); /* Mobile: 20px | Desktop: 28px */
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 0;
}

h4 {
    font-size: clamp(0.875rem, 1.5vw, 1rem); /* Mobile: 14px | Desktop: 16px */
}

h5 {
    font-size: clamp(0.875rem, 1.5vw + 0.125rem, 1.125rem); /* Mobile: 14px | Desktop: 18px */
}

.text-yellow {
    color: #F1E632;
}

/* === NAVEGACIÓN === */
.navbar {
    position: relative;
    z-index: 1001;
    padding: 0;
}

.bg--white {
    background-color: white;
}

header.header-hover-transparent {
    transition: background-color 0.3s ease;
    position: fixed;
    width: 100%;
}

body:has(.dropdown-hover:hover) header.header-hover-transparent {
    background-color: transparent !important;
}

.navbar-brand img {
    transition: opacity 0.3s ease;
}

.navbar-brand:hover img {
    opacity: 0.8;
}

.nav-link {
    font-weight: 500;
    padding: 0.75rem 1.25rem !important;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.875rem; /* 14px */
    letter-spacing: 0.03125rem; /* 0.5px */
    cursor: pointer;
    position: relative;
    border-radius: 50px;
    color: black;
}

.nav-link:hover,
.dropdown-hover:hover > .nav-link {
    color: #fff !important;
    background-color: #000;
}

.nav-link.active {
    color: var(--bs-primary) !important;
    font-weight: 600;
}

/* Dropdown toggle icon */
.dropdown-toggle::after {
    display: none;
}

.dropdown-icon {
    display: inline-block;
    margin-left: 0em;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.dropdown-hover:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* === DROPDOWN HOVER SYSTEM === */
.nav-item {
    padding: 20px 0px;
}

.dropdown-hover {
    position: static;
    padding: 20px 0px;
}

.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding-top: 0;
}

.dropdown-hover:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

/* Mega Dropdown Container */
.mega-dropdown-container {
    max-width: 86.5rem;
    width: 100%;
}

.mega-dropdown-content {
    display: grid;
    grid-template-columns: 1.75fr 1fr 1fr;
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    background-color: #f8f9fa;
    border-radius: 24px;
    overflow: hidden;
}

/* Columnas del dropdown */
.mega-dropdown-column {
    padding: 2rem;
}

.mega-dropdown-column:first-child {
    padding: 2.5rem;
}

/* Columnas con imágenes */
.mega-dropdown-image {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.mega-dropdown-image img {
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    object-fit: cover;
    border-radius: 10px;
    margin: 1rem;
}

/* Headers y items */
.dropdown-header {
    font-weight: 600;
    font-size: 0.75rem; /* 12px */
    text-transform: uppercase;
    letter-spacing: 0.0625rem; /* 1px */
    color: #6c757d;
    padding: 0 0 1rem 0;
    margin-bottom: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 0;
    font-size: 0.9375rem; /* 15px */
    font-weight: 500;
    color: #000;
    transition: color 0.3s ease;
    border: none;
    background: transparent;
    display: inline-block;
    position: relative;
    width: 48%;
}

.dropdown-item::after {
    content: "→";
    margin-left: 0.5rem; /* 8px */
    opacity: 0;
    transition: opacity 0.3s ease, margin-left 0.3s ease;
    font-size: 1.125rem; /* 18px */
    font-weight: 600;
}

.dropdown-item:hover {
    background-color: transparent;
    color: var(--bs-primary);
}

.dropdown-item:hover::after {
    opacity: 1;
    margin-left: 15px;
}

/* Backdrop con blur */
.dropdown-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
    pointer-events: none;
}

body:has(.dropdown-hover:hover) .dropdown-backdrop {
    opacity: 1;
    visibility: visible;
}

/* === ENLACES PENDIENTES === */
 
 

/* === BOTONES === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.875rem, 1.5vw, 1rem); /* Mobile: 14px | Desktop: 16px */
    text-transform: uppercase;
    letter-spacing: 0.03125rem;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    padding: 0;
}

.btn * {
    transition: all 0.3s ease !important;
}

.btn span.btn-text {
    padding: 10px 2rem;
    border-radius: 50px;
}

/* Botón pequeño */
.btn.btn-small:hover span.btn-text {
    border-radius: 50px 0 0 50px;
}

.btn.btn-small span.btn-text {
    padding: 0.4375rem 1.4rem;
    border-radius: 50px;
    font-size: clamp(0.75rem, 1.25vw + 0.125rem, 0.875rem); /* Mobile: 12px | Desktop: 14px */
}

.btn.btn-small .arrow-circle {
    width: 39px;
    height: 39px;
}

/* Botón negro con flecha */
.btn-black-circle > span.btn-text {
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
}

.btn-black-circle .arrow-circle {
    width: 48px;
    height: 48px;
    background-color: #000;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    margin-left: 0px;
}

.btn-black-circle:hover .btn-text {
    border-radius: 50px 0px 0px 50px;
    background-color: transparent;
    color: #000;
    border-right: 2px solid transparent;
}

.btn-black-circle:hover .arrow-circle .arrow-icon {
    transform: rotate(45deg);
}

.btn-black-circle:hover .arrow-circle {
    background-color: transparent;
    color: #000;
    border-radius: 0px 50px 50px 0px;
    border-left: 0px solid transparent;
    transform: translateX(-15px);
}

.btn-black-circle .arrow-icon {
    color: #fff;
}

.btn-black-circle:hover .arrow-icon {
    color: #000;
}

/* Botón transparente con borde negro */
.btn-transparent-black-circle > span.btn-text {
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
}

.btn-transparent-black-circle .arrow-circle {
    width: 48px;
    height: 48px;
    background-color: transparent;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    margin-left: 0px;
}

.btn-transparent-black-circle:hover .btn-text {
    border-radius: 50px 0px 0px 50px;
    background-color: #000;
    color: #fff;
    border-right: 2px solid transparent;
}

.btn-transparent-black-circle:hover .arrow-circle .arrow-icon {
    transform: rotate(45deg);
}

.btn-transparent-black-circle:hover .arrow-circle {
    background-color: #000;
    color: #fff;
    border-radius: 0px 50px 50px 0px;
    border-left: 0px solid transparent;
    transform: translateX(-15px);
}

.btn-transparent-black-circle .arrow-icon {
    color: #000;
}

.btn-transparent-black-circle:hover .arrow-icon {
    color: #fff;
}

/* Botón primario */
.btn-primary {
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* === VIDEO HERO === */
.height-100 {
    height: 100vh;
}

.height-80 {
    height: 70vh;
}

.height-70 {
    height: 70vh;
}

video {
    background-color: #000;
    height: auto;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    z-index: -3;
    background-size: cover;
}

.container.video--hero {
    overflow: hidden;
    border-radius: 20px;
    margin-top: 0px;
    height: 100%;
}

.floating--content--hero {
    position: fixed;
    bottom: -135px;
    left: 0;
    right: 0;
    margin: auto;
}

/* === UTILIDADES === */
p.d-flex > b {
    width: 265px;
}

.float-right {
    float: right;
}

/* === FOOTER === */
footer {
    margin-top: auto;
}

/* === RESPONSIVE === */
@media (max-width: 991.98px) {
    .navbar-nav {
        margin-top: 1rem;
    }

    .d-flex {
        margin-top: 1rem;
    }

    .btn-primary {
        width: 100%;
    }

    .mega-dropdown {
        position: relative;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        margin-top: 0.5rem;
    }

    .mega-dropdown-content {
        grid-template-columns: 1fr;
    }

    .mega-dropdown-image {
        display: none;
    }

    .dropdown-backdrop {
        display: none;
    }
}
/* Margin Bottom */
.mb-0 {
    margin-bottom: 0px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-110 {
    margin-bottom: 110px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb-130 {
    margin-bottom: 130px;
}

.mb-140 {
    margin-bottom: 140px;
}

.mb-150 {
    margin-bottom: 150px;
}

.mb-160 {
    margin-bottom: 160px;
}

.mb-170 {
    margin-bottom: 170px;
}

.mb-180 {
    margin-bottom: 180px;
}

.mb-190 {
    margin-bottom: 190px;
}

.mb-200 {
    margin-bottom: 200px;
}

/* Margin Top */
.mt-0 {
    margin-top: 0px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mt-90 {
    margin-top: 90px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.mt-110 {
    margin-top: 110px;
}

.mt-120 {
    margin-top: 120px;
}

.mt-130 {
    margin-top: 130px;
}

.mt-140 {
    margin-top: 140px;
}

.mt-150 {
    margin-top: 150px;
}

.mt-160 {
    margin-top: 160px;
}

.mt-170 {
    margin-top: 170px;
}

.mt-180 {
    margin-top: 180px;
}

.mt-190 {
    margin-top: 190px;
}

.mt-200 {
    margin-top: 200px;
}

/* Padding Bottom */
.pb-0 {
    padding-bottom: 0px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pb-130 {
    padding-bottom: 130px;
}

.pb-140 {
    padding-bottom: 140px;
}

.pb-150 {
    padding-bottom: 150px;
}

.pb-160 {
    padding-bottom: 160px;
}

.pb-170 {
    padding-bottom: 170px;
}

.pb-180 {
    padding-bottom: 180px;
}

.pb-190 {
    padding-bottom: 190px;
}

.pb-200 {
    padding-bottom: 200px;
}

/* Padding Top */
.pt-0 {
    padding-top: 0px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-110 {
    padding-top: 110px;
}

.pt-120 {
    padding-top: 120px;
}

.pt-130 {
    padding-top: 130px;
}

.pt-140 {
    padding-top: 140px;
}

.pt-150 {
    padding-top: 150px;
}

.pt-160 {
    padding-top: 160px;
}

.pt-170 {
    padding-top: 170px;
}

.pt-180 {
    padding-top: 180px;
}

.pt-190 {
    padding-top: 190px;
}

.pt-200 {
    padding-top: 200px;
}
/* Botón amarillo con flecha */
.btn-yellow-circle>span.btn-text {
    background-color: #F1E632;
    color: #000;
    border: 2px solid #F1E632;
}

.btn-yellow-circle .arrow-circle {
    width: 48px;
    height: 48px;
    background-color: #F1E632;
    border: 2px solid #F1E632;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    margin-left: 0px;
}

.btn-yellow-circle:hover .btn-text {
    border-radius: 50px 0px 0px 50px;
    background-color: #fff;
    color: #000;
    border-right: 2px solid transparent;
}

.btn-yellow-circle:hover .arrow-circle .arrow-icon {
    transform: rotate(45deg);
}

.btn-yellow-circle:hover .arrow-circle {
    background-color: #fff;
    color: #000;
    border-radius: 0px 50px 50px 0px;
    border-left: 0px solid transparent;
    transform: translateX(-15px);
}

.btn-yellow-circle .arrow-icon {
    color: #000;
}

.btn-yellow-circle:hover .arrow-icon {
    color: #000;
}
/* Carrusel de eventos */
.carousel--events {
    padding: 30px 0;
    overflow: visible;
}

.carousel--events .pantry-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}

.carousel--events .pantry-item {
    margin: 0;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    padding: 10px;
    width: 40%;
    min-width: 300px;
    flex-shrink: 0;
    height: auto;
}

/* Responsive para el ancho de las cards */
@media (max-width: 768px) {
    .carousel--events .pantry-item {
        width: 85%;
        min-width: 280px;
    }
}

/* Botones de navegación del slider */
.slider-navigation {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #000;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-btn:hover {
    background-color: #000;
    transform: scale(1.05);
}

.slider-btn:hover svg {
    stroke: #fff;
}

.slider-btn svg {
    stroke: #000;
    transition: stroke 0.3s ease;
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #ccc;
}

.slider-btn:disabled:hover {
    background-color: #fff;
    transform: scale(1);
}

.slider-btn:disabled svg {
    stroke: #ccc;
}

/* Tarjeta de despensa */
.carousel--events .pantry-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Imagen con efecto hover */
.carousel--events .pantry-image {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.carousel--events .pantry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.carousel--events .pantry-card:hover .pantry-image img {
    transform: scale(1.02);
}

/* Contenido */
.carousel--events .pantry-content {
    padding: 20px;
}

.carousel--events .pantry-title {
    color: #000;
    font-family: Montserrat, sans-serif;
    font-size: clamp(1rem, 1.5vw + 0.25rem, 1.125rem); /* Mobile: 16px | Desktop: 18px */
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 0.9375rem 0;
    letter-spacing: 0.03125rem;
}

/* Información con iconos */
.carousel--events .pantry-info {
    display: flex;
    flex-direction: column;
    gap: 0.3125rem; /* 5px */
}

.carousel--events .pantry-date,
.carousel--events .pantry-location {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem; /* 8px */
    color: #666;
    font-size: 0.875rem; /* 14px */
    line-height: 1.5;
}

.carousel--events .pantry-date svg,
.carousel--events .pantry-location svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #000;
}

.carousel--events .pantry-date span,
.carousel--events .pantry-location span {
    flex: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel--events .pantry-item {
        flex: 1 1 100%;
        /* una columna en móvil */
        min-width: 100%;
    }
}

.give--animations {
    position: relative;
    border-radius: 24px;
    background: #FBF8F8;
    display: flex;
    padding: 40px;
    padding-bottom: 120px;
    justify-content: space-between
}

.give--animations div {
    height: 100%;
}

.CicleTexture {
    position: relative;
    margin-top: 40px;
    margin-bottom: 50px;
    width: 70%
}

.Give-TitleYellow {
    position: relative;
}

.CicleTexture img,
.Give-TitleYellow img {
    width: 100%
}

.CicleTexture img.Outlineblack {
    position: absolute;
    left: 0;
    top: -10px
}

.give--Outlineblack {
    position: absolute;
    left: 0;
    top: -10px
}

.PicPhone {
    position: absolute;
    width: 33%;
    left: 0;
    right: -50px;
    margin: auto;
    bottom: -50px;
    padding: 60px;
    overflow: hidden;
}

.PicPhone img {
    width: 100%
}

.GA--left-column {
    width: 33%
}

.Home-Give-CircleText {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 20%;
}

.website--url {
    width: 33%;
    display: flex;
    flex-direction: column;
    height: auto !important;
    justify-content: flex-end;
    bottom: -50px;
    position: relative;
}

.website--url div {
    position: relative;
    height: auto !important;
}

.CircleTexture-Outlineblack {
    position: absolute;
    right: 0;
}
@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 90%;
    }
}
 /* Contenedor de campus */
 .campus-list {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
 }

 .campus-list li {
     flex: 1 1 calc(25% - 15px);
     /* 4 columnas con gap */
     min-width: 250px;
     position: relative;
     overflow: visible;
     border-radius: 5px;
     cursor: pointer;
 }

 /* Tarjeta de campus */
 .campus-card {
     position: relative;
     overflow: hidden;
     border-radius: 10px;
     transition: all 0.4s ease;
     border: 3px solid transparent;
 }

 /* Borde amarillo en hover */
 .campus-card:hover {
     border-color: #F1E632;
     box-shadow: 0 8px 24px rgba(241, 230, 50, 0.3);
 }

 /* Imagen de fondo por defecto */
 .campus-image { 
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: opacity 0.4s ease, transform 0.4s ease;
 }

 /* Ocultar imagen hover por defecto */
 .campus-image-hover {
     opacity: 0;
     z-index: 1;
     position: absolute;
 }

 /* Mostrar imagen hover y ocultar default en hover */
 .campus-card:hover .campus-image-hover {
     opacity: 1;
     transform: scale(1.02);
 }

 .campus-card:hover .campus-image-default {
     opacity: 0;
 }

 /* Overlay oscuro */
 .campus-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.1);
     display: flex;
     flex-direction: column;
     justify-content: end;
     align-items: baseline;
     padding: 20px;
     text-align: left;
     z-index: 2;
 }
.ddd{
    cursor: default !important;
}
 /* Etiqueta superior */
 .campus-label {
     position: absolute;
     top: 1.25rem; /* 20px */
     left: 1.25rem; /* 20px */
     background: rgba(0, 0, 0, 0.30);
     backdrop-filter: blur(10px);
     color: #F1E632;
     padding: 0.375rem 0.75rem; /* 6px 12px */
     border-radius: 0.75rem; /* 12px */
     font-size: 0.6875rem; /* 11px */
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.03125rem; /* 0.5px */
 }

 /* Título del campus */
 .campus-title {
     color: #fff;
     font-family: Montserrat, sans-serif;
     font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2rem); /* Mobile: 28px | Desktop: 32px */
     font-weight: 700;
     text-transform: uppercase;
     text-align: left;
     margin: 0;
     text-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
     line-height: 1.2;
     transition: opacity 0.5s ease, transform 0.5s ease;
     transform: translateY(3.75rem);
 }
.wow{
    visibility: hidden;
}
 /* Información del campus (horario y dirección) */
 .campus-info {
     opacity: 0;
     transform: translateY(20px);
     transition: opacity 0.6s ease, transform 0.5s ease;
     margin-top: 12px;
 }

 /* Mostrar información en hover */
 .campus-card:hover .campus-info {
     opacity: 1;
     transform: translateY(0);
 }

 /* Ocultar título en hover (opcional, si quieres que desaparezca) */
 .campus-card:hover .campus-title { 
     transform: translateY(0px);
 }

 /* Tiempo del servicio */
 .campus-time {
     color: #fff;
     font-family: Montserrat, sans-serif;
     font-size: clamp(0.875rem, 1.5vw + 0.125rem, 1rem); /* Mobile: 14px | Desktop: 16px */
     font-weight: 600;
     margin: 0 0 0.5rem 0;
     text-shadow: 0.0625rem 0.0625rem 0.1875rem rgba(0, 0, 0, 0.5);
 }

 /* Dirección del campus */
 .campus-address {
     color: #fff;
     font-family: Montserrat, sans-serif;
     font-size: clamp(0.75rem, 1.25vw + 0.125rem, 0.875rem); /* Mobile: 12px | Desktop: 14px */
     font-weight: 400;
     margin: 0;
     display: flex;
     align-items: flex-start;
     gap: 0.375rem;
     text-shadow: 0.0625rem 0.0625rem 0.1875rem rgba(0, 0, 0, 0.5);
 }

 .campus-address svg {
     flex-shrink: 0;
     margin-top: 0.125rem; /* 2px */
 }

 /* Responsive */
 @media (max-width: 1024px) {
     .campus-list li {
         flex: 1 1 calc(50% - 10px);
         /* 2 columnas en tablet */
     }
 }

 @media (max-width: 768px) {
     .campus-list li {
         flex: 1 1 100%;
         /* 1 columna en móvil */
         min-width: 100%;
     }

     .campus-title {
         font-size: 28px;
     }
 }




















 /* ====== Base ====== */
 .cards {
     padding: 24px;
     background: #0b0f14;
 }

 .cards__wrap {
     max-width: 1600px;
     margin: 0 auto;
     display: flex;
     gap: 20px;
     align-items: stretch;
 }

 /* Columnas */
 .col {
     display: flex;
     flex-direction: column;
     gap: 20px;
     flex: 1;
     min-width: 0;
 }

 /* Fila inferior izquierda (2 tarjetas) */
 .row--2 {
     display: flex;
     gap: 20px;
     margin: 0;
 }

 .row--2 .card {
     flex: 1;
     min-width: 0;
 }

 /* ====== Card ====== */
 .card {
     position: relative;
     display: flex;
     text-decoration: none;
     color: #fff;
     border-radius: 10px;
     overflow: hidden;
     background: #1a1a1a;
     transition: transform .2s ease;
 }

 .card img{
    transition: transform .2s ease;
 }
 .card:hover img{
     transform: scale(1.02);
 }

 /* Tamaños de cards */
 .card--lg {
     min-height: 420px;
 }

 .card--sm {
     min-height: 200px;
 }

 /* Imagen dentro del card */
 .card__img {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     z-index: 0;
 }
.card.card--sm .card__content{

    justify-content: flex-end;
    }
 /* Contenido del card */
 .card__content {
     position: relative;
     z-index: 2;
     padding: 32px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     width: 100%;
     height: 100%;
 }

 /* Texto superior pequeño */
 .card__kicker {
     font-size: 0.8125rem; /* 13px */
     letter-spacing: 0.1em;
     text-transform: uppercase;
     opacity: 0.9;
     margin-bottom: 0.75rem; /* 12px */
     color: #F1E632;
     font-weight: 600;
 }

 /* Título grande */
 .card__title {
     font-size: clamp(2rem, 3.5vw + 0.5rem, 3rem); /* Mobile: 32px | Desktop: 48px */
     line-height: 0.95;
     margin: 0 0 1rem 0;
     font-weight: 800;
     text-transform: uppercase;
     color: white;
 }

 /* Título pequeño */
 .card__title-sm {
     font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2rem); /* Mobile: 24px | Desktop: 32px */
     line-height: 1;
     margin: 0 0 0.75rem 0;
     font-weight: 800;
     color: white;
     text-transform: uppercase;
 }

 /* Texto descriptivo */
 .card__text {
     margin: 0;
     font-size: clamp(0.875rem, 1.5vw + 0.25rem, 1.0625rem); /* Mobile: 14px | Desktop: 17px */
     opacity: 0.95;
     line-height: 1.4;
 }

 /* Botón CTA */
 .card__cta {
     margin-top: 1.125rem; /* 18px */
     display: inline-flex;
     gap: 0.625rem; /* 10px */
     align-items: center;
     background: #F1E632;
     color: #0b0f14;
     font-weight: 700;
     font-size: 0.875rem; /* 14px */
     text-transform: uppercase;
     letter-spacing: 0.05em;
     border-radius: 0.625rem; /* 10px */
     padding: 0.75rem 1.125rem; /* 12px 18px */
     width: fit-content;
 }

 .card__cta .arrow {
     display: inline-flex;
     width: 24px;
     height: 24px;
     border-radius: 10px;
     align-items: center;
     justify-content: center;
     background: rgba(0, 0, 0, .15);
     font-size: 18px;
 }

 /* ====== Variantes ====== */
 .card--yellow {
     background: #F1E632;;
     color: #0b0f14;
 }

 .card--yellow .card__content {
     justify-content: center;
 }

 .card--yellow .card__text {
     opacity: .85;
 }

 .card--yellow strong {
     color: #0b0f14;
 }

 .card--yes .card__content {
     justify-content: center;
 }

 /* Para cards amarillas con imagen, oscurecer un poco la imagen */
 .card--yellow .card__img {
     opacity: .3;
 }

 /* ====== Responsive ====== */
 @media (max-width: 980px) {
     .cards__wrap {
         flex-direction: column;
     }

     .card--lg {
         min-height: 360px;
     }

     .card--sm {
         min-height: 180px;
     }
 }

 @media (max-width: 620px) {
     .row--2 {
         flex-direction: column;
     }

     .card__title {
         font-size: 36px;
     }

     .card__title-sm {
         font-size: 26px;
     }

     .card__content {
         padding: 24px;
     }
 }

/* ====== SECTIONS ====== */
/* Section Modifier */
 
.text-right{
    text-align: right;
}
/* Recent Sermon Card */
.card--recent-sermon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 30px;
    margin-top: 260px;
    background: #f2f2f2;
    padding: 80px 40px;
    border-radius: 24px;
}

.card--recent-sermon img {
    width: 55%;
    border-radius: 5px;
    height: 50vh;
    object-fit: cover;
}

.img--recent-sermon {
    width: 55%;
    border-radius: 5px;
    height: 50vh;
    object-fit: cover;
}

/* Font Sizes */
h4 {
    font-size: clamp(0.875rem, 1.5vw, 1rem); /* Mobile: 14px | Desktop: 16px */
}

h2.fz-48 {
    font-size: clamp(1.75rem, 3.5vw + 0.5rem, 3rem); /* Mobile: 28px | Desktop: 48px */
    line-height: 1.1;
}

h2.fz-58 {
    font-size: clamp(2.25rem, 4vw + 0.5rem, 3.625rem); /* Mobile: 36px | Desktop: 58px */
    line-height: 1.1;
}

h2.fz-90 {
    font-size: clamp(3rem, 6vw + 1rem, 5.625rem); /* Mobile: 48px | Desktop: 90px */
    line-height: 1;
}

h2.fz-110 {
    font-size: clamp(3rem, 7vw + 1rem, 6.875rem); /* Mobile: 48px | Desktop: 110px */
    line-height: 1;
}

/* Padding Y 120 */
.py-120 {
    padding: 120px 0px;
}

/* Margin Top 90 */
.mt-90 {
    margin-top: 90px !important;
}

 /* ===== Footer Base ===== */
 .site-footer {
     padding: 0px 0 36px;
 }

 .footer-panel {
     background: #000;
     border-radius: 26px;
     overflow: hidden;
     position: relative;
     padding: 42px 46px 18px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
 }

 /* ===== Top ===== */
 .footer-top {
     display: flex;
     align-items: flex-start;
     justify-content: space-between;
     gap: 28px;
 }

 .footer-brand {
     flex: 0 0 auto;
 }

 .footer-logo {
     display: inline-flex;
     width: 66px;
     height: 66px;
     border-radius: 50%;
     color: #000;
     font-weight: 900;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     user-select: none;
 }

 /* columns */
 .footer-nav {
     display: flex;
     gap: 48px;
     flex-wrap: wrap;
     justify-content: flex-end;
 }

 .footer-col {
     min-width: 150px;
 }

 .footer-heading {
     font-size: clamp(0.875rem, 1.5vw, 1rem); /* Mobile: 14px | Desktop: 16px */
     letter-spacing: 0.14em;
     text-transform: uppercase;
     color: #fff;
     margin-bottom: 0.875rem;
     font-weight: 700;
 }

 .footer-link {
     display: block;
     color: rgba(255, 255, 255, 0.65);
     text-decoration: none;
     margin: 0.5rem 0;
     font-size: clamp(0.9375rem, 1.5vw + 0.125rem, 1.0625rem); /* Mobile: 15px | Desktop: 17px */
     line-height: 1.4;
     transition: color 0.3s ease, transform 0.2s ease;
 }
.dropdown-item:hover{
    color: #626262;
}
 .footer-link:hover {
     color: #F1E632;
     transform: translateX(5px);
 }

 /* ===== Hero Big Text ===== */
 .footer-hero {
     margin-top: 5.75rem; /* 92px */
     display: flex;
     align-items: flex-end;
     justify-content: space-between;
     gap: 1.5rem; /* 24px */
 }

 .footer-title {
    margin: 0;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(2.25rem, 5vw + 0.5rem, 4rem);
    line-height: 0.95;
    letter-spacing: 0;
    max-width: 100%;
    opacity: .4;
 }

 .footer-cta {
     flex: 0 0 auto;
     padding-bottom: 10px;
 }

 .footer-btn {
     display: inline-flex;
     align-items: center;
     gap: 0.625rem; /* 10px */
     background: #f3f700;
     color: #000;
     border-radius: 999px;
     padding: 0.75rem 1.125rem 0.75rem 1.25rem; /* 12px 18px 12px 20px */
     text-decoration: none;
     font-weight: 800;
     font-size: clamp(0.875rem, 1.5vw, 1rem); /* Mobile: 14px | Desktop: 16px */
     letter-spacing: 0.02em;
     white-space: nowrap;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .footer-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(243, 247, 0, 0.4);
 }

 .footer-btn__icon {
     width: clamp(30px, 3vw, 34px); /* Mobile: 30px | Desktop: 34px */
     height: clamp(30px, 3vw, 34px);
     border-radius: 999px;
     background: rgba(0, 0, 0, 0.12);
     display: inline-flex;
     align-items: center;
     justify-content: center;
     font-size: clamp(0.875rem, 1.5vw, 1rem); /* Mobile: 14px | Desktop: 16px */
 }

 /* ===== Bottom ===== */
 .footer-bottom {
     margin-top: 22px;
     position: relative;
     padding-top: 14px;
 }

 .footer-bottom__line {
     height: 1px;
     background: rgba(255, 255, 255, .35);
     width: 100%;
     margin-bottom: 10px;
 }

 .footer-bottom__meta {
     display: flex;
     align-items: center;
     justify-content: flex-end;
     gap: 0.5rem;
     color: rgba(255, 255, 255, 0.7);
     font-size: clamp(0.875rem, 1.25vw, 1rem); /* Mobile: 14px | Desktop: 16px */
 }

 .footer-heart {
     color: #F1E632;
     font-size: clamp(1rem, 1.5vw, 1.125rem); /* Mobile: 16px | Desktop: 18px */
     line-height: 1;
     display: inline-block;
     animation: heartbeat 1.5s ease-in-out infinite;
 }

 .footer-sevenly-link {
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-sevenly-link:hover {
     color: #F1E632;
     text-decoration: none;
 }

 @keyframes heartbeat {
     0%, 100% {
         transform: scale(1);
     }
     10%, 30% {
         transform: scale(1.1);
     }
     20%, 40% {
         transform: scale(1);
     }
 }

 /* ===== Responsive ===== */
 @media (max-width: 1200px) {
     .footer-title {
         font-size: 54px;
     }
 }

 @media (max-width: 992px) {
     .footer-panel {
         padding: 34px 26px 16px;
     }

     .footer-top {
         flex-direction: column;
     }

     .footer-nav {
         justify-content: flex-start;
         gap: 28px;
     }

     .footer-hero {
         flex-direction: column;
         align-items: flex-start;
         margin-top: 48px;
     }

     .footer-title {
         font-size: 46px;
     }

     .footer-cta {
         padding-bottom: 0;
     }
 }

 @media (max-width: 576px) {
     .footer-title {
         font-size: 36px;
     }

     .footer-col {
         min-width: 140px;
     }
 }