:root {
    --dark-blue: #002035;
    --gold: #e2c087;
    --black: #000000;
    --white: #ffffff;
    --util-h: 40px;
}

body {
    font-family: "Barlow", sans-serif;
}

/* MEJORA: Evita el scroll del fondo cuando el menú móvil está abierto */
body.menu-open {
    overflow: hidden;
}

.util-bar {
    height: var(--util-h);
    backdrop-filter: saturate(160%) blur(8px);
}

.card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1rem;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.icon-ring {
    display: grid;
    place-items: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    background: rgba(226, 192, 135, 0.15);
}

.form-shell {
    padding: 1px;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--gold), #f6deb3, var(--gold));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.form-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
}

.form-input {
    width: 100%;
    border: 1px solid #d1d5db;
    background: #f8fafc;
    padding: 0.75rem 1rem;
    border-radius: 0.65rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(226, 192, 135, 0.35);
}

.btn-secondary {
            background: var(--gold);
            color: var(--dark-blue);
            font-weight: 800;
            border-radius: 0.75rem;
            padding: 0.75rem 1.5rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

/* CORRECCIÓN CRÍTICA: Lógica del menú móvil mejorada */
.mobile-drawer {
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer.open {
    transform: translateX(0);
    visibility: visible;
}

.nav-link.active {
    background: #e2c087; /* El color dorado que usas */
    color: #002035;      /* El color azul oscuro del texto */
}