/* static/css/style.css */

:root {
    --sf-dark-green: #00443F;
    --sf-orange: #FF6700;
    --sf-neon: #DAFF03;
    --sf-dark-gray: #333333;
    --sf-light-gray: #F4F4F4;
}

/* FONDO DINÁMICO ANIMADO */
body {
    font-family: 'Raleway', sans-serif;
    color: var(--sf-light-gray);
    margin: 0;
    padding: 0;
    /* Degradado usando el verde corporativo y tonos oscuros */
    background: linear-gradient(-45deg, #00221f, #00443F, #006b63, #001f1c);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* UTILIDADES DE COLOR */
.text-neon { color: var(--sf-neon) !important; }
.text-orange { color: var(--sf-orange) !important; }
.bg-neon { background-color: var(--sf-neon) !important; color: var(--sf-dark-green) !important; }

/* BOTÓN PRINCIPAL */
.btn-orange {
    background-color: var(--sf-orange);
    color: white;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 15px 30px;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 103, 0, 0.4);
}

.btn-orange:hover {
    background-color: #e55d00;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 103, 0, 0.6);
}

/* TARJETA DE FORMULARIO (EFECTO GLASSMORPHISM) */
.form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    padding: 40px;
    border-top: 5px solid var(--sf-orange);
    border-bottom: 5px solid var(--sf-neon);
    color: var(--sf-dark-gray);
}

.form-control {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #ccc;
    background-color: #fcfcfc;
}

.form-control:focus {
    border-color: var(--sf-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 103, 0, 0.25);
}

/* DETALLES DEL EVENTO */
.event-details {
    list-style: none;
    padding-left: 0;
    font-size: 1.15rem;
}

.event-details li {
    margin-bottom: 18px;
    font-weight: 600;
}

.event-details i {
    color: var(--sf-neon);
    width: 30px;
    font-size: 1.4rem;
}

/* BOTÓN FLOTANTE DE WHATSAPP */
.float-wa {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.float-wa:hover {
    transform: scale(1.1);
    background-color: #20b858;
}

.wa-icon {
    width: 35px;
    height: 35px;
    fill: white;
}