/* --- RESET GENERAL --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #fff;
    color: #222;
    overflow-x: hidden;
}

/* --- TOP BAR NARANJA --- */
.top-bar {
    background: #E67E22;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 30px;
    font-size: 14px;
}

.top-bar .social-icons a {
    color: #fff;
    margin-right: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar .social-icons a:hover {
    color: #000;
}

.top-bar .mail-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.top-bar .mail-link:hover {
    text-decoration: underline;
}

/* --- HEADER PRINCIPAL --- */
.main-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background-color: #f8f9fa;
    border-bottom: 3px solid #E67E22;
    gap: 25px;
    flex-wrap: wrap;
}

.site-logo img {
    height: 50px;
    width: auto;
    display: block;
}

/* --- MENÚ PRINCIPAL --- */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    overflow: visible; /* SIN SCROLL Y SIN BARRAS GRISES */
}

.main-nav ul.nav-container {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 22px;

    /* Siempre en una sola línea por defecto */
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-item {
    position: relative;
}

.main-nav .nav-item a {
    text-decoration: none;
    color: #003366;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.main-nav .nav-item a i {
    margin-right: 6px;
    color: #E67E22;
    font-size: 17px;
}

.main-nav .nav-item a:hover {
    color: #E67E22;
}

/* --- SUBMENÚ PRINCIPAL (Primer Nivel) --- */
.submenu-animado {
    position: absolute;
    top: 100%;
    left: 0;

    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    min-width: 240px;
    padding: 8px 0;

    z-index: 1000;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);

    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-item:hover > .submenu-animado {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.submenu-animado li a {
    display: block;
    padding: 10px 20px;
    color: #003366;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.submenu-animado li a:hover {
    background: #E67E22;
    color: #fff;
}

/* --- SUBMENÚ SECUNDARIO (Segundo Nivel) --- */
.submenu-secundario-animado {
    position: absolute;
    top: 0;
    right: 100%;

    background: #E67E22;
    border-radius: 6px;
    min-width: 150px;
    border: 1px solid #D35400;

    z-index: 1000;

    visibility: hidden;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.has-submenu-secondary:hover > .submenu-secundario-animado {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.submenu-secundario-animado li a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.submenu-secundario-animado li a:hover {
    background-color: #D35400;
}

@media (max-width: 1100px) {
    .main-nav ul.nav-container a {
        font-size: 14px;
        padding: 4px 0;
    }
    .main-nav ul.nav-container {
        gap: 15px;
    }
}

@media (max-width: 900px) {
    .main-nav ul.nav-container {
        flex-wrap: wrap;
        white-space: normal;
        justify-content: center;
        gap: 15px;
    }

    .main-nav ul.nav-container a {
        font-size: 13px;
    }

    .site-logo img {
        height: 40px;
    }
}
