:root {
    --Limed-Spruce: #324c4b;
    --white: #ffffff;
    /* - Color principal */
    --Old-Gold: #D4AF37;
    --Bright-Gray: #ECECEC;
    --Turquoise-Green: #A8D5BA;
    --Light-red: #F7CAC9;
    --Orange-life: #dd8e4c;
}

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Dancing+Script:wght@400..700&family=Pacifico&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body,
html {
    overflow-x: hidden;
    /* evita scroll horizontal */
}


.navbar {
    background: var(--white);
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

#navbar__logo {
    background-color: #ff8177;
    background-color: #3D4F39;
    background-size: 100%;
    font-family: "Imperial Script", cursive;
    font-weight: 450;
    font-style: normal;
    /* background-color: #000000; */
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2.5rem;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
    text-align: center;
}

.navbar li a {
    text-decoration: none;
    color: #000;
    transition: color 0.2s ease;
    font: 1em 'Ubuntu', sans-serif;
    font-weight: bolder;
    cursor: pointer;
}

.navbar__item {
    height: 80px;
}

.navbar__links {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 125px;
    text-decoration: none;
    height: 100%;
    transition: all 0.3s ease;
}

.navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #1a2a6c;
    background: -webkit-linear-gradient(to right, #fdbb2d, #b21f1f, #1a2a6c);
    background: linear-gradient(to right, #fdbb2d, #b21f1f, #1a2a6c);
    color: #fff;
    transition: all 0.3 ease;
}

.navbar__links:hover {
    color: #8734f3;
    transition: all 0.3 ease;
}

@media screen and (max-width: 960px) {
    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu.active {
        background: #131313;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 60vh;
        font-size: 1.6rem;
    }

    #navbar__logo {
        padding-left: 25px;
    }

    .navbar__toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
    }

    .navbar__item {
        width: 100%;
    }

    .navbar__links {
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    .navbar__btn {
        padding-bottom: 2rem;
    }

    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 80px;
        margin: 0;
    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__toggle .bar {
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Estilo Hero */

.hero {
    /* background: #000000; */
    background: linear-gradient(to right, #646464, #cecece);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 90vh;
    margin: 0;
    padding: 200px 0;
}

.hero__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    text-align: center;
    padding: 30px;
}

.hero__heading {
    font-size: 10em;
    margin-bottom: 24px;
    font-family: "Imperial Script", cursive;
    font-weight: 400;
    font-style: normal;
    color: var(--Old-Gold);
}

.hero__heading span {
    background: #578583;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #FF8235, #30E8BF);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #FF8235, #30E8BF);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -mo-text-fill-color: transparent;
}

.hero__date {
    font-size: 5em;
    margin-bottom: 18px;
    font-family: "Merriweather", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    color: var(--white);
}

.hero__description {
    font-size: 60px;
    background: var(--Old-Gold);
    /* fallback for old browsers */
    /* background: -webkit-linear-gradient(to right, #EC6EAD, #3494E6); */
    /* Chrome 10-25, Safari 5.1-6 */
    /* background: linear-gradient(to right, #EC6EAD, #3494E6); */
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    margin-bottom: 24px;
    font-family: "Imperial Script", cursive;
    font-weight: 400;
    font-style: normal;
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.highlight {
    border-bottom: 4px solid rgb(132, 0, 255);
}

@media screen and (max-width: 768px) {
    .hero__heading {
        font-size: 60px;
    }

    .hero__description {
        font-size: 40px;
    }

    .main__btn {
        font-size: 0.8rem;
        background: #f8fbca;
        padding: 20px 60px;
        border: none;
        border-radius: 8px;
        color: #2C3434;
        margin-top: 2rem;
        cursor: pointer;
        position: relative;
        transition: all 0.35s;
        outline: none;
    }
}

.main__content--title {
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
}

@media screen and (width < 800px) {
    .main__btn {
        font-size: 0.8rem;
    }

}

/* Seccion Acerca de */

.main {
    background-color: #DADED8;
    padding: 10rem 0;
}

.main__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    height: 90%;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 20px;
}

.main__content {
    color: #fff;
    width: 100%;
}

.main__content h1 {
    font-size: 2rem;
    color: #4C583E;
    background-size: 100%;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.main__container h2 {
    position: relative;
    width: 300px;
}

.main__content h2 input {
    width: 100%;
    padding: 12px;
    border: 2px solid #d4a373;
    /* Color dorado suave */
    border-radius: 25px;
    /* Forma redondeada */
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease-in-out;
    background-color: white;
    text-align: center;
}

.main__content h2 input:focus {
    border-color: #8b5e34;
    /* Dorado más oscuro */
    box-shadow: 0 0 10px rgba(139, 94, 52, 0.5);
}

main__content h2 input::placeholder {
    color: #a7866a;
    font-style: italic;
}

.main__content h2 i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #a7866a;
    font-size: 18px;
}

.main__container p {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 700;
}

.main__btn {
    font-size: 1.8rem;
    background: #f8fbca;
    padding: 20px 60px;
    border: none;
    border-radius: 8px;
    color: #3D4F39;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
}

.main__btn a {
    position: relative;
    z-index: 2;
    color: #0d0c0c;
    text-decoration: none;
}

.main__btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #FC354C;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #0ABFBC, #FC354C);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #0ABFBC, #FC354C);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    transition: all 0.35s;
    border-radius: 4px;
}

.main__btn:hover {
    background: #f8fbca;
    color: #2C3434;
    transform: translateY(-3px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.main__img--container {
    text-align: center;

}

.main__img--card {
    margin: 30px;
    height: 500px;
    width: 100%;
    max-width: 500px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.name_qr {
    display: block;
    border-radius: 50px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}

#card-2 {
    background: #fdbb2d;
    background: -webkit-linear-gradient(to right, #0ABFBC, #FC354C);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #0ABFBC, #FC354C);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

/* Mobile Responsive */
@media screen and (max-width: 1100px) {
    .main__container {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        width: 100%;
        margin: 0 auto;
        height: 90%;
    }

    .main__img--container {
        display: flex;
        justify-content: center;
    }

    .main__img--card {
        height: 425px;
        width: 425px;
    }

    .main__content {
        text-align: center;
        margin-bottom: 4rem;
    }

    .main__content h1 {
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .main__content h2 {
        font-size: 3rem;
    }

    .main__content p {
        margin-top: 1rem;
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .main__img--card {
        width: 250px;
        height: 250px;
    }

    .fa-users,
    .fa-layer-group {
        font-size: 4rem;
    }

    .main__content h1 {
        font-size: 2rem;
        margin-top: 3rem;
    }

    .main__content h2 {
        font-size: 2rem;
    }

    .main__content p {
        margin-top: 2rem;
    }
}

.main__btn {
    padding: 12px 36px;
    margin: 2.5rem 0;
}

/* Seccion de Tarjetas yay! */
.services {
    background: #2C3424;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* height: 10%; */
    padding-top: 1.8rem;
    padding-bottom: 2.5rem;
    margin: 0%;
}

.services h1 {
    color: white;
    background-size: 100%;
    /* font-family: "Cinzel", serif; */
    margin-bottom: 2rem;
    font-size: 3rem;
}

.services__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
    .services__wrapper {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
}

.services__card {
    display: grid;
    grid-template-columns: 1.1fr 2fr;
    border-radius: 12px;
    overflow: hidden;
    color: #959581;
    height: 380px;
    background-color: #DADED8;
    transition: 0.3s ease-in;
}

.Titulos_Cards {
    font-family: "Imperial Script", cursive;
    font-weight: 800;
    font-style: normal;
    /* background-color: #000000; */
    font-size: 2.3rem;
}

.sub_cards {
    font-size: 1rem;
    margin-bottom: 18px;
    font-family: "Merriweather", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    /* color: var(--Limed-Spruce); */
}

.Main_cards {
    font-family: "Imperial Script", cursive;
    font-weight: 500;
    font-style: normal;
    /* background-color: #185427; */
    font-size: 3em;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.card-content {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: inherit;
}





/* Botones */
.services__btn {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    flex-direction: row;
}

.services__btn button {
    background: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 1rem;
}

.btn-img {
    display: inline-block;
    padding: 8px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.btn-img img {
    height: 30px;
    width: auto;
    display: block;
}

.btn-img:hover {
    transform: scale(1.05);
}

.services__btn button a {
    text-decoration: none;
    color: black;
}

.btn-maps {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    font-weight: 600;
    color: black;
    transition: transform 0.2s ease;
}

.btn-maps:hover {
    transform: scale(1.05);
}

.btn-maps svg {
    stroke: #324C4B;
    /* O cualquier color de tu paleta */
}

.btn-maps img {
    height: 20px;
    width: auto;
    margin-right: 8px;
    vertical-align: middle;
}

/* Responsivo */
@media screen and (max-width: 768px) {
    .services__wrapper {
        grid-template-columns: 1fr;
    }

    .services__card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .card-image {
        height: 200px;
    }

    .card-content,
    .card-content p,
    .card-content h2 {
        text-align: center;
    }

    .services__btn {
        justify-content: center;
    }
}

/* .iglesia {
    display: block;
    border-radius: 10px;
    max-width: 50%;
    height: 250px;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
} */

/* Parte de la tarjeta 3 */
/* /* .name_casual {
    display: block;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
} */


.services__card h2 {
    text-align: center;
    font-family: "Pacifico", cursive;
}

.services__card p {
    text-align: center;
    /* margin-top: 24px;
    font-size: 20px; */
}

.services__btn {
    display: flex;
    justify-content: center;
    /* margin-top: 16px; */
}

.services__btn a {
    text-decoration: none;
    color: #959581;
}

/* .services__card button {
    color: rgb(0, 0, 0);
    padding: 14px 24px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #ffffff;
    font-size: 1rem;
} */

.services__card button:hover {
    cursor: pointer;
}

.services__card:hover {
    transform: scale(1.075);
    transition: 0.3s ease-in;
    cursor: pointer;
}

@media screen and (max-width: 1300px) {
    .services__wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .services__wrapper {
        grid-template-columns: 1fr;
    }
}

/* Footer */

.footer__container {
    background-color: #131313;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#footer__logo {
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}

.footer__links {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
}

.footer__link--wrapper {
    display: flex;
}

.footer__link--items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px;
    text-align: left;
    width: 160px;
    box-sizing: border-box;
}

.footer__link--items h2 {
    margin-bottom: 16px;
    color: #fff;
}

.footer__link--items a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: 0.3 ease-out;
}

.footer__link--items a:hover {
    color: #e9e9e9;
    transition: 0.3 ease-out;
}

.social__icon--link {
    color: #fff;
    font-size: 24px;
}

.social__media {
    max-width: 1000px;
    width: 100%;
}

.social__media--wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    margin: 40px auto 0 auto;
}

.social__icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 240px;
}

.website__rights {
    color: #fff;
}

@media screen and (max-width: 820px) {
    .footer__links {
        padding-top: 1rem;
    }

    #footer__logo {
        margin-bottom: 1rem;
    }

    .website__rights {
        margin-bottom: 1rem;
    }

    .footer__link--wrapper {
        flex-direction: column;
    }

    .social__media--wrap {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .footer__link--items {
        margin: 0;
        padding: 10px;
        width: 100%;
    }
}



.custom-alert {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    text-align: center;
    z-index: 1000;
}

.card {
    background: white;
    width: 400px;
    margin: 20px auto;
    padding: 15px;
    border-radius: 10px;
    height: 290px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.card h3 {
    margin: 0;
    color: #333;
}

.card p {
    color: #666;
    font-size: 14px;
}

select {
    padding: 10px;
    margin-left: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

select:focus {
    outline: none;
    border-color: #007BFF;
}

/* Estilo programa */
.TileIN {
    text-align: center;
    margin-top: 40px;
    font-size: 2.5em;
    color: #8c5e2a;
    font-family: 'Georgia', serif;
    background: #fffbe6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.fondo-inti {
    background: #FFFFFF;
}

.timeline {
    /* background: #FFFFFF; */
    position: relative;
    margin: 50px auto;
    padding: 20px 0;
    width: 90%;
    max-width: 800px;
}

.timeline::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: gold;
    transform: translateX(-50%);
}

.event {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.event.show {
    opacity: 1;
    transform: translateY(0);
}

.event .content {
    width: 45%;
    text-align: right;
}

.event .content.right {
    text-align: left;
}

.event .icon {
    background: white;
    border: 3px solid gold;
    color: black;
    padding: 15px;
    border-radius: 50%;
    font-size: 24px;
    position: relative;
    z-index: 10;
}

.event:nth-child(even) {
    flex-direction: row-reverse;
}

.content h3 {
    margin: 0;
    font-size: 1.4em;
    color: #333;
}

.content span {
    font-style: italic;
    color: #8c5e2a;
}

@media screen and (max-width: 768px) {
    .event {
        flex-direction: column !important;
        text-align: center;
    }

    .event .content {
        width: 100%;
        text-align: center !important;
    }

    .timeline::after {
        left: 10%;
    }
}

.countdown {
    width: 100%;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    /* Espacio interno */
    text-align: center;
    overflow: hidden;
    background-position-y: -2px;

}

.countdown__container {
    max-width: 1200px;
    margin: 0 auto;
}

.countdown__title {
    font-weight: bold;
    font-size: 3rem;
    /* Tamaño grande pero escalable */
    font-family: 'Ubuntu', sans-serif;
    color: white;
    margin-bottom: 30px;
}

#countdown {
    font-size: 4rem;
    /* Tamaño del contador */
    font-weight: bold;
    color: #B48B31;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    /* Espacio mínimo para que no se vea apretado */
    margin-top: 20px;
}

@media (max-width: 768px) {
    .countdown__title {
        font-size: 2rem;
    }

    #countdown {
        font-size: 2.5rem;
    }
}

/* bubble music */
#audioBubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: gold;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: background-color 0.3s;
}

#audioBubble:hover {
    background-color: rgb(226, 195, 24);
}

/* estilos pop up */
.modal-banco {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.modal-content-banco {
    position: relative;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-banco {
    width: 360px;
    height: 220px;
    background: linear-gradient(135deg, #3f2b96, #a8c0ff);
    border-radius: 20px;
    color: white;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    font-family: 'Courier New', monospace;
}

.card-banco .chip {
    width: 50px;
    height: 35px;
    background: gold;
    border-radius: 6px;
}

.card-number-banco {
    font-size: 22px;
    letter-spacing: 2px;
    margin-top: 20px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.close-banco {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    z-index: 1;
}

.padrinos-section {
    background-color: #fefaf6;
    padding: 60px 20px;
    text-align: center;
}

.padrinos-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: #6b4c3b;
    margin-bottom: 40px;
}

.padrinos-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.group-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #6b4c3b;
    margin-bottom: 10px;
}

.padrinos-group p {
    font-family: 'Open Sans', sans-serif;
    margin: 4px 0;
    color: #444;
    font-size: 0.95rem;
}

/* countdown elegante */
.countdown-elegant {
    display: flex;
    gap: 3rem;
    /* más separación */
    justify-content: center;
    align-items: center;
    font-family: 'Cinzel', serif;
}

/* Círculos extra‑grandes */
.countdown-elegant {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    font-family: 'Cinzel', serif;
    margin: 2rem 0;
}

/* ESTILO BASE (pantallas grandes) */
.countdown-elegant .number {
    width: 8rem;
    height: 8rem;
    line-height: 8rem;
    border: 3px solid #d4af37;
    border-radius: 50%;
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.3s;
}

.countdown-elegant .label {
    font-size: 1.1rem;
    color: white;
}

.countdown-elegant .unit {
    text-align: center;
}

/* PEQUEÑO REBOTE OPCIONAL */
.countdown-elegant .unit.updated .number {
    animation: pop 0.4s ease-out;
}

@keyframes pop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* ✅ MEDIA QUERIES RESPONSIVE */

/* Tablets y pantallas medianas */
@media (max-width: 991px) {
    .countdown-elegant {
        gap: 2rem;
    }

    .countdown-elegant .number {
        width: 6rem;
        height: 6rem;
        line-height: 6rem;
        font-size: 2.5rem;
    }

    .countdown-elegant .label {
        font-size: 1rem;
    }
}

/* Celulares */
@media (max-width: 600px) {
    .countdown-elegant {
        gap: 1.5rem;
    }

    .countdown-elegant .number {
        width: 4.5rem;
        height: 4.5rem;
        line-height: 4.5rem;
        font-size: 2rem;
    }

    .countdown-elegant .label {
        font-size: 0.9rem;
    }
}


.alert {
    padding: 10px;
    margin-top: 10px;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
}

.alert-danger {
    border: 1px solid #f5c6cb;
    background-color: #f8d7da;
    color: #721c24;
}



.custom-alert-search {
    background-color: #f44336;
    /* rojo */
    color: white;
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    animation: fadeInOut 3s forwards;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    10% {
        opacity: 1;
        transform: translateY(0);
    }

    90% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* FOOTER */
footer.footer {
    background-color: #0a0a0a;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    border-top: 2px solid #222;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-social {
    display: flex;
    gap: 25px;
}

.footer-social a {
    color: #bbb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #fff;
}

.footer-copy {
    font-size: 0.9rem;
    color: #888;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .footer-social {
        flex-direction: column;
        gap: 10px;
    }
}