/* ===================================== */
/* RESET */
/* ===================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===================================== */
/* BASE */
/* ===================================== */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f9fafb;
    color: #111827;
}

/* ===================================== */
/* HEADER */
/* ===================================== */
.PanelBotones {
    width: 100%;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;

    /* efecto cristal claro */
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* ===================================== */
/* MENÚ */
/* ===================================== */
.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

/* LINKS */
/* ===================================== */
.menu a {
    text-decoration: none;
    color: #374151;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;

    position: relative;
    padding: 6px 0;

    transition: all 0.25s ease;
}

/* SUBRAYADO BASE */
.menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0%;
    height: 2px;
    border-radius: 2px;

    transform: translateX(-50%);
    transition: width 0.3s ease;
}

/* HOVER GENERAL */
.menu a:hover::after {
    width: 100%;
}

/* ===================================== */
/* COLORES CORPORATIVOS POR BOTÓN */
/* ===================================== */

/* Inicio */
.menu a:nth-child(1)::after {
    background-color: #BDE1DD; /* azul/índigo */
}

/* Proyectos */
.menu a:nth-child(2)::after {
    background-color: #0DAF99; /* cyan */
}

/* Productos */
.menu a:nth-child(3)::after {
    background-color: #AD1450; /* verde */
}

/* Método Shinka */
.menu a:nth-child(4)::after {
    background-color: #E94E1B; /* naranja */
}

/* Formación */
.menu a:nth-child(5)::after {
    background-color: #BDE1DD; /* rojo */
}
/* Contacto */
.menu a:nth-child(6)::after {
    background-color: #BDE1DD; /* rojo */
}

/* CLICK */
.menu a:active {
    transform: scale(0.95);
}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */
@media (max-width: 768px) {
    .menu {
        gap: 25px;
        flex-wrap: wrap;
    }

    .menu a {
        font-size: 14px;
    }
}