/* css/estilo2.css - Estilo Futurista para FIOS Analytics */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Rajdhani:wght@300;500;700&display=swap');

:root {
    --primary-color: #00f2ff; /* Cian Neón */
    --secondary-color: #7000ff; /* Púrpura */
    --bg-dark: #0a0b10;
    --card-bg: rgba(20, 22, 35, 0.8);
    --accent-yellow: #f0f33c;
}

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(112, 0, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 242, 255, 0.15) 0%, transparent 40%);
    color: white;
    font-family: 'Rajdhani', sans-serif;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
}

/* Marca FIOS Principal */
.brand-fios {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 4rem;
    letter-spacing: 8px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    filter: drop-shadow(0 0 10px rgba(0, 242, 255, 0.5));
    margin-bottom: 0;
}

.brand-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: -10px;
    opacity: 0.8;
}

/* Contenedor de Bienvenida */
.hero-section {
    padding-top: 50px;
    padding-bottom: 30px;
}

/* Tarjeta Principal */
#formulari {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 242, 255, 0.05);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

#formulari::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
}

/* Estilos de Formulario */
label {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    padding: 12px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
}

/* Botones */
.btn-fios {
    background: linear-gradient(45deg, var(--secondary-color), #a000ff);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s all ease;
    width: 100%;
    margin-top: 20px;
}

.btn-fios:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(112, 0, 255, 0.4);
    color: white;
}

.btn-analytics {
    background: transparent;
    border: 2px solid var(--accent-yellow);
    color: var(--accent-yellow);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-analytics:hover {
    background: var(--accent-yellow);
    color: black;
    box-shadow: 0 0 20px rgba(240, 243, 60, 0.5);
}

/* Preview Features - Pistas para el usuario */
.feature-preview {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 20px;
}

.feature-item {
    text-align: center;
    padding: 15px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    color: var(--primary-color);
}

.feature-text h5 {
    color: white;
    font-weight: 700;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Animación de escaneo para la marca */
@keyframes scan {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.scanning-text {
    position: relative;
    overflow: hidden;
}

.scanning-text::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.4), transparent);
    background-size: 200% 100%;
    animation: scan 3s infinite linear;
}
