/* ==========================================================================
   ESTRUCTURA DE NAVEGACIÓN (HEADER)
   ========================================================================== */
.main-header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 3px solid var(--color-secondary);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
    width: auto;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-titles);
    font-size: 1.6rem;
    color: var(--color-primary);
    font-weight: normal;
    line-height: 1.1;
}

.logo-slogan {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 2px;
}

/* Navegación de Escritorio */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: var(--color-primary);
    font-weight: 600;
    font-stretch: semi-condensed;
    font-size: 1.05rem;
    position: relative;
    padding: 8px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width var(--transition-normal);
}

.main-nav a:hover {
    color: var(--color-secondary);
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Menú Móvil Hamburguesa */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 110;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 3px;
    transition: transform var(--transition-normal), opacity var(--transition-normal);
}

/* ==========================================================================
   FOOTER (PIE DE PÁGINA)
   ========================================================================== */
.main-footer {
    background-color: var(--color-text-main);
    color: var(--color-white);
    padding: 80px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--color-neutral-bg);
    margin-top: 16px;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    background-color: rgba(255, 255, 255, 0.08);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast);
}

.social-link:hover {
    background-color: var(--color-secondary);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-col h4 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 700;
    font-stretch: semi-condensed;
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: var(--color-secondary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--color-neutral-bg);
    font-size: 0.95rem;
}

.footer-col ul a:hover {
    color: var(--color-secondary);
}

.footer-hours li {
    font-size: 0.95rem;
    color: var(--color-neutral-bg);
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
}

.footer-hours li span:first-child {
    font-weight: 600;
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-neutral-bg);
}
