body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

/* HEADER */
.header{
  padding: 20px;
  background:#000;
}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 30px;
  position:relative;
}

/* LOGO CENTRADO */
.logo{
  position:absolute;
  left:50%;
  height: 120%;
  max-width: 70%;
  transform:translateX(-50%);
}

.logo img{
  height:100px;
}

/* NAV DESKTOP */
.nav-links{
  display:flex;
  gap:30px;
  list-style:none;
}

.nav-links a{
  color:#fff;
  text-decoration:none;
}

/* IDIOMAS */
.lang{
  margin: 0px -15px 0px 0px;
  display:flex;
  gap:10px;
}

.lang-btn{
  width:38px;
  height:38px;
  border-radius:50%;
  border:none;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.lang-btn img{
  width:20px;
}

/* HAMBURGER */
.menu-toggle{
  display:none;
  width:28px;
  height:20px;
  cursor:pointer;
  position:relative;
  z-index:2000;
}

.menu-toggle span{
  position:absolute;
  width:100%;
  height:2px;
  background:#fff;
  transition:.4s;
}

.menu-toggle span:nth-child(1){ top:0; }
.menu-toggle span:nth-child(2){ top:9px; }
.menu-toggle span:nth-child(3){ bottom:0; }

.menu-toggle.active span:nth-child(1){
  transform:rotate(45deg);
  top:9px;
}
.menu-toggle.active span:nth-child(2){
  opacity:0;
}
.menu-toggle.active span:nth-child(3){
  transform:rotate(-45deg);
  bottom:9px;
}

/* ===== MOBILE ===== */
@media (max-width:980px){

  .menu-toggle{
    display:block;
  }

  .nav-links{
    padding-left: 10px;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:#000;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:40px;
    transform:translateY(-100%);
    transition:transform .5s ease;
    z-index:1500;
  }

  .nav-links.active{
    transform:translateY(0);
  }

  .nav-links a{
    font-size:40px;
    font-weight:600;
  }
}

/* ===== DROPDOWN ===== */
.dropdown{
  position:relative;
  text-align:center;
}

.dropdown-toggle{
  cursor:pointer;
  color:#fff;
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:500;
  transition:.3s;
}

/* FLECHA */
.arrow{
  width:8px;
  height:8px;
  border-right:2px solid #fff;
  border-bottom:2px solid #fff;
  transform:rotate(45deg);
  transition:transform .4s cubic-bezier(.16,1,.3,1);
}

/* FLECHA GIRANDO */
.arrow.active{
  transform:rotate(-135deg);
}

/* SUBMENU */
.dropdown-menu{
  list-style:none;
  padding:0;
  margin-top:20px;
  display:flex;
  flex-direction:column;
  gap:18px;

  max-height:0;
  overflow:hidden;
  opacity:0;
  transform:translateY(-10px);
  transition:all .4s cubic-bezier(.16,1,.3,1);
}

.dropdown-menu.active{
  max-height:300px;
  opacity:1;
  transform:translateY(0);
}

.dropdown-menu a{
  text-decoration:none;
  color:#bbb;
  transition:.3s;
}

.dropdown-menu a:hover{
  color:#fff;
}

/* ===== RESPONSIVE FONT SIZES ===== */

/* 📱 CELULAR */
@media (max-width:768px){

  .nav-links li{
    font-size:40px;
  }

  .dropdown-menu a{
    font-size:24px;
  }

}

/* 💻 COMPUTADORA */
@media (min-width:769px){

  .nav-links li{
    font-size:18px;
  }

  .dropdown-menu a{
    font-size:15px;
  }

}

.premium-gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 80px 10%;
  background: #f8f9fa;
}

.gallery-card{
  text-align: center;
  transition: 0.4s ease;
}

.image-wrapper{
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.image-wrapper img{
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

/* Hover premium */
.gallery-card:hover img{
  transform: scale(1.08);
}

.gallery-card:hover{
  transform: translateY(-10px);
}

.gallery-card h3{
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  color: #222;
  letter-spacing: 0.5px;
}

/* RESPONSIVE */

@media(max-width:1024px){
  .premium-gallery{
    grid-template-columns: repeat(2, 1fr);
    padding: 0px 8%;
  }
}

@media(max-width:768px){
  .premium-gallery{
    grid-template-columns: 1fr;
    padding: 0px 8%;
    gap: 30px;
  }
}

.ourservices {
  background: white;
  padding: 50px;
}


.info-section{
  background: #000;
  color: #fff;
  padding: 100px 8%;
  text-align: center;
}

.info-container{
  max-width: 900px;
  margin: 0 auto;
}

.info-section h2{
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.info-section p{
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #ddd;
}

/* RESPONSIVE */

@media(max-width:768px){

  .info-section{
    padding: 70px 6%;
  }

  .info-section h2{
    font-size: 26px;
  }

  .info-section p{
    font-size: 16px;
  }

}

/* BANNER VIDEO */
.banner{
  background: black;
  height:100vh;
  position:relative;
  overflow:hidden;
}

.banner video{
  opacity: 40%;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  min-width:100%;
  min-height:100%;
  object-fit:cover;
}

.banner::after{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.4);
}

.banner-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  color:white;
  text-align:center;
}

.banner-content h1{
  font-size:48px;
  margin-bottom:20px;
}

.banner-content p{
  font-size:20px;
}

/* COLLAGE */
.collage-section{
  padding: 50px 30px;
  background: #f5f5f5;
}

.collage-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.collage-grid img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.4s ease;
}

.collage-grid img:hover{
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media(max-width:1024px){
  .collage-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:768px){
  .collage-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* LIGHTBOX */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 9999;
}

.lightbox.active{
  opacity: 1;
  visibility: visible;
}

.lightbox img{
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  transform: scale(0.8);
  transition: 0.4s ease;
}

.lightbox.active img{
  transform: scale(1);
}

.close-btn{
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.mini-premium-btn{
  display: inline-block;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-decoration: none;
  border-radius: 30px;
  color: #fff;
  background: #000;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.35s ease;
  backdrop-filter: blur(6px);
}

/* Hover elegante */
.mini-premium-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  background: #111;
}

/* Efecto activo suave */
.mini-premium-btn:active{
  transform: scale(0.96);
}

/* BOTÓN */
.premium-btn{
  margin: 2%;
  padding:10px 22px;
  font-size:13px;
  letter-spacing:1px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,0.3);
  background:black;
  color:#fff;
  cursor:pointer;
  transition:all 0.35s cubic-bezier(.4,0,.2,1);
  backdrop-filter: blur(5px);
}

.premium-btn2{
  margin: 2%;
  padding:10px 22px;
  font-size:15px;
  letter-spacing:1px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,0.3);
  background:white;
  color:black;
  cursor:pointer;
  transition:all 0.35s cubic-bezier(.4,0,.2,1);
  backdrop-filter: blur(5px);
}

/* EFECTO CLICK */
.premium-btn:active{
  transform:scale(0.95);
}

html {
  scroll-behavior: smooth;
}

/* CONTENEDOR PRINCIPAL */
.slider-container{
    max-width:1200px;
    margin:60px auto;
    position:relative;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* SLIDES */
.slider{
    display:flex;
    transition:transform 0.8s ease-in-out;
}

.slide{
    min-width:100%;
    position:relative;
}

.slide img{
    width:100%;
    height:500px;
    object-fit:cover;
}

/* DEGRADADO */
.slide::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:50%;
    background:linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/* TEXTO SOBRE IMAGEN */
.slide-content{
    position:absolute;
    bottom:40px;
    left:50px;
    color:white;
    z-index:2;
}

.slide-content h2{
    margin:0;
    font-size:38px;
}

.slide-content p{
    margin-top:10px;
    font-size:18px;
    opacity:0.9;
}

/* BOTONES FLECHAS */
.prev, .next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(255,255,255,0.8);
    border:none;
    font-size:22px;
    padding:12px 18px;
    border-radius:50%;
    cursor:pointer;
    transition:0.3s;
}

.prev:hover, .next:hover{
    background:#000;
    color:#fff;
}

.prev{ left:20px; }
.next{ right:20px; }

/* INDICADORES */
.dots{
    text-align:center;
    margin-top:15px;
}

.dot{
    display:inline-block;
    width:12px;
    height:12px;
    margin:5px;
    background:#ccc;
    border-radius:50%;
    cursor:pointer;
    transition:0.3s;
}

.dot.active{
    background:#000;
    transform:scale(1.3);
}

/* BOTÓN VER MÁS */
.btn-container{
  background: white;
    text-align:center;
    margin-top:30px;
    margin: 20px;
}

.btn-vermas{
    background:#000;
    color:#fff;
    padding:15px 40px;
    border:none;
    border-radius:50px;
    font-size:16px;
    cursor:pointer;
    transition:0.4s;
}

.btn-vermas:hover{
    background:#e10600;
    transform:translateY(-4px);
}

/* RESPONSIVE */
@media(max-width:768px){
    .slide img{
        height:350px;
    }
    .slide-content{
        left:20px;
        bottom:20px;
    }
    .slide-content h2{
        font-size:24px;
    }
}

.contact-pro{
  padding:140px 20px;
  background:linear-gradient(to bottom,#ffffff,#f5f5f7);
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","Segoe UI",sans-serif;
}

.contact-wrapper{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:100px;
  align-items:center;
}

/* TARJETA */
.contact-card{
  background:rgba(255,255,255,0.6);
  backdrop-filter:blur(25px);
  -webkit-backdrop-filter:blur(25px);
  padding:60px;
  border-radius:40px;
  box-shadow:0 40px 80px rgba(0,0,0,0.08);
  transition:all .8s cubic-bezier(.16,1,.3,1);
}

.contact-card h2{
  font-size:58px;
  font-weight:600;
  margin-bottom:25px;
  letter-spacing:-1px;
}

.contact-card p{
  font-size:20px;
  color:#6e6e73;
  line-height:1.6;
  margin-bottom:40px;
}

/* BOTONES CIRCULARES */
.social-pro{
  display:flex;
  gap:20px;
}

.social-circle{
  width:65px;
  height:65px;
  border-radius:50%;
  background:#f5f5f7;
  background-size:28px;
  background-repeat:no-repeat;
  background-position:center;
  transition:all .4s cubic-bezier(.16,1,.3,1);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  position:relative;
}

.social-circle:hover{
  transform:translateY(-8px) scale(1.1);
  box-shadow:0 25px 50px rgba(0,0,0,0.15);
}

/* ICONOS */
.whatsapp2{
  width:65px;
  height:65px;
  border-radius:50%;
  background:#25D366; /* fondo verde */
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

/* ICONO SEPARADO */
.whatsapp2::before{
  content:"";
  width:28px;
  height:28px;
  background-image:url("https://cdn-icons-png.flaticon.com/512/733/733585.png");
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;

  /* Convertimos solo el icono a blanco */
  filter: brightness(0) invert(1);
}

.sms2{
  width:65px;
  height:65px;
  border-radius:50%;
  background:#007AFF; /* Azul estilo Apple */
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

/* ICONO */
.sms2::before{
  content:"";
  width:28px;
  height:28px;
  background-image:url("https://cdn-icons-png.flaticon.com/512/2462/2462719.png");
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;

  /* Convertimos a blanco */
  filter: brightness(0) invert(1);
}

.sms2:hover{
  transform:translateY(-8px) scale(1.1);
  box-shadow:0 25px 50px rgba(0,122,255,0.4);
  transition:all .4s cubic-bezier(.16,1,.3,1);
}

.instagram{
  background-image:url("https://cdn-icons-png.flaticon.com/512/2111/2111463.png");
}

.facebook{
  background-image:url("https://cdn-icons-png.flaticon.com/512/733/733547.png");
}

.email{
  background-image:url("https://cdn-icons-png.flaticon.com/512/732/732200.png");
}

/* MAPA */
.map-pro iframe{
  width:100%;
  height:520px;
  border:none;
  border-radius:40px;
  box-shadow:0 40px 80px rgba(0,0,0,0.1);
  transition:all .8s cubic-bezier(.16,1,.3,1);
}

/* ANIMACIÓN AL HACER SCROLL */
.reveal{
  opacity:0;
  transform:translateY(60px);
  filter:blur(10px);
  transition:all 1s cubic-bezier(.16,1,.3,1);
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
  filter:blur(0);
}

/* RESPONSIVE */
@media(max-width:900px){
  .contact-wrapper{
    grid-template-columns:1fr;
    gap:60px;
  }

  .contact-card{
    padding:20px;
    text-align:center;
  }

  .contact-card h2{
    font-size:40px;
  }

  .social-pro{
    justify-content:center;
  }

  .map-pro iframe{
    height:420px;
  }
}

.madesigns{
  color: white;
}

.platillos-slider{
width:100%;
max-width:900px;
margin:auto;
padding:40px 0;
}

.swiper-slide{
border-radius:20px;
overflow:hidden;
box-shadow:0 20px 50px rgba(0,0,0,0.25);
transition:.5s;
}

.swiper-slide img{
width:100%;
height:300px;
object-fit:cover;
transition:transform .6s ease;
}

.swiper-slide:hover img{
transform:scale(1.1);
}

/* flechas */

.swiper-button-next,
.swiper-button-prev{
color:#ffffff;
}

.three-gallery{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:15px;
max-width:1100px;
margin:auto;
padding:-40px 20px;
}

.gallery-item{
overflow:hidden;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.gallery-item img{
width:100%;
height:400px;
object-fit:cover;
transition:transform .5s ease;
}

.gallery-item:hover img{
transform:scale(1.1);
}

@media(max-width:900px){
  .gallery-item img{
width:100%;
height:200px;
object-fit:cover;
transition:transform .5s ease;
}