/* mobile-menu.css */
.mobile-nav-componente {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-primary, #32004F);
    z-index: 1000;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.menu-toggle-componente {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu-componente {
    position: fixed;
    top: 60px; /* Height of mobile nav */
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-primary, #32004F);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu-componente.active-componente {
    transform: translateX(0);
}

.mobile-menu-componente a {
    color: var(--color-accent-turquoise, #33E5A4);
    text-decoration: none;
    padding: 1rem;
    border-bottom: 1px solid rgba(51, 229, 164, 0.2);
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-family: var(--font-heading, 'Baloo 2', cursive);
}

.mobile-menu-componente a:hover {
    background-color: rgba(51, 229, 164, 0.1);
}

.social-icons-componente {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    color: white;
}

.social-icons-componente a {
    color: white;
    font-size: 1.5rem;
    border: none;
}

.header-cta-button.mobile-cta-componente {
    background-color: white;
    color: var(--color-primary, #32004F);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1.05rem;
    font-family: var(--font-heading, 'Baloo 2', cursive);
    letter-spacing: 0.01em;
}

.header-cta-button.mobile-cta-componente:hover {
    background-color: #f0f0f0;
}
