/* Tipografías Dinámicas */
.font-serif { font-family: 'Playfair Display', serif !important; }
.font-montserrat { font-family: 'Montserrat', sans-serif !important; }
.font-cursive { font-family: 'Great Vibes', cursive !important; }

/* Header del Dashboard */
.brand-header {

    border-radius: 10px;

}

.brand-badge {
    padding: 4px 12px;
    background: var(--nupciara-cream-light);
    border-radius: 8px;
    border: 1px solid var(--nupciara-gold);
}

/* Card de Invitación Premium */
.premium-invitation-card {
    border: none;
    border-radius: 24px;
    background: white;
    box-shadow: 0 20px 40px rgba(90, 62, 27, 0.08);
    overflow: hidden;
    color: #2d2d2d;
}

.couple-names {

    letter-spacing: -1px;
}

.divider-gold {
    width: 50px;
    height: 2px;
    background: var(--nupciara-gold);
    margin: 1.5rem auto;
}

/* Efecto Zoom Imagen */
.img-hover-zoom {
    transition: transform 0.7s ease;
}
.img-hover-zoom:hover {
    transform: scale(1.1);
}

/* Widgets nupciara */
.nupciara-widget {
    background: rgb(255, 255, 255);
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    transition: all 0.3s ease;
}
.nupciara-widget:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Bordes de colores específicos */
.border-bus { border-bottom: 5px solid #a98156ed !important; }
.border-parking { border-bottom: 5px solid #dec16f !important; }
.border-kids { border-bottom: 5px solid #d3cb52 !important; }
.border-allowed { border-bottom: 5px solid #f6b581 !important; }
.border-information { border-bottom: 5px solid #d4a15e !important; }

/* Contenedor de Estadísticas */
.stats-container {
    max-width: 800px;
}

.stat-box {
    padding: 1.5rem 1rem;
    background: var(--nupciara-cream-light);
    border-radius: 16px;
    margin: 0.5rem;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(148, 138, 22, 0.1);
}

/* Barra de Progreso Personalizada nupciara */
.progress-bar-nupciara {
    width: 100%;
    height: 32px;
    background: #e9ecef;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--nupciara-gold) 0%, #b8a72f 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.8s ease;
    min-width: 50px; /* Asegura que el texto sea visible incluso con porcentajes bajos */
}

.progress-text {
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Animación de entrada */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-container {
    animation: slideIn 0.5s ease;
}

/* Divider dorado centrado */
.divider-gold-center {
    width: 60px;
    height: 3px;
    background: var(--nupciara-gold);
    margin: 0 auto;
}

/* Burbuja compacta para la primera confirmación */
.first-confirmation-bubble {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 28px;
    background: linear-gradient(145deg, #ffffff 0%, #fcf8ef 100%);
    position: relative;
    border: 1px solid rgba(180, 150, 86, 0.2);
}

.first-confirmation-bubble::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 20px;
    height: 20px;
    background: #fcf8ef;
    border-right: 1px solid rgba(180, 150, 86, 0.2);
    border-bottom: 1px solid rgba(180, 150, 86, 0.2);
    transform: translateX(-50%) rotate(45deg);
}

.allergy-bubble {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 28px;
    background: linear-gradient(145deg, #ffffff 0%, #f9fdf8 100%);
    position: relative;
    border: 1px solid rgba(102, 153, 102, 0.2);
}

.allergy-bubble::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 20px;
    height: 20px;
    background: #f9fdf8;
    border-right: 1px solid rgba(102, 153, 102, 0.2);
    border-bottom: 1px solid rgba(102, 153, 102, 0.2);
    transform: translateX(-50%) rotate(45deg);
}

@media (max-width: 576px) {
    .first-confirmation-bubble {
        max-width: 92%;
        border-radius: 24px;
    }

    .allergy-bubble {
        max-width: 92%;
        border-radius: 24px;
    }
}
