@media (max-width: 768px) {
    header {
        display:flex;
        justify-content: space-between;
        background-color: #000;
        padding: 10px 10px;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 10
    }

    .logo {
        height: 30px;
        margin-top: 10px;
        margin-left: 10px;
    }

    .menu-btn {
        display: none
    }
}




/* Estilos para el botón WhatsApp */
.ingresar-header-btn {
    background: #c49832;
    border: none;
    border-radius: 25px;
    padding: 8px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.anular-estilos {
    text-decoration: none;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 14px;
    display: block;
    width: 140px;
    height: 30px;
}

.ingresar-header-btn:hover {
    background: #dfaf40;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 152, 50, 0.4);
}

.ingresar-header-btn:active {
    transform: translateY(0);
}

/* Efectos hover solo para desktop */
@media (hover: hover) and (pointer: fine) {
    .ingresar-header-btn:hover {
        background: #dfaf40;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(196, 152, 50, 0.4);
    }
}

/* Versión móvil */
@media (max-width: 768px) {
    .ingresar-header-btn {
        width: 100%; /* Ocupar ancho completo en móviles */
        max-width: 200px; /* Máximo ancho para pantallas pequeñas */
        margin-right: 10px; /* Centrado en móviles */
        margin-top: 10px;
        padding: 10px 20px;
        border-radius: 20px;
    }
    
    .anular-estilos {
        font-size: clamp(12px, 3.5vw, 14px); /* Tamaño más responsive */
        width: auto; /* Ancho automático en móvil */
    }
}

/* Versión para pantallas muy pequeñas (ej: smartphones pequeños) */
@media (max-width: 480px) {
    .ingresar-header-btn {
        max-width: 160px;
        padding: 8px 15px;
    }
    
    .anular-estilos {
        font-size: 12px;
    }
}