:root {
    --principal: #6c5ce7;
    --principal-hover: #5a4bd1;
    --secundario: #00cec9;
    --secundario-hover: #00b5ad;
    --oscuro: #2d3436;
    --blanco: #ffffff;
    --gris-claro: #f9f9f9;
    --borde: #e5e7eb;
    --radio: 20px;
    --radio-boton: 50px;
    --transicion: all 0.3s ease;
}

*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: var(--gris-claro);
    color: var(--oscuro);
    line-height: 1.6;
}

/* MENÚ Y ACCESIBILIDAD */
.barra-control-texto {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 10px; display: flex; justify-content: center; gap: 10px;
    border-bottom: 1px solid var(--borde);
}

.barra-control-texto button {
    padding: 5px 15px; border-radius: 8px; border: 1px solid var(--borde);
    background: white; cursor: pointer;
}

.menu-superior {
    width: 100%; height: 80px; background: var(--blanco);
    border-bottom: 1px solid var(--borde);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.estructura-menu {
    max-width: 1200px; margin: auto; height: 100%;
    display: flex; align-items: center; justify-content: space-between; padding: 0 20px;
}

.titulo-sitio { font-weight: 800; color: var(--principal); display: flex; align-items: center; gap: 10px; }
.circulo-logo { width: 12px; height: 12px; background: var(--secundario); border-radius: 50%; }

.enlaces-menu { display: flex; gap: 20px; list-style: none; align-items: center; }
.enlaces-menu a { text-decoration: none; color: var(--oscuro); font-weight: 600; }

.boton-ayuda {
    background: var(--principal); color: white !important;
    padding: 10px 20px; border-radius: var(--radio-boton);
}

/* SECCIÓN HERO */
.presentacion-contacto {
    padding: 80px 20px; display: flex; justify-content: center; align-items: center;
    gap: 50px; flex-wrap: wrap; background: #fff;
}

.zona-texto { width: 500px; }
h1 { font-size: 3rem; margin-bottom: 20px; line-height: 1.1; }
.color-destacado { color: var(--principal); }

.contenedor-consejos {
    margin-top: 25px; padding: 20px; background: #f3f0ff;
    border-left: 4px solid var(--principal); border-radius: 8px;
}

.zona-imagen img {
    width: 350px; border-radius: var(--radio);
    box-shadow: 15px 15px 0px var(--secundario);
}

/* FORMULARIO */
.area-formulario { width: 800px; max-width: 95%; margin: -40px auto 60px; }

.tarjeta-formulario {
    background: var(--blanco); padding: 40px;
    border-radius: var(--radio);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

form { display: flex; flex-direction: column; gap: 20px; }

label { font-weight: bold; font-size: 0.9rem; }

select, textarea {
    padding: 15px; border-radius: 12px; border: 2px solid var(--borde);
    background: #fcfcfc; font-family: inherit; font-size: 1rem;
    transition: var(--transicion);
}

select:focus, textarea:focus {
    outline: none; border-color: var(--principal);
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1);
}

.boton-enviar {
    background: var(--secundario); color: white;
    padding: 18px; border: none; border-radius: 12px;
    font-weight: 800; font-size: 1.1rem; cursor: pointer;
    text-transform: uppercase; letter-spacing: 1px;
    transition: var(--transicion);
}

.boton-enviar:hover {
    background: var(--secundario-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 206, 201, 0.3);
}

.mensaje-aviso {
    margin-top: 30px; padding: 20px; background: #fff5f5;
    color: #e03131; font-weight: 600; text-align: center; border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .presentacion-contacto { text-align: center; }
    .enlaces-menu { display: none; }
    h1 { font-size: 2.2rem; }
    .zona-imagen img { width: 100%; max-width: 300px; }
}