@charset "UTF-8";

/* ============================================
   BINAS LOGO & BRANDING STYLES
   Estilos para el logo y branding de BINAS
   
📌 Propósito: Estilos del logo SVG y texto
   📅 Actualizado: Enero 2025
   🎯 Parte de: FASE 7 - Limpieza de estilos inline
   ============================================ */

/* ==========================================
   BRANDING CONTAINER
   ========================================== */
.binas-branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 0.75rem;
}

/* ==========================================
   LOGO ICON (SVG)
   ========================================== */
.binas-icon {
    width: 4rem;
  height: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.15));
}

/* ==========================================
   TEXT CONTAINER
   ========================================== */
.binas-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
    overflow: hidden;
}

.binas-title {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--binas-navy); /* azul-principal Argentina theme */
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
    white-space: nowrap;
}

.binas-subtitle {
    font-family: 'Lora', serif;
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--binas-navy);
    line-height: 1.3;
    max-width: 300px;
}

/* ==========================================
   RESPONSIVE ADJUSTMENTS
   ========================================== */

/* Mobile: compact — icon + title only, no subtitle */
@media (max-width: 575.98px) {
    .binas-branding {
        gap: 0.4rem;
    }

    .binas-icon {
        width: 2.8rem;
        height: 1.75rem;
    }

    .binas-title {
        font-size: 1.1rem;
    }

    .binas-subtitle {
        display: none;
    }
}

/* Small tablets */
@media (min-width: 576px) and (max-width: 991.98px) {
    .binas-branding {
        gap: 0.5rem;
    }

    .binas-icon {
        width: 3rem;
        height: 2rem;
    }

    .binas-title {
        font-size: 1.2rem;
    }

    .binas-subtitle {
        display: none;
    }
}

/* Tablet */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .binas-icon {
        width: 3.5rem;
        height: 2.2rem;
    }

    .binas-title {
        font-size: 1.3rem;
    }

    .binas-subtitle {
        font-size: 0.6rem;
        max-width: 250px;
    }
}

/* Desktop Large */
@media (min-width: 1200px) {
    .binas-icon {
        width: 4.5rem;
        height: 3rem;
    }

    .binas-title {
        font-size: 1.6rem;
    }
}

/* ==========================================
   END OF BINAS LOGO STYLES
   ========================================== */
