/*.wedding-details {
    padding: 60px 20px;
    background: #fff;
}*/

/* CONTENEDOR RESPONSIVO */
.details-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* TARJETA */
.detail-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    border-top: 5px solid #FFB5C0;
    transition: transform .3s ease, box-shadow .3s ease;
}

.detail-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

/* VARIANTE AZUL */
.detail-card.blue {
    border-top-color: #04376B;
}

/* ICONO */
.detail-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #04376B, #FFB5C0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
}

/* TEXTO */
.detail-card h3 {
    color: #04376B;
    margin-bottom: 10px;
}

.detail-card p {
    color: #666;
    font-size: 1rem;
}

.detail-card .time {
    margin-top: 8px;
    font-weight: bold;
    color: #FF9BB0;
}

/* EXTRA PARA MÓVIL */
@media (max-width: 480px) {
    .detail-card {
        padding: 25px 15px;
    }
}


/*********/
.corazon-latido {
    /* Duración, tipo de curva, repetición infinita */
    animation: latido 1.2s infinite ease-in-out;
    /* Centrado opcional */
    display: block;
    margin: 50px auto;
  }
  
  @keyframes latido {
    0% {
      transform: scale(1);
    }
    15% {
      transform: scale(1.05); /* Crece al inicio del latido */
    }
    30% {
      transform: scale(1); /* Vuelve a su tamaño */
    }
    45% {
      transform: scale(1.15); /* Segundo latido más pequeño */
    }
    60% {
      transform: scale(1); /* Vuelve a su tamaño */
    }
    100% {
      transform: scale(1); /* Pausa entre latidos */
    }
  }