body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9fcff;
    color: #555;
}

.hero {
    height: 100vh;
    background:
        linear-gradient(rgba(255, 255, 255, 0.40), rgba(255, 255, 255, 0.40)),
        url('../img/baby.jpeg') center/cover no-repeat;
}

.hero h1 {
    font-size: 3rem;
    color: #6fa8dc;
}

.hero h2 {
    font-family: 'Alex Brush', cursive;
    font-size: 5.5rem;
    font-weight: normal;
    color: #2d5ea8;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, .4);
}

.nombre-bautizo {
    font-family: 'Great Vibes', cursive;
    font-size: 5rem;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, .4);
}

.fecha {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.contador {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3d85c6;
}

.frase {
    font-size: 1.5rem;
    font-style: italic;
}

.evento h3 {
    color: #6fa8dc;
    margin-bottom: 10px;
}

footer {
    background-color: #6fa8dc;
    color: white;
}

.btn-primary {
    background-color: #3d85c6;
    border: none;
}

.btn-primary:hover {
    background-color: #2b6aa0;
}

.contador-circulos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.circulo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #e6f1fb);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: flotando 3s ease-in-out infinite;
}

.circulo span {
    font-size: 2rem;
    font-weight: bold;
    color: #3d85c6;
}

.circulo small {
    font-size: 0.9rem;
    color: #6fa8dc;
    margin-top: -5px;
}

/* Animación suave */
@keyframes flotando {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 576px) {
    .circulo {
        width: 90px;
        height: 90px;
    }

    .circulo span {
        font-size: 1.6rem;
    }
}

.padrinos {
    background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.pareja-card {
    background: #fff;
    padding: 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .3s;
    height: 100%;
}

.pareja-card:hover {
    transform: translateY(-8px);
}

.icono {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.pareja-card h4 {
    color: #2d5ea8;
    font-size: 1.2rem;
    margin: 5px 0;
    font-weight: 600;
}

.pareja-card span {
    display: block;
    font-size: 1.8rem;
    color: #d4af37;
    margin: 8px 0;
    font-family: Georgia, serif;
}

.padrinos h2 {
    color: #2d5ea8;
    font-family: Georgia, serif;
    font-weight: bold;
}

.foto {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: all .4s ease;
    cursor: pointer;
}

.foto:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
}

/* GALERÍA */

.galeria {
    background: linear-gradient(180deg,
            #ffffff,
            #f7fbff);
}

.titulo-galeria {
    color: #2d5ea8;
    font-family: Georgia, serif;
    font-weight: bold;
    font-size: 2.2rem;
}

.subtitulo-galeria {
    color: #777;
    font-size: 1rem;
}

.foto {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    transition: all .4s ease;
    cursor: pointer;
}

.foto:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.galeria .col-md-3,
.galeria .col-6 {
    overflow: hidden;
    border-radius: 20px;
}

@media(max-width:768px) {

    .foto {
        height: 220px;
    }

    .titulo-galeria {
        font-size: 1.8rem;
    }

}

.titulo-evento {
    text-align: center;
    line-height: 1;
}

.ampersand {
    font-family: 'Great Vibes', cursive;
    font-size: 4rem;
    color: #d4af37;
    margin: -5px 0;
}