/* ==================== HEADER MINIMALISTA CON IMAGEN IZQUIERDA ==================== */

/* Header principal */
.header {
    background: linear-gradient(90deg, var(--red-two) 25%, var(--red-one) 73%);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
}

/* Contenedor principal - imagen a la izquierda */
.header-container {
    display: flex;
    align-items: center;
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==================== BOTÓN IZQUIERDA CON IMAGEN ==================== */
.header-left-btn {
    background: none;
    border: none;
    padding: 4px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}


.header-left-img {
    height: 70px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet (1024px) */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 1.5rem;
    }
    
    .header-left-img {
        height: 45px;
    }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    .header {
        padding: 0.6rem 0;
    }
    
    .header-container {
        padding: 0 1.25rem;
    }
    
    .header-left-img {
        height: 40px;
    }
    
    .header-left-btn {
        padding: 6px;
    }
}

/* Mobile pequeño (480px) */
@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .header-left-img {
        height: 36px;
    }
}