:root{

--amarillo-principal:#F2BA1A;
--amarillo-claro:#F9E76E;
--naranja-ambar:#C7690C;
--cafe-principal:#733F18;
--cafe-oscuro:#2F0F06;
--verde-accion:#2E7D32;
--blanco-crema:#FFFDFC;
--gris-claro:#F5F5F5;

--gradiente-principal:linear-gradient(
135deg,
#F9E76E 0%,
#F2BA1A 45%,
#C7690C 100%
);

--gradiente-secundario:linear-gradient(
135deg,
#733F18 0%,
#2F0F06 100%
);

}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

background:var(--blanco-crema);
font-family:'Oswald',sans-serif;
overflow-x:hidden;
color:var(--cafe-oscuro);

}

.container{

width:92%;
max-width:1400px;
margin:auto;

}

/* ================= HEADER ================= */

.header-halita{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    padding:25px 0;
}

.header-halita .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    height:195px;
}

.menu ul{
    display:flex;
    gap:35px;
    list-style:none;
}

.menu a{
    text-decoration:none;
    color:white;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    transition:.3s;
}

.menu a:hover{
    color:var(--amarillo-principal);
}

.menu .active{
    color:var(--amarillo-principal);
}

.mobile-btn{
    display:none;
    font-size:32px;
    color:white;
    cursor:pointer;
}

/* ================= MOVIL ================= */

@media(max-width:991px){

    .header-halita{
        position:relative;
        background:#fff;
        z-index:999999;
        padding:15px 0;
    }

    .header-halita .container{
        flex-wrap:wrap;
        position:relative;
    }

    .logo img{
        height:100px !important;
    }

    .mobile-btn{
        display:block;
        color:var(--cafe-principal);
    }

    .header-btn{
        display:none;
    }

    .menu{
        display:none;
        width:100%;
        margin-top:15px;
        background:#fff;
        border-radius:15px;
        overflow:hidden;
        box-shadow:0 10px 30px rgba(0,0,0,.15);
        position:relative;
        z-index:999999;
    }

    .menu.active{
        display:block !important;
    }

    .menu ul{
        display:flex;
        flex-direction:column;
        gap:0;
        padding:0;
        margin:0;
    }

    .menu ul li{
        width:100%;
        border-bottom:1px solid #ececec;
    }

    .menu ul li:last-child{
        border-bottom:none;
    }

    .menu a{
        display:block;
        padding:18px;
        color:var(--cafe-oscuro);
        text-align:center;
    }
}
}


/* ================= HERO ================= */

.hero{

position:relative;

min-height:100vh;

background:url('img/fondo-hero.jpg');

background-size:cover;
background-position:center;

display:flex;
align-items:center;

}

.hero-overlay{

position:absolute;

width:100%;
height:100%;

background:
linear-gradient(
90deg,
rgba(0,0,0,.95) 10%,
rgba(0,0,0,.60) 50%,
rgba(0,0,0,.20) 100%
);

}

.hero-grid{

position:relative;
z-index:2;

display:grid;
grid-template-columns:1fr 1fr;

align-items:center;

gap:40px;

}

.hero-left{

color:white;

}

.subtitulo{

color:var(--orange);

font-size:18px;

letter-spacing:4px;

font-weight:600;

}

.hero-left h1{

font-family:'Bebas Neue',sans-serif;

line-height:.9;

margin-top:10px;

}

.hero-left .white{

display:block;

font-size:130px;

color:white;

}

.hero-left .orange{

display:block;

font-size:130px;

color:var(--orange);

}

.linea{

width:180px;
height:2px;

background:var(--orange);

margin:30px 0;

}

.hero-left p{

font-size:20px;

margin-bottom:40px;

}

.hero-buttons{

display:flex;
gap:20px;

}

.btn-orange{

padding:18px 35px;

border-radius:8px;

text-decoration:none;

font-weight:700;

color:white;

background:
linear-gradient(
135deg,
#F9E76E 0%,
#F2BA1A 50%,
#C7690C 100%
);

box-shadow:
0 0 10px rgba(242,186,26,.5),
0 0 25px rgba(242,186,26,.3);

}

.btn-border{

padding:18px 35px;

border:2px solid white;

border-radius:8px;

text-decoration:none;

font-weight:700;

color:white;

}

.hero-right{

text-align:center;

}

.logo-neon{

width:380px;

margin-bottom:-40px;

filter:
drop-shadow(0 0 10px #F2BA1A)
drop-shadow(0 0 25px #F2BA1A)
drop-shadow(0 0 45px #F2BA1A);

}

.hero-food{

width:100%;
max-width:700px;

}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

.menu,
.social{

display:none;

}

.mobile-btn{

display:block;

}

.hero-grid{

grid-template-columns:1fr;

text-align:center;

padding-top:120px;

}

.hero-left .white,
.hero-left .orange{

font-size:90px;

}

.linea{

margin:auto;
margin-top:25px;
margin-bottom:25px;

}

.hero-buttons{

justify-content:center;

}

.logo-neon{

width:280px;

}

}

@media(max-width:576px){

.hero-left .white,
.hero-left .orange{

font-size:70px;

}

.hero-buttons{

flex-direction:column;

}

.btn-orange,
.btn-border{

width:100%;

}

.logo img{

height:150px;

}

}




/* ================================= */
/* MENU */
/* ================================= */

.menu-section{

background:var(--blanco-crema);

padding:100px 0;

}

.section-header{

text-align:center;

margin-bottom:60px;

}

.section-header span{

color:var(--orange);

font-size:14px;

font-weight:700;

letter-spacing:4px;

}

.section-header h2{

margin-top:15px;

font-family:'Bebas Neue',sans-serif;

font-size:70px;

color:white;

line-height:1;

}

.section-header h2 span{

font-size:70px;

color:var(--orange);

letter-spacing:0;

}

.section-line{

width:220px;
height:2px;

background:var(--orange);

margin:25px auto;

}

.menu-grid{

display:grid;

grid-template-columns:
repeat(5,1fr);

gap:20px;

}

.menu-card{

background:var(--cafe-oscuro);

border:1px solid rgba(242,186,26,.5);

transition:.3s;

overflow:hidden;

}

.menu-card:hover{

transform:translateY(-8px);

border-color:var(--orange);

box-shadow:
0 0 20px rgba(242,186,26,.2);

}

.menu-img{

position:relative;

height:250px;

overflow:hidden;

}

.menu-img img{

width:100%;
height:100%;

object-fit:cover;

}

.badge{

position:absolute;

top:10px;
left:10px;

background:var(--orange);

color:white;

font-size:11px;

padding:5px 10px;

border-radius:30px;

font-weight:700;

}

.menu-content{

padding:20px;

text-align:center;

}

.menu-content h3{

font-family:'Bebas Neue',sans-serif;

font-size:34px;

color:white;

margin-bottom:10px;

}

.menu-content p{

font-size:14px;

color:#ccc;

min-height:55px;

}

.price{

margin-top:20px;

font-size:35px;

font-weight:800;

color:var(--orange);

}

.menu-btn{

display:block;

margin-top:20px;

padding:12px;

text-decoration:none;

color:white;

font-weight:700;

border:1px solid var(--orange);

transition:.3s;

}

.menu-btn:hover{

background:
linear-gradient(
135deg,
#F9E76E 0%,
#F2BA1A 50%,
#C7690C 100%
);

}

@media(max-width:1200px){

.menu-grid{

grid-template-columns:
repeat(3,1fr);

}

}

@media(max-width:768px){

.menu-grid{

grid-template-columns:
repeat(2,1fr);

}

}

@media(max-width:576px){

.menu-grid{

grid-template-columns:1fr;

}

.section-header h2,
.section-header h2 span{

font-size:50px;

}

}




/* ================================= */
/* COMBO DESTACADO */
/* ================================= */

.combo-section{

padding:120px 0;

background:
linear-gradient(
180deg,
#000000 0%,
#090909 100%
);

overflow:hidden;

}

.combo-grid{

display:grid;

grid-template-columns:
1fr 1fr;

align-items:center;

gap:50px;

}

.combo-left{

color:white;

}

.combo-tag{

display:inline-block;

padding:8px 18px;

background:
linear-gradient(
135deg,
#F9E76E 0%,
#F2BA1A 50%,
#C7690C 100%
);

border-radius:30px;

font-size:13px;

font-weight:700;

letter-spacing:2px;

margin-bottom:25px;

}

.combo-left h2{

font-family:'Bebas Neue',sans-serif;

font-size:110px;

line-height:.9;

margin-bottom:25px;

}

.combo-left h2 span{

display:block;

color:var(--orange);

}

.combo-left p{

max-width:500px;

font-size:18px;

line-height:1.8;

color:#cccccc;

margin-bottom:35px;

}

.combo-price{

font-size:20px;

font-weight:600;

margin-bottom:35px;

}

.combo-price strong{

display:block;

font-size:65px;

color:var(--orange);

font-weight:800;

margin-top:5px;

}

.combo-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.combo-right{

text-align:center;

}

.combo-right img{

width:100%;

max-width:650px;

filter:
drop-shadow(0 0 20px rgba(242,186,26,.2))
drop-shadow(0 0 40px rgba(242,186,26,.2));

}

@media(max-width:991px){

.combo-grid{

grid-template-columns:1fr;

text-align:center;

}

.combo-left p{

margin:auto;
margin-bottom:35px;

}

.combo-buttons{

justify-content:center;

}

.combo-left h2{

font-size:85px;

}

}

@media(max-width:576px){

.combo-left h2{

font-size:60px;

}

.combo-price strong{

font-size:50px;

}

}



/* ================================= */
/* UBICACION */
/* ================================= */

.location-section{

padding:120px 0;

background:var(--cafe-oscuro);

}

.location-grid{

display:grid;

grid-template-columns:
1fr 1fr;

gap:60px;

align-items:center;

}

.location-tag{

display:inline-block;

padding:8px 18px;

border-radius:30px;

background:
linear-gradient(
135deg,
#F9E76E 0%,
#F2BA1A 50%,
#C7690C 100%
);

font-size:13px;

font-weight:700;

letter-spacing:2px;

color:white;

margin-bottom:20px;

}

.location-left h2{

font-family:'Bebas Neue',sans-serif;

font-size:100px;

line-height:.9;

margin-bottom:25px;

color:white;

}

.location-left h2 span{

display:block;

color:var(--orange);

}

.location-left > p{

font-size:18px;

line-height:1.8;

color:#cccccc;

margin-bottom:40px;

}

.location-info{

margin-bottom:40px;

}

.info-item{

display:flex;

gap:20px;

margin-bottom:25px;

align-items:flex-start;

}

.info-icon{

width:60px;
height:60px;

min-width:60px;

border-radius:50%;

display:flex;
justify-content:center;
align-items:center;

background:
linear-gradient(
135deg,
#F9E76E 0%,
#F2BA1A 50%,
#C7690C 100%
);

color:white;

font-size:22px;

}

.info-item h4{

color:white;

font-size:20px;

margin-bottom:5px;

}

.info-item p{

color:#cccccc;

line-height:1.6;

}

.location-right iframe{

width:100%;

height:550px;

border:none;

border-radius:20px;

filter:grayscale(100%);

}

@media(max-width:991px){

.location-grid{

grid-template-columns:1fr;

}

.location-left{

text-align:center;

}

.location-left h2{

font-size:80px;

}

.info-item{

justify-content:center;

text-align:left;

}

}

@media(max-width:576px){

.location-left h2{

font-size:55px;

}

.location-right iframe{

height:400px;

}

}


/* ================================= */
/* FOOTER */
/* ================================= */

.footer-halita{

background:#000000;

padding:100px 0 60px;

text-align:center;

border-top:1px solid rgba(242,186,26,.15);

}

.footer-logo{

width:220px;

margin-bottom:0px;

filter:
drop-shadow(0 0 10px rgba(242,186,26,.5))
drop-shadow(0 0 20px rgba(242,186,26,.3));

}

.footer-top p{

max-width:700px;

margin:auto;

color:#cccccc;

line-height:1.8;

font-size:17px;

}

.footer-menu{

margin-top:40px;

display:flex;

justify-content:center;

gap:35px;

flex-wrap:wrap;

}

.footer-menu a{

text-decoration:none;

color:white;

font-weight:600;

transition:.3s;

}

.footer-menu a:hover{

color:var(--orange);

}

.footer-social{

margin-top:40px;

display:flex;

justify-content:center;

gap:15px;

}

.footer-social a{

width:50px;
height:50px;

border-radius:50%;

display:flex;
justify-content:center;
align-items:center;

text-decoration:none;

color:var(--orange);

border:1px solid var(--orange);

font-size:20px;

transition:.3s;

}

.footer-social a:hover{

background:
linear-gradient(
135deg,
#F9E76E 0%,
#F2BA1A 50%,
#C7690C 100%
);

color:white;

box-shadow:
0 0 10px rgba(242,186,26,.4),
0 0 25px rgba(242,186,26,.3);

}

.copyright-halita{

background:#050505;

padding:20px 0;

text-align:center;

}

.copyright-halita p{

color:#999999;

font-size:14px;

}

/* ================================= */
/* WHATSAPP */
/* ================================= */

.whatsapp-float{

position:fixed;

right:25px;
bottom:25px;

width:70px;
height:70px;

border-radius:50%;

display:flex;
justify-content:center;
align-items:center;

background:#25D366;

color:white;

font-size:35px;

text-decoration:none;

z-index:9999;

box-shadow:
0 0 15px rgba(37,211,102,.5),
0 0 30px rgba(37,211,102,.3);

animation:floatWhatsapp 2s infinite;

}

@keyframes floatWhatsapp{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-8px);
}

100%{
transform:translateY(0);
}

}


@media(max-width:991px){

.menu{

display:none;

position:absolute;

top:100px;
left:0;

width:100%;

background:var(--blanco-crema);

padding:30px;

}

.menu.show{

display:block;

}

.menu ul{

flex-direction:column;

gap:20px;

}

}


/* ================= HERO BANNER ================= */

.hero-banner{
position:relative;
width:100%;
background:var(--blanco-crema);
overflow:hidden;
}

.hero-image{
width:100%;
height:auto;
display:block;
}

.hero-buttons{
    position:absolute;
    right:80px;
    bottom:80px;
    display:flex;
    gap:20px;
    z-index:5;
}

/* CONTENEDOR BOTONES */

.hero-buttons{
position:absolute;

right:80px;
top:500px;

display:flex;
gap:20px;

z-index:5;
}

/* BOTON NARANJA */

.btn-orange{
display:inline-flex;
align-items:center;
justify-content:center;

padding:16px 35px;

background:#2E7D32;

color:#fff;
font-weight:700;
font-size:15px;
text-decoration:none;

border-radius:8px;

box-shadow:
0 0 20px rgba(242,186,26,.5);

transition:.3s;
}

.btn-orange:hover{
transform:translateY(-3px);
color:#fff;
}

/* BOTON BORDE */

.btn-border{
display:inline-flex;
align-items:center;
justify-content:center;

padding:16px 35px;

border:2px solid #fff;

color:#fff;
font-weight:700;
font-size:15px;
text-decoration:none;

border-radius:8px;

background:rgba(0,0,0,.35);

transition:.3s;
}

.btn-border:hover{
background:#fff;
color:#000;
}

/* RESPONSIVE */

@media(max-width:991px){

.hero-banner{
height:650px;
background-position:center;
}

.hero-buttons{
left:30px;
bottom:60px;
top:auto;
}

}

@media(max-width:576px){

.hero-banner{
height:370px;
}

.hero-buttons{
left:20px;
right:20px;

flex-direction:column;
gap:12px;
}

.btn-orange,
.btn-border{
width:100%;
}

}











.header-halita{
position:absolute;
top:0;
left:0;
width:100%;
z-index:999;
padding:20px 0;
}

.header-halita .container{
max-width:1400px;
margin:auto;
padding:0 30px;

display:flex;
align-items:center;
justify-content:space-between;
}



.menu ul{
display:flex;
gap:40px;
list-style:none;
margin:0;
padding:0;
}

.menu a{
color:black;
font-weight:700;
text-decoration:none;
font-size:15px;
}

.menu a.active{
color:#F2BA1A;
}

.social{
display:flex;
gap:15px;
}

.social a{
width:45px;
height:45px;
border:1px solid #F2BA1A;
border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

color:#F2BA1A;
text-decoration:none;
}

.mobile-btn{
display:none;
font-size:30px;
color:#F2BA1A;
cursor:pointer;
}

/* MOBILE */

@media(max-width:991px){

.header-halita .container{
flex-wrap:wrap;
justify-content:center;
}

.logo{
width:100%;
text-align:center;
margin-bottom:15px;
}

.mobile-btn{
display:block;
position:absolute;
right:25px;
top:35px;
}

.social{
display:none;
}

.menu{
width:100%;
display:none;
margin-top:56px;
}

.menu.active{
display:block;
}

.menu ul{
flex-direction:column;
text-align:center;
gap:0;
background:var(--blanco-crema);
border:1px solid rgba(242,186,26,.3);
}

.menu ul li{
border-bottom:1px solid rgba(255,255,255,.08);
}

.menu ul li a{
display:block;
padding:15px;
}
}






/* =========================
   PRELOADER HALITA
========================= */

#preloader{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:var(--blanco-crema);
z-index:999999;

display:flex;
justify-content:center;
align-items:center;

transition:all .8s ease;
}

.loader-content{
text-align:center;
}

.loader-logo{
width:220px;
max-width:80vw;

animation:pulseLogo 2s infinite;
}

.loader-line{
width:220px;
height:4px;

margin:25px auto 0;

background:rgba(255,255,255,.1);

border-radius:50px;

overflow:hidden;

position:relative;
}

.loader-line::before{
content:"";

position:absolute;
left:-100%;
top:0;

width:100%;
height:100%;

background:linear-gradient(
90deg,
transparent,
#F2BA1A,
#F9E76E,
transparent
);

animation:loading 1.4s linear infinite;
}

.preloader-hide{
opacity:0;
visibility:hidden;
}

@keyframes loading{

0%{
left:-100%;
}

100%{
left:100%;
}

}

@keyframes pulseLogo{

0%{
transform:scale(1);
filter:drop-shadow(0 0 10px #F2BA1A);
}

50%{
transform:scale(1.05);
filter:drop-shadow(0 0 25px #F2BA1A);
}

100%{
transform:scale(1);
filter:drop-shadow(0 0 10px #F2BA1A);
}

}












/* ================= MENU SLIDER ================= */

.menu-slider-section{
padding:100px 0;
background:var(--blanco-crema);
text-align:center;
padding-top: 80px;
}

.section-subtitle{
display:block;
font-size:20px;
font-weight:700;
letter-spacing:4px;
color:#F2BA1A;
margin-bottom:15px;
text-transform:uppercase;
}

.section-title{
font-size:55px;
font-weight:900;
color:#fff;
margin-bottom:50px;
text-transform:uppercase;
}

.section-title span{
color:#F2BA1A;
}

.menu-slider{
max-width:900px;
margin:auto;
}

.menu-slide img{
width:100%;
display:block;
border:none;
border-radius:0;
box-shadow:none;
}

.menu-btn-area{
margin-top:40px;
}

.btn-menu{
display:inline-block;
padding:16px 40px;

background:linear-gradient(
135deg,
#F9E76E 0%,
#F2BA1A 50%,
#C7690C 100%
);

color:#fff;
font-size:16px;
font-weight:700;
text-decoration:none;
text-transform:uppercase;

border-radius:10px;

box-shadow:0 0 20px rgba(242,186,26,.4);

transition:.3s;
}

.btn-menu:hover{
transform:translateY(-3px);
color:#fff;
}

@media(max-width:768px){

.section-title{
font-size:35px;
}

.menu-slider-section{

padding-top: 0px;
}

}



/* FLECHAS */

.menu-slider .owl-nav{
margin-top:25px;
display:flex;
justify-content:center;
gap:15px;
}

.menu-slider .owl-nav button.owl-prev,
.menu-slider .owl-nav button.owl-next{

width:55px;
height:55px;

border-radius:50% !important;

background:linear-gradient(
135deg,
#F9E76E 0%,
#F2BA1A 50%,
#C7690C 100%
) !important;

color:#fff !important;

font-size:28px !important;

transition:.3s;
}

.menu-slider .owl-nav button.owl-prev:hover,
.menu-slider .owl-nav button.owl-next:hover{

transform:scale(1.08);

box-shadow:
0 0 15px rgba(242,186,26,.5),
0 0 30px rgba(242,186,26,.3);

}

.menu-slider .owl-dots{
margin-top:20px;
}

.menu-slider .owl-dot span{
background:#555 !important;
}

.menu-slider .owl-dot.active span{
background:#F2BA1A !important;
}









/* ================= NOSOTROS ================= */

.about-halita{
background:var(--blanco-crema);
padding:120px 0;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
}

.about-slider-container{
position:relative;
overflow:hidden;
border:1px solid rgba(242,186,26,.3);
}

.about-slider{
position:relative;
width:100%;
height:550px;
}

.slide{
position:absolute;
width:100%;
height:100%;
opacity:0;
transition:.6s;
}

.slide.active{
opacity:1;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.prev-btn,
.next-btn{
position:absolute;
top:50%;
transform:translateY(-50%);
width:50px;
height:50px;
border:none;
cursor:pointer;
background:#F2BA1A;
color:#fff;
font-size:18px;
z-index:10;
}

.prev-btn{
left:15px;
}

.next-btn{
right:15px;
}

.about-subtitle{
display:block;
color:#F2BA1A;
font-size:14px;
letter-spacing:5px;
font-weight:700;
margin-bottom:20px;
}

.about-content h2{
font-size:65px;
line-height:1;
font-weight:900;
color:#fff;
margin-bottom:30px;
text-transform:uppercase;
}

.about-content p{
font-size:20px;
line-height:1.9;
color:#ddd;
margin-bottom:25px;
}

.btn-about{
display:inline-block;
padding:16px 35px;
background:linear-gradient(
135deg,
#F9E76E 0%,
#F2BA1A 50%,
#C7690C 100%
);
color:#fff;
text-decoration:none;
font-weight:700;
}

@media(max-width:991px){

.about-grid{
grid-template-columns:1fr;
}

.about-slider{
height:400px;
}

.about-content h2{
font-size:45px;
}

}











/* ================= UBICACIÓN ================= */

.location-halita{
background:var(--blanco-crema);
padding:120px 0;
text-align:center;
}

.location-subtitle{
display:block;
font-size:14px;
font-weight:700;
letter-spacing:5px;
color:#F2BA1A;
margin-bottom:15px;
text-transform:uppercase;
}

.location-title{
font-size:60px;
font-weight:900;
color:#fff;
margin-bottom:25px;
text-transform:uppercase;
}

.location-title span{
color:#F2BA1A;
}

.location-text{
max-width:800px;
margin:0 auto 50px;
font-size:20px;
line-height:1.8;
color:#d8d8d8;
}

.location-image{
overflow:hidden;
border:1px solid rgba(255,106,0,.35);
box-shadow:0 0 30px rgba(242,186,26,.15);
}

.location-image img{
width:100%;
display:block;
}

.location-btn-area{
margin-top:40px;
}

.location-btn{
display:inline-block;
padding:16px 40px;
text-decoration:none;
font-size:16px;
font-weight:700;
text-transform:uppercase;
color:#fff;
background:linear-gradient(
135deg,
#F9E76E 0%,
#F2BA1A 50%,
#C7690C 100%
);
transition:.3s;
}

.location-btn:hover{
transform:translateY(-3px);
box-shadow:0 0 25px rgba(242,186,26,.5);
color:#fff;
}

@media(max-width:768px){

.location-title{
font-size:38px;
}

.location-text{
font-size:17px;
}

.location-btn{
width:100%;
max-width:320px;
}

}


/* ================= DOMICILIOS ================= */

.delivery-halita{
background:var(--blanco-crema);
padding:120px 0;
text-align:center;
}

.delivery-subtitle{
display:block;
font-size:14px;
font-weight:700;
letter-spacing:5px;
color:#F2BA1A;
text-transform:uppercase;
margin-bottom:15px;
}

.delivery-title{
font-size:60px;
font-weight:900;
color:#fff;
margin-bottom:25px;
text-transform:uppercase;
}

.delivery-title span{
color:#F2BA1A;
}

.delivery-text{
max-width:850px;
margin:0 auto 50px;
font-size:20px;
line-height:1.8;
color:#d7d7d7;
}

.delivery-banner{
position:relative;
overflow:hidden;
}

.delivery-banner img{
width:100%;
display:block;
}

.delivery-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

display:flex;
justify-content:center;
align-items:center;
}

.delivery-btn{

padding:18px 45px;

background:linear-gradient(
135deg,
#F9E76E 0%,
#F2BA1A 50%,
#C7690C 100%
);

color:#fff;
font-size:16px;
font-weight:700;
text-decoration:none;
text-transform:uppercase;

box-shadow:
0 0 20px rgba(242,186,26,.5);

transition:.3s;
}

.delivery-btn:hover{

transform:translateY(-3px);

box-shadow:
0 0 25px rgba(255,106,0,.7);

color:#fff;
}

@media(max-width:768px){

.delivery-title{
font-size:38px;
}

.delivery-text{
font-size:17px;
}

.delivery-btn{
padding:15px 25px;
font-size:14px;
}

}

@media(max-width:991px){

    .header-halita .container{
        flex-wrap:wrap;
    }

    .mobile-btn{
        display:block;
        position:absolute;
        right:20px;
        top:30px;
        color:var(--cafe-principal);
        font-size:32px;
        cursor:pointer;
    }

    .menu{
        display:none;
        width:100%;
        margin:20px 0 0;
    }

    .menu.active{
        display:block;
    }

    .menu ul{
        flex-direction:column;
        gap:0;
        background:#fff;
        border-radius:15px;
        box-shadow:0 10px 30px rgba(0,0,0,.1);
    }

    .menu ul li::after{
        display:none;
    }

    .menu a{
        display:block;
        padding:15px;
    }

    .header-btn{
        display:none;
    }

    .logo{
        width:100%;
        text-align:center;
    }

    .logo img{
        height:95px;
    }
}





.mobile-btn{
    display:none;
}

@media(max-width:991px){

    .header-halita{
        background:#fff;
        position:relative;
    }

    .header-halita .container{
        display:flex;
        align-items:center;
        justify-content:space-between;
        flex-wrap:wrap;
    }

    .mobile-btn{
        display:block;
        font-size:32px;
        color:var(--cafe-principal);
        cursor:pointer;
    }

    .header-btn{
        display:none;
    }

    .menu{
        display:none;
        width:100%;
        margin-top:46px;
        background:#fff;
        border-radius:15px;
        box-shadow:0 10px 30px rgba(0,0,0,.12);
        overflow:hidden;
    }

    .menu.active{
        display:block;
        animation:menuMobile .3s ease;
    }

    .menu ul{
        display:flex;
        flex-direction:column;
        gap:0;
        width:100%;
    }

    .menu ul li{
        width:100%;
        border-bottom:1px solid #eee;
    }

    .menu ul li:last-child{
        border-bottom:none;
    }

    .menu ul li a{
        display:block;
        padding:18px 20px;
        color:var(--cafe-oscuro);
        text-align:center;
    }

    .menu ul li a:hover{
        background:#f8f8f8;
    }

    .logo img{
        height:90px !important;
    }

}

@keyframes menuMobile{
    from{
        opacity:0;
        transform:translateY(-15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}





















.header-halita{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    padding:20px 0;
}

.header-halita .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    height:120px;
}

.menu{
    margin-left:auto;
    margin-right:35px;
}

.menu ul{
    display:flex;
    align-items:center;
    gap:25px;
    list-style:none;
    margin:0;
    padding:0;
}

.menu ul li{
    position:relative;
}

.menu ul li:not(:last-child)::after{
    content:"|";
    position:absolute;
    right:-15px;
    top:50%;
    transform:translateY(-50%);
    color:#333;
    font-weight:700;
}

.menu a{
    text-decoration:none;
    color:#111;
    font-weight:700;
    font-size:16px;
}

.menu a:hover,
.menu a.active{
    color:var(--cafe-principal);
}

.btn-whatsapp{
    background:var(--verde-accion);
    color:#fff;
    padding:14px 22px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
    white-space:nowrap;
}

.btn-whatsapp:hover{
    background:#24692a;
    color:#fff;
}








.combos-section{
    padding:80px 0;
    background:#f7f7f7;
}

.combos-title{
    text-align:center;
    font-size:40px;
    margin-bottom:40px;
    font-family:'Bebas Neue',sans-serif;
}

.combos-wrapper{
    position:relative;
    overflow:hidden;
}

.combos-track{
    display:flex;
    gap:20px;
    transition:.5s;
}

.combo-card{
    min-width:calc((100% - 80px) / 5);
    background:#fff;
    border-radius:12px;
    border:1px solid #ddd;
    padding:15px;
    text-align:center;
    flex-shrink:0;
}

.combo-dia{
    background:#2E7D32;
    color:#fff;
    padding:8px;
    border-radius:8px;
    font-weight:700;
    margin-bottom:15px;
}

.combo-nombre{
    font-size:15px;
    font-weight:700;
    line-height:1.4;
    min-height:45px;
    word-break:break-word;
}

.combo-card img{
    width:100%;
    height:250px;
    object-fit:contain;
    display:block;
}

.combo-precio{
    font-size:32px;
    font-weight:800;
    margin:15px 0;
}

.combo-btn{
    background:#2E7D32;
    color:#fff;
    text-decoration:none;
    padding:10px 20px;
    border-radius:8px;
    display:inline-block;
}

.combo-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#F2BA1A;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    z-index:10;
}

.combo-prev{
    left:-20px;
}

.combo-next{
    right:-20px;
}

.calendario-btn{
    display:block;
    text-align:center;
    margin-top:30px;
    color:#2E7D32;
    font-weight:700;
}

/* ================= TABLET ================= */

@media(max-width:991px){

    .combos-section{
        padding:30px 0;
    }

    .combos-track{
        gap:0;
    }

    .combo-card{
        min-width:100%;
        padding:20px;
    }

    .combo-card img{
        width:200px;
        height:200px;
        margin:auto;
    }

    .combo-nombre{
        font-size:22px;
        min-height:auto;
        margin-bottom:20px;
    }

    .combo-precio{
        font-size:48px;
    }

    .combo-prev{
        left:15px;
    }

    .combo-next{
        right:15px;
    }
}

/* ================= CELULAR ================= */

@media(max-width:576px){

    .combos-title{
        font-size:30px;
    }

    .combo-card{
        padding:15px;
    }

    .combo-card img{
        width:300px;
        height:250px;
    }

    .combo-nombre{
        font-size:18px;
    }

    .combo-precio{
        font-size:38px;
    }

    .combo-btn{
        width:100%;
        padding:14px;
    }

    .combo-arrow{
        width:40px;
        height:40px;
        font-size:20px;
    }
}













.sabores-section{
    padding:20px 0;
    background:#f5f5f5;
}

.sabores-title{
    text-align:center;
    font-family:'Bebas Neue',sans-serif;
    font-size:40px;
    margin-bottom:40px;
    color:#111;
}

.sabores-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.sabor-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    border:1px solid #dcdcdc;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
    transition:.3s;
}

.sabor-card:hover{
    transform:translateY(-6px);
}

.sabor-imagen{
    height:270px;
    overflow:hidden;
}

.sabor-imagen img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.sabor-info{
    padding:20px;
    text-align:center;
}

.sabor-info h3{
    font-size:24px;
    font-weight:800;
    margin-bottom:12px;
    color:#222;
}

.sabor-info p{
    font-size:15px;
    line-height:1.6;
    color:#666;
    min-height:70px;
}

.sabor-btn{
    display:inline-block;
    margin-top:15px;
    text-decoration:none;
    color:var(--verde-accion);
    font-weight:700;
    font-size:15px;
}

.sabor-btn:hover{
    color:var(--cafe-principal);
}


@media(max-width:991px){

    .sabores-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .sabores-section{
    padding:20px 0;
    background:#f5f5f5;
}

    .sabores-grid{
        grid-template-columns:1fr;
    }

    .sabores-title{
        font-size:40px;
    }

    .sabor-imagen{
        height:220px;
    }

}










.domicilios-section{
    background:#F2BA1A;
    padding:70px 0;
}

.domicilios-title{
    text-align:center;
    font-size:55px;
    margin-bottom:40px;
    font-family:'Bebas Neue',sans-serif;
    color:#111;
}

.domicilios-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr;
    gap:25px;
    align-items:center;
}

.domicilios-mapa{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.12);
}

.domicilios-mapa iframe{
    width:100%;
    height:300px;
    border:0;
}

.domicilios-fotos{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.domicilios-fotos img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.12);
}

.domicilios-info{
    text-align:left;
    color:#111;
}

.domicilios-info p{
    font-size:18px;
    margin-bottom:25px;
    line-height:1.7;
}

.btn-whatsapp-domicilio{
    display:inline-block;
    background:#2E7D32;
    color:#fff;
    text-decoration:none;
    padding:14px 30px;
    border-radius:12px;
    font-weight:700;
    margin-bottom:25px;
}

.btn-whatsapp-domicilio:hover{
    background:#236128;
    color:#fff;
}

.domicilios-tel{
    font-size:32px;
    font-weight:800;
    color:#111;
}










.visitanos-section{
    background:#F2BA1A;
    padding:60px 0;
}

.visitanos-title{
    text-align:center;
    font-family:'Bebas Neue',sans-serif;
    font-size:55px;
    color:#111;
    margin-bottom:35px;
}

.visitanos-wrapper{
    display:grid;
    grid-template-columns:1.2fr 1.4fr;
    gap:30px;
    align-items:start;
}

.visitanos-mapa{
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.visitanos-mapa iframe{
    width:100%;
    height:300px;
    border:0;
}

.local-fotos{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-bottom:20px;
}

.local-fotos img{
    width:100%;
    height:145px;
    object-fit:cover;
    border-radius:12px;
}

.datos-local{
    font-size:18px;
    color:#111;
    line-height:1.7;
}

.datos-local p{
    margin-bottom:15px;
}

.domicilios-footer{
    margin-top:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.telefonos{
    font-size:38px;
    font-weight:800;
    color:#111;
}

.telefonos strong{
    font-weight:800;
}

.btn-whatsapp-local{
    background:#2E7D32;
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:10px;
}

.btn-whatsapp-local i{
    font-size:24px;
}

.btn-whatsapp-local:hover{
    background:#236128;
    color:#fff;
}



@media(max-width:991px){

    .visitanos-wrapper{
        grid-template-columns:1fr;
    }

    .local-fotos{
        grid-template-columns:1fr;
    }

    .visitanos-title{
        font-size:40px;
    }

    .telefonos{
        font-size:24px;
        text-align:center;
        width:100%;
    }

    .domicilios-footer{
        justify-content:center;
    }

    .btn-whatsapp-local{
        width:100%;
        justify-content:center;
    }

}











.footer-sabor{
    margin-top:0;
}

.footer-top{
    background:#d9ead3;
    padding:18px 0;
}

.footer-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.footer-logo img{
    height:100px;
}

.footer-social{
    display:flex;
    gap:20px;
}

.footer-social a{
    color:#000;
    font-size:24px;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    color:var(--verde-accion);
}

.footer-menu{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.footer-menu a{
    text-decoration:none;
    color:#111;
    font-size:18px;
    font-weight:600;
}

.footer-menu span{
    color:#111;
}

.footer-menu a:hover{
    color:var(--verde-accion);
}

.footer-bottom{
    background:#0b5d18;
    color:#fff;
    text-align:center;
    padding:14px 20px;
    font-size:16px;
}


@media(max-width:991px){

    .footer-content{
        flex-direction:column;
        text-align:center;
    }

    .footer-logo img{
        height:100px;
    }

    .footer-menu{
        justify-content:center;
    }

}

@media(max-width:576px){

    .footer-menu{
        flex-direction:column;
        gap:10px;
    }

    .footer-menu span{
        display:none;
    }

    .footer-bottom{
        font-size:14px;
        line-height:1.6;
    }

}

