:root{

--orange:#FF6A00;
--orange-light:#FF8A00;
--orange-dark:#CC5200;

--white:#FFFFFF;

--black:#000000;
--dark:#0B0B0B;

}

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

body{

background:#000;
font-family:'Montserrat',sans-serif;
overflow-x:hidden;

}

.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;

transition:.3s;

}

.menu a:hover{

color:var(--orange);

}

.menu .active{

color:var(--orange);

}

.social{

display:flex;
gap:12px;

}

.social a{

width:42px;
height:42px;

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

border-radius:50%;

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

color:var(--orange);

text-decoration:none;

transition:.3s;

}

.social a:hover{

background:linear-gradient(
135deg,
#FF8A00 0%,
#FF6A00 50%,
#CC5200 100%
);

color:white;

}

.mobile-btn{

display:none;

font-size:30px;
color:white;

}

/* ================= 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,
#FF8A00 0%,
#FF6A00 50%,
#CC5200 100%
);

box-shadow:
0 0 10px rgba(255,106,0,.5),
0 0 25px rgba(255,106,0,.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 #FF6A00)
drop-shadow(0 0 25px #FF6A00)
drop-shadow(0 0 45px #FF6A00);

}

.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:#000;

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:#0B0B0B;

border:1px solid rgba(255,106,0,.5);

transition:.3s;

overflow:hidden;

}

.menu-card:hover{

transform:translateY(-8px);

border-color:var(--orange);

box-shadow:
0 0 20px rgba(255,106,0,.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,
#FF8A00 0%,
#FF6A00 50%,
#CC5200 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,
#FF8A00 0%,
#FF6A00 50%,
#CC5200 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(255,106,0,.2))
drop-shadow(0 0 40px rgba(255,106,0,.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:#0B0B0B;

}

.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,
#FF8A00 0%,
#FF6A00 50%,
#CC5200 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,
#FF8A00 0%,
#FF6A00 50%,
#CC5200 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(255,106,0,.15);

}

.footer-logo{

width:220px;

margin-bottom:25px;

filter:
drop-shadow(0 0 10px rgba(255,106,0,.5))
drop-shadow(0 0 20px rgba(255,106,0,.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,
#FF8A00 0%,
#FF6A00 50%,
#CC5200 100%
);

color:white;

box-shadow:
0 0 10px rgba(255,106,0,.4),
0 0 25px rgba(255,106,0,.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:#000;

padding:30px;

}

.menu.show{

display:block;

}

.menu ul{

flex-direction:column;

gap:20px;

}

}


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

.hero-banner{
position:relative;
width:100%;
background:#000;
overflow:hidden;
}

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

.hero-buttons{
position:absolute;
left:6%;
bottom:12%;
display:flex;
gap:20px;
z-index:10;
}

/* CONTENEDOR BOTONES */

.hero-buttons{
position:absolute;

left: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:linear-gradient(
135deg,
#FF8A00 0%,
#FF6A00 50%,
#CC5200 100%
);

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

border-radius:8px;

box-shadow:
0 0 20px rgba(255,106,0,.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:#fff;
font-weight:700;
text-decoration:none;
font-size:15px;
}

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

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

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

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

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

.mobile-btn{
display:none;
font-size:30px;
color:#ff6a00;
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:#000;
border:1px solid rgba(255,106,0,.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:#000;
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,
#FF6A00,
#FF8A00,
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 #FF6A00);
}

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

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

}












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

.menu-slider-section{
padding:100px 0;
background:#000;
text-align:center;
padding-top: 80px;
}

.section-subtitle{
display:block;
font-size:20px;
font-weight:700;
letter-spacing:4px;
color:#FF6A00;
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:#FF6A00;
}

.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,
#FF8A00 0%,
#FF6A00 50%,
#CC5200 100%
);

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

border-radius:10px;

box-shadow:0 0 20px rgba(255,106,0,.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,
#FF8A00 0%,
#FF6A00 50%,
#CC5200 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(255,106,0,.5),
0 0 30px rgba(255,106,0,.3);

}

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

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

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









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

.about-halita{
background:#000;
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(255,106,0,.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:#ff6a00;
color:#fff;
font-size:18px;
z-index:10;
}

.prev-btn{
left:15px;
}

.next-btn{
right:15px;
}

.about-subtitle{
display:block;
color:#ff6a00;
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,
#FF8A00 0%,
#FF6A00 50%,
#CC5200 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:#000;
padding:120px 0;
text-align:center;
}

.location-subtitle{
display:block;
font-size:14px;
font-weight:700;
letter-spacing:5px;
color:#FF6A00;
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:#FF6A00;
}

.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(255,106,0,.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,
#FF8A00 0%,
#FF6A00 50%,
#CC5200 100%
);
transition:.3s;
}

.location-btn:hover{
transform:translateY(-3px);
box-shadow:0 0 25px rgba(255,106,0,.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:#000;
padding:120px 0;
text-align:center;
}

.delivery-subtitle{
display:block;
font-size:14px;
font-weight:700;
letter-spacing:5px;
color:#FF6A00;
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:#FF6A00;
}

.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,
#FF8A00 0%,
#FF6A00 50%,
#CC5200 100%
);

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

box-shadow:
0 0 20px rgba(255,106,0,.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;
}

}