
/* ===============================
   SIDE MENU
=================================*/
#side-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: #001f3f;
    display: flex;
    flex-direction: column;
    padding: 80px 30px;
    transition: 0.4s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    z-index: 2000;
}

#side-menu.active {
    right: 0;
}

#side-menu a {
    color: white;
    text-decoration: none;
    margin: 20px 0;
    font-size: 1.1rem;
}
/* Fondo con figuras tipo contenedores */
.about-bg-shapes {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 2px, transparent 2px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 2px, transparent 2px);
    background-size: 120px 80px;
}

/* Contenedor principal */
.about-page {
    padding: 60px 20px 80px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

/* Título principal */
.about-title {
    font-size: 3.5rem;
    color: #f4efef;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.about-line {
    width: 90px;
    height: 4px;
    background-color: #ffffff;
    margin: 5px auto 30px;  
    border-radius: 5px;
}
.about-title {
    text-align: center;
    margin-bottom: 5px; 
}
/* Subtítulo corporativo */
.about-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Párrafos */
.about-page p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===============================
   MISION / VISION DINÁMICO
=================================*/

.about-grid {
    margin-top: 20px; 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.about-card {
    background: rgba(255,255,255,0.04);
    padding: 20px 25px; 
    border-radius: 12px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.35s ease;
    cursor: pointer;
}

/* Título */
.about-card h3 {
    font-size: 2rem;
    letter-spacing: 2px;
    margin: 0;
}

/* Texto oculto */
.about-card p {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0;
    transition: all 0.3s ease;
}

/* Estado activo */
.about-card.active {
    padding: 30px 30px; 
}

.about-card.active p {
    max-height: 800px;
    opacity: 1;
    margin-top: 15px;
}
/* ===============================
   CHATBOT
=================================*/
.chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #ff1e1e;
    border: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    z-index: 5000;
}

.chatbot {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 340px;
    height: 480px;
    background: #002b55;
    border-radius: 20px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
    z-index: 5000;
}

.chatbot.active {
    display: flex;
}

.chat-header {
    background: #001f3f;
    padding: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-avatar {
    background: #ff1e1e;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.chat-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    max-width: 75%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 14px;
}

.message.bot {
    background: #e6f2ff;
    color: #001f3f;
    align-self: flex-start;
}

.message.user {
    background: #ff1e1e;
    color: white;
    align-self: flex-end;
}

.chat-footer {
    display: flex;
    padding: 10px;
    background: #001f3f;
}

.chat-footer input {
    flex: 1;
    padding: 10px;
    border-radius: 20px;
    border: none;
}

.chat-footer button {
    background: #ff1e1e;
    border: none;
    margin-left: 10px;
    padding: 10px 15px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
}

/* ===============================
   CHATBOT RESPONSIVE
=================================*/

@media (max-width:500px){

.chatbot{
    width:90%;
    right:5%;
    height:420px;
}

.chat-toggle{
    width:55px;
    height:55px;
}

}
/* ===============================
   FOOTER
=================================*/
.main-footer {
    width: 100%;
    background: #000b1e;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-content {
    padding: 20px 10px;
}

.main-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    padding: 25px 10px;
    opacity: 0.8;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

.footer-content{
    text-align: center;
    padding-top: 15px;
}

.partner{
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.copyright{
    font-size: 13px;
    opacity: 0.8;
}


/* ===== HERO RECTANGULAR AZUL ===== */
.about-hero {
    background-color: #0b2f4a;
    padding: 120px 20px;
    text-align: center;
    color: white;
    position: relative;
}

/* Contenido centrado */
.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Título */
.about-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

/* Línea roja */
.about-line {
    width: 90px;
    height: 4px;
    background-color: #ff2d2d;
    margin: 5px auto 25px;
    border-radius: 5px;
}

/* Subtítulos */
.about-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}
/* ===============================
   HERO CON IMAGEN
=================================*/
.about-hero-image {
    position: relative;
    height: 90vh;
    background: url("BARCO ATARDECER.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-left: 8%;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 4rem; 
    color: #ff2d2d;
    font-weight: 700;
    letter-spacing: 3px;

    /* sombra para que destaque del fondo */
    text-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
}

.hero-text p {
    font-size: 1.3rem;
    max-width: 500px;
}
/* ===============================
   BLOQUE AZUL INFERIOR
=================================*/
.about-blue-section {
    background-color: #0b2f4a;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.about-blue-section p {
    max-width: 800px;
    margin: 20px auto;
    line-height: 1.7;
}

/* ===============================
   FRANJA ENTRE SECCIONES
=================================*/
.company-strip {
    background: linear-gradient(90deg, #0b2f4a, #124d75, #0b2f4a);
    padding: 25px 20px;
    text-align: center;
    position: relative;
}

.company-strip-content {
    color: white;
    font-size: 1.2rem;
    letter-spacing: 3px;
    font-weight: 600;
}

/* Línea superior e inferior sutil */
.company-strip::before,
.company-strip {
    width: 100%;
    padding: 18px 10px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,0.2);
}

.company-strip::before {
    top: 0;
}

.company-strip::after {
    bottom: 0;
}

/* ======================================
   NUEVO LAYOUT ABOUT BLUE SECTION
====================================== */

.about-blue-section {
    background-color: #0b2f4a;
    padding: 70px 8%; 
    color: white;
}

/* Contenedor flex */
.about-blue-section .about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Imagen izquierda */
.about-blue-section .about-image img {
    width: 420px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Texto derecha */
.about-blue-section .about-content {
    max-width: 600px;
    text-align: left;
}

/* Títulos más pequeños */
.about-blue-section .about-title {
    font-size: 2.2rem;
    margin-bottom: 5px;
    text-align: left;
}

/* Línea roja alineada a la izquierda */
.about-blue-section .about-line {
    margin: 5px 0 15px 0;
}

/* Espacio más compacto entre textos */
.about-blue-section p {
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 1.05rem;
}

@media (max-width: 900px) {

    .about-blue-section .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-blue-section .about-content {
        text-align: center;
    }

    .about-blue-section .about-image img {
        width: 90%;
    }

    .about-blue-section .about-line {
        margin: 5px auto 15px auto;
    }
}

section {
    transition: all 0.3s ease;
}

/* OCULTAR BARRA SUPERIOR */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

/* EVITAR QUE BAJE EL BODY */
body {
    top: 0px !important;
}

/* OCULTAR SELECTOR INFERIOR */
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-te-menu-frame {
    display: none !important;
}

/* OCULTAR WIDGET DE GOOGLE */
.goog-te-gadget {
    display: none !important;
}

/* OCULTAR LOGO GOOGLE */
.goog-logo-link {
    display: none !important;
}

/* ===============================
   CONTACT RESPONSIVE
=================================*/

@media (max-width:600px){

.contact-item{
    flex-direction: column;
    gap:8px;
}

.contact-icon{
    font-size:18px;
}

}

/* ===============================
   PANTALLAS GRANDES
=================================*/

@media (min-width:1600px){

.slide h1{
    font-size:3.5rem;
}

.slide h2{
    font-size:4rem;
}

.slide p{
    font-size:1.3rem;
}

.services-section{
    max-width:1200px;
}

.section{
    padding:120px 20px;
}

}

img{
    max-width:100%;
    height:auto;
}

/* ===============================
   MOBILE FIX (TELEFONOS)
=================================*/

@media (max-width:480px){

/* HEADER */
header{
    height:70px;
    padding:0 10px;
}

.logo-center{
    font-size:0.9rem;
    text-align:center;
}

.logo-left{
    left:10px;
    gap:8px;
}

.logo-item{
    width:35px;
    height:35px;
}

.header-controls{
    right:10px;
}

/* CARRUSEL */

.carousel{
    padding:100px 15px 60px;
}

.slide h1{
    font-size:1.4rem;
}

.slide h2{
    font-size:1.8rem;
}

.slide p{
    font-size:0.9rem;
}

/* BOTONES DEL CARRUSEL */

.carousel-btn{
    width:35px;
    height:35px;
    font-size:18px;
}

.carousel-btn.prev{
    left:10px;
}

.carousel-btn.next{
    right:10px;
}

/* SERVICES */

.services-overlay{
    flex-direction:column;
}

.services-section{
    height:auto;
}

.service-item{
    padding:25px;
}

/* ABOUT */

.section{
    padding:70px 20px;
    text-align:center;
}

.section h2{
    font-size:1.6rem;
}

.section p{
    font-size:0.95rem;
    line-height:1.6;
    text-align:center;
}

/* IMAGEN GRANDE */

.full-image-section{
    height:350px;
    background-position:center;
}

/* CONTACT */

.contact-container{
    padding:0 15px;
}

.contact-item{
    flex-direction:column;
    align-items:center;
    text-align:center;
}

/* CHATBOT */

.chatbot{
    width:90%;
    right:5%;
    height:420px;
}

}

/* ===== HEADER PARA TELEFONOS ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: url("images_contenedores.jpg") center/cover no-repeat fixed;
    color: white;
    overflow-x: hidden;
}

/* Overlay oscuro global */
.background-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(
        rgba(0, 15, 40, 0.85),
        rgba(0, 25, 60, 0.9)
    );
    z-index: -1;
}

/* ===============================
   HEADER
=================================*/

header {
    position: fixed;
    width: 100%;
    height: 75px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

/* Logo izquierda */
.logo-left {
    position: absolute;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo-item {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center; /
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;   /* mantiene proporción */
}
/* efecto sutil */
.logo-left img:hover {
    transform: scale(1.08);
}

/* Texto centrado */
.logo-center {
    font-size: 1.6rem; 
    font-weight: bold;
    letter-spacing: 2px;
}
/* Controles derecha */
.header-controls {
    position: absolute;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 768px) {
    .logo-left img {
        height: 40px;
    }
}

/* ===============================
   RESPONSIVE HEADER
=================================*/

@media (max-width: 900px){

header{
    padding: 0 20px;
}

.logo-center{
    font-size: 1.1rem;
    text-align: center;
}

.logo-left{
    left: 15px;
}

.header-controls{
    right: 15px;
}

.logo-item{
    width: 45px;
    height: 45px;
}

}
/* ===============================
   SIDE MENU
=================================*/
#side-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: #001f3f;
    display: flex;
    flex-direction: column;
    padding: 80px 30px;
    transition: 0.4s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    z-index: 2000;
}

#side-menu.active {
    right: 0;
}

#side-menu a {
    color: white;
    text-decoration: none;
    margin: 20px 0;
    font-size: 1.1rem;
}

/* ===============================
   CONTACTO PRO CUADRADO AZUL
=================================*/

.contact-section-pro {
    padding: 120px 20px;
    display: flex;
    justify-content: center;
}

.contact-box {
    width: 100%;
    max-width: 900px;
    background-color: #0b2f4a;
    padding: 60px 50px;
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

/* Título */
.contact-box h2 {
    text-align: center;
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contact-line {
    width: 80px;
    height: 4px;
    background: #ff2d2d;
    margin: 15px auto 40px;
    border-radius: 4px;
}

/* Formulario */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Filas dobles */
.form-row {
    display: flex;
    gap: 25px;
}

/* Grupos */
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    outline: none;
}

/* Área mensaje ocupa todo */
.full-width {
    width: 100%;
}

/* Botón */
.contact-btn {
    margin-top: 10px;
    padding: 14px;
    background: #ff2d2d;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .contact-box {
        padding: 40px 25px;
    }
}

/* ===============================
   CONTACT RESPONSIVE
=================================*/

@media (max-width:600px){

.contact-item{
    flex-direction: column;
    gap:8px;
}

.contact-icon{
    font-size:18px;
}

}
/* ===============================
   CHATBOT
=================================*/
.chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #ff1e1e;
    border: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    z-index: 5000;
}

.chatbot {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 340px;
    height: 480px;
    background: #002b55;
    border-radius: 20px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
    z-index: 5000;
}

.chatbot.active {
    display: flex;
}

.chat-header {
    background: #001f3f;
    padding: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-avatar {
    background: #ff1e1e;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.chat-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    max-width: 75%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 14px;
}

.message.bot {
    background: #e6f2ff;
    color: #001f3f;
    align-self: flex-start;
}

.message.user {
    background: #ff1e1e;
    color: white;
    align-self: flex-end;
}

.chat-footer {
    display: flex;
    padding: 10px;
    background: #001f3f;
}

.chat-footer input {
    flex: 1;
    padding: 10px;
    border-radius: 20px;
    border: none;
}

.chat-footer button {
    background: #ff1e1e;
    border: none;
    margin-left: 10px;
    padding: 10px 15px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
}

/* ===============================
   CHATBOT RESPONSIVE
=================================*/

@media (max-width:500px){

.chatbot{
    width:90%;
    right:5%;
    height:420px;
}

.chat-toggle{
    width:55px;
    height:55px;
}

}
/* ===============================
   GOOGLE MAPS
=================================*/

.map-container {
    margin-top: 50px;
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
/* ===============================
   FOOTER
=================================*/
.main-footer {
    width: 100%;
    background: #000b1e;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-content {
    padding: 20px 10px;
}

.main-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    padding: 25px 10px;
    opacity: 0.8;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

.footer-content{
    text-align: center;
    padding-top: 15px;
}

.partner{
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.copyright{
    font-size: 13px;
    opacity: 0.8;
}

/* OCULTAR BARRA SUPERIOR */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

/* EVITAR QUE BAJE EL BODY */
body {
    top: 0px !important;
}

/* OCULTAR SELECTOR INFERIOR */
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-te-menu-frame {
    display: none !important;
}

/* OCULTAR WIDGET DE GOOGLE */
.goog-te-gadget {
    display: none !important;
}

/* OCULTAR LOGO GOOGLE */
.goog-logo-link {
    display: none !important;
}

/* ===============================
   PANTALLAS GRANDES
=================================*/

@media (min-width:1600px){

.slide h1{
    font-size:3.5rem;
}

.slide h2{
    font-size:4rem;
}

.slide p{
    font-size:1.3rem;
}

.services-section{
    max-width:1200px;
}

.section{
    padding:120px 20px;
}

}

img{
    max-width:100%;
    height:auto;
}

/* ===============================
   MOBILE FIX (TELEFONOS)
=================================*/

@media (max-width:480px){

/* HEADER */
header{
    height:70px;
    padding:0 10px;
}

.logo-center{
    font-size:0.9rem;
    text-align:center;
}

.logo-left{
    left:10px;
    gap:8px;
}

.logo-item{
    width:35px;
    height:35px;
}

.header-controls{
    right:10px;
}

/* CARRUSEL */

.carousel{
    padding:100px 15px 60px;
}

.slide h1{
    font-size:1.4rem;
}

.slide h2{
    font-size:1.8rem;
}

.slide p{
    font-size:0.9rem;
}

/* BOTONES DEL CARRUSEL */

.carousel-btn{
    width:35px;
    height:35px;
    font-size:18px;
}

.carousel-btn.prev{
    left:10px;
}

.carousel-btn.next{
    right:10px;
}

/* SERVICES */

.services-overlay{
    flex-direction:column;
}

.services-section{
    height:auto;
}

.service-item{
    padding:25px;
}

/* ABOUT */

.section{
    padding:70px 20px;
    text-align:center;
}

.section h2{
    font-size:1.6rem;
}

.section p{
    font-size:0.95rem;
    line-height:1.6;
    text-align:center;
}

/* IMAGEN GRANDE */

.full-image-section{
    height:350px;
    background-position:center;
}

/* CONTACT */

.contact-container{
    padding:0 15px;
}

.contact-item{
    flex-direction:column;
    align-items:center;
    text-align:center;
}

/* CHATBOT */

.chatbot{
    width:90%;
    right:5%;
    height:420px;
}

}

/* ===============================
   HEADER
=================================*/

header{
position:fixed;
width:100%;
height:75px;
padding:0 40px;
display:flex;
align-items:center;
justify-content:center;
background:rgba(0,0,0,0.5);
backdrop-filter:blur(8px);
z-index:1000;
}

/* logos */

.logo-left{
position:absolute;
left:40px;
display:flex;
align-items:center;
gap:15px;
}

.logo-item{
width:70px;
height:70px;
display:flex;
align-items:center;
justify-content:center;
}

.logo-item img{
max-width:100%;
max-height:100%;
object-fit:contain;
}

.logo-left img:hover{
transform:scale(1.08);
}

/* texto */

.logo-center{
font-size:1.6rem;
font-weight:bold;
letter-spacing:2px;
}

/* controles */

.header-controls{
position:absolute;
right:40px;
display:flex;
align-items:center;
gap:15px;
}

/* ===============================
HEADER FIX DEFINITIVO MOBILE
=================================*/
@media (max-width: 768px) {
    header {
        display: flex;
        flex-wrap: wrap; 
        align-items: center;
        /* Esto fuerza a que los elementos se peguen a los bordes y el centro */
        justify-content: space-between; 
        padding: 10px 15px;
        height: auto;
    }

/* IDIOMA */

.header-controls{
position:static !important;
order:1;
width:33%;
display:flex;
justify-content:flex-start;
}

header{
position:relative;
}

    /* 2. LOGOS (Centro exacto) */
    .logo-left {
        flex: 1; /* Ocupa 1/3 del espacio */
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        order: 2;
        position: static !important;
    }

    /* 3. MENÚ (Derecha del todo) */
.menu-toggle {
    cursor: pointer;
}

    /* 4. TEXTO DEBAJO */
    .logo-center {
        width: 100%; /* Toma todo el ancho para bajar */
        text-align: center;
        order: 4;
        margin-top: 15px;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    /* Ajuste de logos para que no se amontonen */
    .logo-left img {
        height: 26px !important; 
        width: auto;
        object-fit: contain;
    }
}