/* style.css - Colores exactos del sitio /pruebas/ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #010101;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #C9D1D4;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* HEADER */
header {
    text-align: center;
    margin-bottom: 3rem;
}

.header-principal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo {
    height: 177px;
    width: auto;
    display: block;
}

.titulo-principal {
    font-size: 4rem;  /* El doble de 2rem */
    font-weight: 639;
    color: #80FC41;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.5px;
}

.intro-texto {
    font-size: 1rem;
    color: #C9D1D4;
    margin-top: 5px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Formulario */
.formulario-wrapper {
    background: #0A0A0A;
    border: 1px solid #222222;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.formulario-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #80FC41;
    font-weight: 600;
}

.campo {
    margin-bottom: 1.5rem;
}

.campo label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #C9D1D4;
    font-size: 0.9rem;
}

.campo input {
    width: 100%;
    padding: 12px 16px;
    background: #010101;
    border: 1px solid #333333;
    border-radius: 8px;
    color: #FFFFFF;
    font-family: 'Inter', monospace;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.campo input:focus {
    outline: none;
    border-color: #80FC41;
    box-shadow: 0 0 0 2px rgba(162, 255, 0, 0.1);
}

.campo small {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #888888;
}

.btn-cta {
    width: 100%;
    padding: 14px;
    background-color: #80FC41;
    border: none;
    border-radius: 40px;
    color: #010101;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 1rem;
}

.btn-cta:hover {
    background-color: #8ECC00;
}

.aviso-privacidad {
    font-size: 0.7rem;
    color: #888888;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

/* Alertas */
.alerta {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
}

.alerta.exito {
    background-color: rgba(162, 255, 0, 0.1);
    border: 1px solid #80FC41;
    color: #80FC41;
}

.alerta.error {
    background-color: rgba(255, 50, 50, 0.1);
    border: 1px solid #FF4444;
    color: #FF8888;
}

/* Etapas - Botones unificados */
.etapas {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.etapa-card {
    text-align: center;
    min-width: 200px;
}

.btn-etapa {
    display: block;
    padding: 0.9rem 1.5rem;
    background: #0A0A0A;
    border: 1px solid #333333;
    border-radius: 40px;
    color: #C9D1D4;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-etapa .etapa-sub {
    font-weight: 400;
    font-size: 0.8rem;
    color: #888888;
}

.btn-etapa:hover {
    border-color: #80FC41;
    background: #111111;
    color: #80FC41;
}

.btn-etapa:hover .etapa-sub {
    color: #80FC41;
}

/* Tooltip */
.btn-etapa {
    position: relative;
}

.btn-etapa::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1A1A1A;
    border: 1px solid #80FC41;
    color: #80FC41;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-family: 'Inter', monospace;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 100;
    font-weight: 400;
}

.btn-etapa:hover::after {
    opacity: 1;
}

/* Footer */
footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #222222;
    text-align: center;
    font-size: 0.8rem;
    color: #888888;
}

footer a {
    color: #80FC41;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .titulo-principal {
        font-size: 2rem;
    }
    
    .logo {
        height: 80px;
    }
    
    .header-principal {
        gap: 10px;
    }
    
    .etapas {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .etapa-card {
        width: 100%;
        max-width: 260px;
    }
    
    .btn-etapa::after {
        display: none;
    }
}