/* --- RESET Y BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
}

body {
    padding-top: 80px !important;
}

/* --- VARIABLES DE COLOR (NUEVA PALETA LIGHT) --- */
:root {
    --acento-fucsia: #e91e63; /* Fucsia para botones y números */
    --pastel-rosa: #fff5f8;   /* Fondo muy suave para contrastes */
    --borde-light: #f0f0f0;
}

/* --- HEADER --- */
header {
    background: #ffffff !important;
    height: 60px !important;
    width: 100% !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1000 !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 20px !important;
    border-bottom: 1px solid var(--borde-light) !important;
}

header p {
    font-weight: 800 !important;
    font-size: 13px !important;
    letter-spacing: 2px !important;
    color: #000000 !important;
    text-transform: uppercase;
}

/* --- MENÚ --- */
body input + label {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 1001 !important;
    cursor: pointer !important;
}

body input + label span {
    display: block;
    width: 25px;
    height: 2px;
    background: #000000;
    margin-bottom: 5px;
}

body input ~ nav {
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    z-index: 999;
    transition: 0.5s;
    overflow: hidden;
}

body input:checked ~ nav {
    height: 100%;
}

body input ~ nav ul {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

body input ~ nav ul li a {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    display: block;
    padding: 15px;
}

/* --- SECCIONES --- */
section {
    padding: 100px 0;
    background-color: #ffffff;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- MISIÓN (+34,654) --- */
.mision-brutal {
    text-align: center;
}

/* Estilo para el número destacado */
.mision-brutal .author[style*="font-size:48px"] {
    color: var(--acento-fucsia) !important;
    font-weight: 900 !important;
}

.mision-brutal blockquote {
    font-size: 22px;
    color: #333;
    font-style: italic;
    max-width: 800px;
    margin: 40px auto;
    line-height: 1.5;
    border-left: none;
}

/* --- MÉTODO (FONDO PASTEL) --- */
.metodo {
    background-color: var(--pastel-rosa); /* Fondo rosa pastel sutil */
    border-top: 1px solid #fce4ec;
    border-bottom: 1px solid #fce4ec;
}

.section-title {
    font-size: 30px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.section-title span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: var(--acento-fucsia);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.grid-metodo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.item-metodo {
    background: #ffffff;
    padding: 45px;
    border: 1px solid #fce4ec;
    transition: 0.4s ease;
}

.item-metodo:hover {
    border-color: var(--acento-fucsia);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.05);
}

.item-metodo .num {
    font-size: 12px;
    font-weight: 900;
    color: var(--acento-fucsia);
    display: block;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.item-metodo h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.item-metodo p {
    font-size: 15px;
    color: #555;
}

/* --- BOTÓN Y FINAL CTA --- */
.final-cta {
    text-align: center;
}

.btn-cta {
    display: inline-block;
    padding: 18px 45px;
    background: var(--acento-fucsia); /* Botón Fucsia */
    color: #ffffff !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 2px;
}

.btn-cta:hover {
    background: #c2185b; /* Un fucsia un poco más oscuro al pasar el mouse */
    transform: translateY(-2px);
}

/* --- FOOTER --- */
footer {
    padding: 60px 0;
    background: #ffffff;
    border-top: 1px solid var(--borde-light);
}

.footer-logo h3 {
    font-weight: 900;
    color: var(--acento-fucsia);
}

.footer-copy p {
    font-size: 13px;
    opacity: 0.6;
    margin-top: 20px;
}

/* Ajuste móvil */
@media (max-width: 768px) {
    section { padding: 60px 0; }
    .btn-cta { width: 100%; }
}


/* --- ESTILOS ESPECÍFICOS SOBRE LAURA --- */
.bio-hero {
    background-color: #ffffff;
    border-top: 1px solid var(--borde-light);
}

.bio-content {
    max-width: 850px;
    margin: 0 auto;
}

.desorden-check {
    background-color: var(--pastel-rosa);
    border-radius: 4px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid #fce4ec;
}

.desorden-check h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: var(--acento-fucsia);
}

.desorden-check ul {
    list-style: none;
}

.desorden-check ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: #444;
}

.desorden-check ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--acento-fucsia);
    font-weight: 900;
}

.bio-content .highlight {
    font-size: 22px;
    font-weight: 800;
    color: #000;
    margin-bottom: 25px;
}

.bio-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}



/* --- CORRECCIÓN FINAL DE FOOTER --- */
footer {
    padding: 100px 0 60px 0; /* Aumentamos el margen superior para separar del CTA */
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
    width: 100%;
}

/* Forzamos el centrado del contenido del footer */
footer .footer-container {
    max-width: 1100px; /* Misma medida que el resto del sitio */
    margin: 0 auto;
    padding: 0 40px; /* Margen lateral para que no toque los bordes en ninguna pantalla */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Columna izquierda más ancha */
    gap: 60px; /* Espacio entre columnas */
    margin-bottom: 60px;
    align-items: start;
}

.footer-logo h3 {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--acento-fucsia);
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.footer-contact .label {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--acento-fucsia);
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.footer-contact p {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

/* Línea de copyright */
.footer-copy {
    border-top: 1px solid #f0f0f0;
    padding-top: 40px;
    text-align: left;
}

.footer-copy p {
    font-size: 12px;
    opacity: 0.5;
    color: #000;
}

/* Ajuste móvil para que se vea ordenado en vertical */
@media (max-width: 768px) {
    footer .footer-container {
        padding: 0 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .footer-copy {
        text-align: center;
    }
}

/* --- FIX HEADER MÓVIL --- */
@media (max-width: 768px) {
    header {
        height: 70px !important; /* Un poco más de aire para el logo */
        padding: 0 15px !important;
    }

    /* Ocultamos el texto largo y mostramos el corto */
    .desktop-only { 
        display: none !important; 
    }
    
    .mobile-only { 
        display: inline-block !important; 
        font-size: 10px !important;
        max-width: 180px; /* Evita que choque con el menú */
        line-height: 1.2;
    }

    header p {
        padding-right: 40px !important; /* Espacio para que las rayitas no lo tapen */
    }

    header p span[style*="opacity: 0.6"] {
        display: block; /* Ponemos "by Laura Ramos" abajo para ganar espacio */
        font-size: 9px;
        margin-left: 0 !important;
    }

    /* Ajuste del botón menú */
    body input + label {
        top: 25px !important;
        right: 15px !important;
    }
}






/* --- FIX TOTAL DE ESTRUCTURA ACADEMIA --- */

/* 1. Forzamos que la sección sea un bloque independiente */
#diagnostico-form {
    display: block !important;
    width: 100% !important;
    padding: 120px 0 !important; /* Mucho más espacio arriba y abajo */
    background-color: #fff5f8 !important; 
    clear: both !important;
}

/* 2. El contenedor del formulario (La tarjeta blanca) */
#diagnostico-form .item-metodo {
    max-width: 750px !important;
    margin: 0 auto 100px auto !important; /* El 100px final empuja el footer hacia abajo */
    background: #ffffff !important;
    padding: 60px 50px !important;
    border: 1px solid #fce4ec !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05) !important;
    border-radius: 12px !important;
    position: relative !important;
    z-index: 10 !important;
}

/* 3. Títulos y Campos para que no se vean amontonados */
#diagnostico-form h2.section-title {
    margin-bottom: 30px !important;
}

#diagnostico-form label {
    display: block !important;
    margin-top: 25px !important; /* Espacio entre cada pregunta */
    font-weight: 800 !important;
    font-size: 13px !important;
    color: #000 !important;
}

#diagnostico-form select, 
#diagnostico-form input, 
#diagnostico-form textarea {
    margin-top: 10px !important;
    border: 1px solid #e5e7eb !important;
    background: #fafafa !important;
}

/* 4. El Footer (Aseguramos que empiece después) */
footer {
    position: relative !important;
    z-index: 5 !important;
    margin-top: 0 !important;
    clear: both !important;
}

