/* Estilos Personalizados Premium para Proyecto Promesa de Fe */

/* Scrollbar Personalizado */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #080f24;
}
::-webkit-scrollbar-thumb {
    background: #d97706;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #fbbf24;
}

/* Efecto de Vidrio Esmerilado Premium */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.glass-card-light {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Efecto Hover Dorado Gradual */
.gold-glow-hover {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gold-glow-hover:hover {
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
    border-color: rgba(251, 191, 36, 0.4);
    transform: translateY(-4px);
}

/* Citas Bíblicas Estilo Editorial */
.editorial-quote {
    font-family: 'Playfair Display', serif;
    position: relative;
}
.editorial-quote::before {
    content: "“";
    position: absolute;
    top: -30px;
    left: -20px;
    font-size: 8rem;
    color: rgba(251, 191, 36, 0.08);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

/* Timeline Custom */
.timeline-dot {
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.2);
}

/* Estilos de Control de Imagen Antes/Después */
.comparison-slider {
    position: relative;
    overflow: hidden;
}

/* Ajustes Generales */
html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
}