/* ======================================================
   NAVBAR
====================================================== */

.navbar-mundo{
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
padding:10px 0;
}

/* mantener todo en una sola fila */

.navbar-mundo .container{
max-width:95%;
display:flex;
align-items:center;
flex-wrap:nowrap;
}

/* MARCA */

.navbar-brand{
display:flex;
align-items:center;
flex-wrap:wrap;
white-space:normal;
max-width:100%;
}

/* BOTON HAMBURGUESA */

.navbar-toggler{
margin-left:auto;
flex-shrink:0;
}

/* ======================================================
   LOGO NAV
====================================================== */

.logo-menu{
width:120px;
height:60px;
object-fit:contain;
border-radius:8px;
margin-right:10px;
flex-shrink:0;
}

/* ======================================================
   TEXTO MARCA
====================================================== */

.brand-text{
display:flex;
flex-direction:column;
line-height:1;
min-width:0;
}

/* TITULO */

.brand-top{
font-weight:700;
font-size:20px;
letter-spacing:4.5px; /* AUMENTAR ESPACIO ENTRE LETRAS */
color:#cc0000;
white-space:nowrap; /* evita salto de línea */
}

/* FRASE */

.brand-bottom{
font-weight:600;
font-size:10px;
color:#000;
letter-spacing:1px; /* más estilo slogan */
white-space:nowrap;
}

/* ======================================================
   LINKS MENU
====================================================== */

.navbar-mundo .nav-link{
color:#000;
font-weight:600;
font-size:19px;
margin-left:20px;
transition:0.3s;
}

.navbar-mundo .nav-link:hover{
color:#cc0000;
}

/* ======================================================
   DROPDOWN
====================================================== */

.dropdown-menu{
border-radius:6px;
border:none;
box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.dropdown-item{
font-size:16px;
}

.dropdown-item:hover{
background:#cc0000;
color:white;
}

/* ======================================================
   OFFCANVAS MENU MOVIL
====================================================== */

.offcanvas{
background:white;
}

.offcanvas .nav-link{
font-size:18px;
}

/* logo en menú móvil */

.offcanvas-logo{
width:35px;
margin-right:8px;
object-fit:contain;
}

/* texto menú móvil */

.offcanvas-title-main{
display:block;
color:#cc0000;
font-weight:700;
line-height:1.1;
}

.offcanvas-title-sub{
display:block;
color:#000;
font-size:13px;
line-height:1.1;
}

/* ======================================================
   BANNER
====================================================== */

.site-header{
width:100%;
min-height:420px;
background:url("../images/prueba1.jpg") center center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
position:relative;
color:white;
text-align:center;
}

/* overlay rojo */

.site-header::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(180,0,0,0.55);
z-index:1;
}

.banner-overlay{
position:relative;
z-index:2;
width:100%;
padding:60px 20px;
}

/* ======================================================
   LOGO HEADER
====================================================== */

.logo-banner{
width:300px;
margin-bottom:20px;
border-radius:50%;
}

/* ======================================================
   TITULO BANNER
====================================================== */

.banner-content h1{
font-size:52px;
font-weight:700;
letter-spacing:2px;
margin-bottom:10px;
}

.banner-content p{
font-size:22px;
margin-bottom:6px;
}

/* ======================================================
   BOTONES BANNER
====================================================== */

.banner-buttons{
margin-top:25px;
}

.btn-banner{
padding:12px 30px;
font-size:18px;
margin:10px;
border-radius:30px;
font-weight:600;
}

.btn-servicios{
background:#ffffff;
color:#cc0000;
border:none;
transition:all .3s ease;
}

.btn-servicios:hover{
background:#cc0000;
color:white;
}

.btn-ofertas{
background:#000000;
color:#ffffff;
border:none;
}

.btn-ofertas:hover{
background:#222;
}

/* =========================================
   OFFCANVAS BRAND (LOGO + TEXTO EN FILA)
========================================= */

.offcanvas-brand{
display:flex;
align-items:center;
gap:8px;
margin:0;
flex-wrap:nowrap;
}

/* logo */

.offcanvas-logo{
width:35px;
height:auto;
object-fit:contain;
flex-shrink:0;
}

/* contenedor texto */

.offcanvas-text{
display:flex;
flex-direction:column;
line-height:1.05;
}


/* titulo */

.offcanvas-title-main{
color:#cc0000;
font-weight:700;
font-size:18px;   /* aumentar tamaño */
letter-spacing:1px;
line-height:1.2;
}

/* frase */

.offcanvas-title-sub{
color:#000;
font-size:10px;
line-height:1.2;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width:768px){

/* HEADER */

.site-header{
min-height:300px;
}

.banner-content h1{
font-size:32px;
letter-spacing:2px;
}

.banner-content p{
font-size:16px;
letter-spacing:2px;
}

.logo-banner{
width:150px;
}

/* NAVBAR */

.navbar-mundo{
padding:6px 0;
}

/* logo nav */

.logo-menu{
width:40px;
height:30px;
margin-right:6px;
}

/* texto marca */

.brand-top{
font-size:14px;
letter-spacing:1px; /* ESCALA DEL LOGOTIPO */
}

.brand-bottom{
font-size:7px;
letter-spacing:0.8px;
}

/* mantener todo en una fila */

.navbar-brand{
flex-direction:row;
align-items:center;
}

/* links menú */

.navbar-mundo .nav-link{
font-size:16px;
}

}


/* ======================================================
   PANTALLAS GRANDES
====================================================== */

@media (min-width:1200px){

.logo-menu{
width:130px;
height:65px;
}

.brand-top{
letter-spacing:4.5px; /* TU LOGOTIPO PRINCIPAL */
}

.brand-bottom{
letter-spacing:1.2px;
}

}


/* ======================================================
   NAV TEXTO EN PANTALLAS GRANDES
====================================================== */

@media (min-width:992px){

.brand-bottom{
font-size:13px;
letter-spacing:1.2px;
}


}