* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
}

body {
    background: #0B1E33;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Video de fondo */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
    opacity: 0.3;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0B1E33 0%, rgba(11,30,51,0.8) 100%);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 2rem;
    padding: 3rem;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,115,0,0.2);
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

/* Logo */
.logo {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.logo-radiadores {
    color: white;
}

.logo-ya {
    color: #FF7300;
    background: rgba(255,115,0,0.1);
    padding: 0.2rem 1rem;
    border-radius: 100px;
    margin-left: 0.5rem;
    border: 1px solid rgba(255,115,0,0.3);
}

.badge {
    display: inline-block;
    background: rgba(255,115,0,0.2);
    color: #FF7300;
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255,115,0,0.3);
    margin-bottom: 2rem;
}

h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    color: #FF7300;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #FF7300;
    border-radius: 2px;
}

.description {
    color: #8899AA;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Contador */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.countdown-item {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 1rem;
    min-width: 80px;
    border: 1px solid rgba(255,115,0,0.2);
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    color: #FF7300;
    line-height: 1;
}

.countdown-label {
    font-size: 0.8rem;
    color: #8899AA;
    text-transform: uppercase;
}

/* Formulario */
.notify-form {
    margin: 2rem 0;
}

.input-group {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.input-group input {
    flex: 1;
    padding: 1rem 1.2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,115,0,0.2);
    border-radius: 60px;
    color: white;
    font-size: 1rem;
}

.input-group input::placeholder {
    color: #556677;
}

.input-group input:focus {
    outline: none;
    border-color: #FF7300;
}

.input-group button {
    background: #FF7300;
    color: white;
    border: none;
    border-radius: 60px;
    padding: 0 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.input-group button:hover {
    background: #e06600;
    transform: scale(1.05);
}

/* Botón WhatsApp */
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 1.2rem 3rem;
    border-radius: 60px;
    font-weight: 600;
    margin: 1rem 0;
    transition: all 0.3s;
    width: 100%;
    max-width: 400px;
}

.whatsapp-button:hover {
    background: #20B859;
    transform: scale(1.02);
}

/* Redes sociales */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 1rem;
}

.social-link {
    color: #8899AA;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.social-link:hover {
    color: #FF7300;
}

.footer-note {
    color: #556677;
    font-size: 0.8rem;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 1.5rem;
        margin: 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    .logo {
        font-size: 2.2rem;
    }

    .input-group {
        flex-direction: column;
    }

    .input-group button {
        padding: 1rem;
    }

    .countdown {
        gap: 0.8rem;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.8rem;
    }

    .countdown-number {
        font-size: 1.5rem;
    }
    /* Estilos nuevos para datos de empresa */
.ruc-badge {
    color: #8899AA;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.footer-note p {
    margin: 0.3rem 0;
    line-height: 1.4;
}

.footer-note .mt-2 {
    margin-top: 0.8rem;
    color: #FF7300;
    font-weight: 500;
}

/* Ajuste para el logo */
.logo-radiadores {
    color: white;
    font-size: 2rem;
}

.logo-ya {
    color: #FF7300;
    background: rgba(255,115,0,0.1);
    padding: 0.2rem 1rem;
    border-radius: 100px;
    margin-left: 0.5rem;
    border: 1px solid rgba(255,115,0,0.3);
    font-size: 1.5rem;
}
/* Estilos adicionales para la versión próximamente */
.input-note {
    color: #8899AA;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    text-align: center;
}

.ruc-badge {
    color: #8899AA;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.footer-note p {
    margin: 0.3rem 0;
    line-height: 1.4;
    color: #8899AA;
}

.footer-note .mt-2 {
    margin-top: 0.8rem;
}

.footer-note .copyright {
    font-size: 0.7rem;
    opacity: 0.6;
    margin-top: 1rem;
}

.logo-radiadores {
    color: white;
    font-size: 2rem;
    font-weight: 800;
}

.logo-ya {
    color: #FF7300;
    background: rgba(255,115,0,0.1);
    padding: 0.2rem 1rem;
    border-radius: 100px;
    margin-left: 0.5rem;
    border: 1px solid rgba(255,115,0,0.3);
    font-size: 1.5rem;
    font-weight: 600;
}

/* Ajuste responsive */
@media (max-width: 600px) {
    .logo-radiadores {
        font-size: 1.5rem;
    }
    
    .logo-ya {
        font-size: 1.2rem;
        padding: 0.2rem 0.8rem;
    }
    
    .ruc-badge {
        font-size: 0.7rem;
    }
}
}