/* ---------------------------
   ALFA SLAB ONE
--------------------------- */
@font-face {
  font-family: "Alfa Slab One";
  src: url("../fonts/AlfaSlabOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------------------------
   ASAP — REGULAR
--------------------------- */
@font-face {
  font-family: "Asap";
  src: url("../fonts/Asap-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ASAP — MEDIUM */
@font-face {
  font-family: "Asap";
  src: url("../fonts/Asap-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ASAP — SEMIBOLD */
@font-face {
  font-family: "Asap";
  src: url("../fonts/Asap-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ASAP — BOLD */
@font-face {
  font-family: "Asap";
  src: url("../fonts/Asap-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------------------------
   ASAP — ITALICS
--------------------------- */
@font-face {
  font-family: "Asap";
  src: url("../fonts/Asap-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Asap";
  src: url("../fonts/Asap-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Asap";
  src: url("../fonts/Asap-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Asap";
  src: url("../fonts/Asap-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}




*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root{
  /* fonts */
  --outfit: "Asap", sans-serif;

  /* colors */
  --primary-color: linear-gradient(
  to bottom right,
  #6A2A8C,
  #cb7cf6
);

  --secondary-color: #6A2A8C;
  --tertiary-color: #35B33A;
  --complementario: #D6D2BA;
  --background: #6A2A8C;
  --color-title: #fdfdfd;
  --color-text: #ffffff;
  --color-light: linear-gradient(
  140deg,
  #35B33A 60%,
  #95ee99 100%
  
);
}
html{
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body{
  font-family: var(--outfit);
}
img{
  width: 10rem;
}
ul{
  list-style: none;
}
a{
  text-decoration: none;
}
.btn{
  display: inline-block;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all .4s ease;
}
.primary-btn{
  width: auto;
  padding: 1rem 2rem;
  font-size: 1.7rem;
  background: var(--primary-color);
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 25px;
  text-align: center;
}
.primary-btn:hover{
 background: linear-gradient(
  to bottom right,
  rgba(106, 42, 140, 0.82),
  rgba(203, 124, 246, 0.82)
);

}

.gradient-text{
  background: var(--primary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* header */
.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0rem 10rem;
  background: var(--background);
  color: var(--color-title);
  z-index: 1000;
  transition: all 0.4s ease-in-out;
  height: 70px;
}
.header .row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 70px;
}
.header .row .col{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.header .logo{

  font-size: 2rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #222;
}

.header .logo img{
  width: 150px;
  padding: 10px 0;
}

.header .navbar .navlist{
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header .navbar .navlist .navitem{
  position: relative;
}
.header .navbar .navlist .navitem .navlink{
  display: block;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--color-title);
  padding: 1rem;
  text-transform: capitalize;
  transition: all 0.5s ease;
}
.header .navbar .navlist .navitem .navlink:hover{
  transform: translateY(-3px);
  color: #4de352;
  border-radius: 5px;
}
.header .navbar .navlist .navitem .navlink.active{
 
  color: #4de352;
  border-radius: 5px;
}
.header .contact-info{
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--color-title);
  transition: all 0.4s ease;
}
.header .contact-info:hover{
  transform: scale(1.1);
}
.header .contact-info .icon{
  display: inline-block;
  transition: all 0.4s ease;
}
.header .contact-info:hover .icon{
  transform: rotate(20deg);
}
.header .menu-bar{
  display: none;
}
.header .close{
  display: none;
}

.portada-inicio {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.portada-video {
  position: absolute;
  top: 56%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

/* Por defecto: escritorio */
.video-mobile {
  display: none;
}

/* Móvil */
@media (max-width: 768px) {
  .video-desktop {
    display: none;
  }

  .video-mobile {
    display: block;
  }
}

.portada-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3); /* opcional */
}


/* Overlay */
.portada-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}




/* Short Section */
.short-section{
  padding: 50px 100px;
}

/* section */
.section{
  padding: 100px;
}
.section .content{
  max-width: 100%;
  margin: 5rem auto;
}
.section .title{
  width: 40%;
  margin: 0 auto;
  text-align: center;
}
.section .title h1{
  font-size: 2.5rem;
  color: var(--secondary-color);
  font-weight: 400;
  text-transform: capitalize;
  font-family: 'Alfa Slab One';
}
.section .title p{
  font-size: 1.7rem;
  font-weight: 400;
  color: #555;
  margin: 0.7rem 0;
}
/* why us */
.why-us .content{
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.why-us .text h2{
  font-size: 2.6rem;
  color: var(--secondary-color);
  font-weight: 500;
  text-transform: capitalize;
  font-family: 'Alfa Slab One';
}
.why-us .text span{
 
  color: var(--tertiary-color);
  
}
.why-us .text p{
  font-size: 1.9rem;
  font-weight: 400;
  color: #555;
  line-height: 2.5rem;
  margin: 2rem 0;
}
.why-us .text .cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}
.why-us .text .cards .card{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.2), -6px -6px 15px #ffffff;
  border-radius: 5px;
  transition: all 0.4s ease;
}
.why-us .text .cards .card:hover{
  transform: translateY(-10px);
}
.why-us .text .cards .card .card-icon{
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
}
.why-us .text .cards .card .card-text .heading{
  font-size: 1.7rem;
  color: #222;
  font-weight: 400;
  text-transform: capitalize;
  transition: all 0.4s ease;
}
.why-us .text .cards .card:hover .card-text .heading{
   background: var(--primary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.why-us .text .cards .card .card-text p{
  font-size: 1.6rem;
  margin: 0.6rem 0;
  line-height: 2rem;
}

.why-us .image{
  text-align: center;
  width: 100%;
}
.why-us .image img{
  width: 55rem;
  height: auto;
  border-radius: 10px;
 /* box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2); */
}

/* about */
.about{
  position: relative;
background: linear-gradient(
  to bottom right,
  rgba(237, 106, 133, 0.12),
  rgba(244, 60, 100, 0.12)


);
}
.about .content{
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.about .about-text{
  width: 100%;
}
.about .about-text h2{
  font-size: 2.5rem;
  color: #222;
  font-weight: 500;
  text-transform: capitalize;
  font-family: 'Alfa Slab One';
}
.about .about-text span{
  color: var(--secondary-color);
}
.about .about-text p{
  margin: 1.5rem 0;
  font-size: 1.8rem;
  font-weight: 400;
  color: #555;
  line-height: 2.5rem;
}
.about .about-text .stats{
  margin: 3rem 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.about .about-text .stats .card{
  width: 20rem;
  height: auto;
  padding: 1rem;
  background: #fff;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.2), -6px -6px 15px #ffffff;
  transition: all 0.4s ease-in-out;
}
.about .about-text .stats .card:hover{
  transform: translateY(-10px);
}
.about .about-text .stats .card .card-icon{
  width: 5rem;
  height: 5rem;
  background: #f4f4f4;
  border-radius: 50%;
  font-size: 3rem;
  color: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.about .about-text .stats .card:hover .card-icon{
  background: var(--secondary-color);
  color: #fff;
}
.about .about-text .stats .card .card-text{
  text-align: center;
  margin-top: 1.5rem;
}
.about .about-text .stats .card .card-text .number{
  font-size: 2.7rem;
  font-weight: 500;
  color: #222;
  display: block;
  transition: all 0.4s ease-in-out;
}
.about .about-text .stats .card:hover .card-text .number{
  color: var(--secondary-color);
}
.about .about-text .stats .card .card-text p{
  font-size: 1.6rem;
  font-weight: 400;
  color: #555;
  margin: 0.6rem 0;
}

.about .about-image{
  position: relative;
  text-align: center;
  width: 100%;
  height: 60rem;
}
.about .about-image img{
  width: 100%;
  height: 130%;
  object-fit: contain;
  
  overflow-x: hidden !important;
  
  
}
.about .about-image span{
  position: absolute;
  bottom: 1rem;
  left: 2rem;
  font-size: 1.4rem;
  color: #222;
  font-weight: 400;
  display: inline-block;
}
.about .about-image span a{
  color: var(--tertiary-color);
}

.ambiente-container{
  background: var(--background);
}

.ambiente-container .about-text h2{
  color: var(--color-title);
}

.ambiente-container .about-text span{
  color: var(--tertiary-color);
}

.ambiente-container .about-text p{
  color: var(--color-text);
}
.about .image-ambiente{
  position: relative;
  text-align: center;

  width: 100%;
  height: 100%;
}
.about .image-ambiente img{
  width: 100%;
  height: 100%;
  object-fit: cover;

 
  
}
  
  /* ---------- MINIATURA ---------- */
.video-thumbnail-wrapper {
  position: relative;
  width: 100%;
  height: 60rem;
}

.video-thumbnail-wrapper .video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 10px solid #f4f4f4;
}

.video-thumbnail-wrapper .open-video-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s ease;
  z-index: 2;
}

.video-thumbnail-wrapper .open-video-modal:hover {
  background: white;
}

.video-thumbnail-wrapper .open-video-modal i {
  color: var(--secondary-color);
}

/* ---------- MODAL ---------- */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  animation: fadeIn 0.3s ease;
}

.video-modal video {
  width: 100%;
  border-radius: 10px;
  display: block;
}

/* Botón cerrar */
.close-video-modal {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 3rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.close-video-modal:hover {
  color: #ffdddd;
}

/* Animación */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}


/* Menu */
.menu .content .card{
  width: 35rem;
  height: auto;
  position: relative;
  transition: all 0.4s ease-in-out;
}
.menu .content .card:hover{
  transform: translateY(-10px);
}
.menu .content .card .card-image{
  width: 100%;
  height: 28rem;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 15% 0;
}
.menu .content .card .card-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 15% 0;
  transition: all 0.4s ease-in-out;
}
.menu .content .card:hover .card-image img{
  transform: scale(1.1);
}
.menu .content .card .card-image span{
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 1.4rem;
 color: var(--tertiary-color);
  font-weight: 400;
}
.menu .content .card .card-text{
  padding: 2rem;
  text-align: center;
}
.menu .content .card .card-text .menu-heading{
  font-size: 2rem;
  color: #222;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.menu .content .card:hover .menu-heading{
  color: var(--secondary-color);
}
.menu .content .card .card-text p{
  font-size: 1.6rem;
  color: #555;
  font-weight: 400;
  line-height: 2.5rem;
  margin: 0.5rem 0;
}
.menu .content .card .card-text .btn{
  margin: 1.5rem 0;
  padding: 1rem 3rem;
  background: var(--primary-color);
  font-weight: 400;
  transition: all 0.4s ease-in-out;
}
.menu .content .card .card-text .btn:hover{
  transform: translateY(-10px);
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next{
  color: var(--secondary-color);
}

/* favourites */
.favourites{
  background: #f9f9f9;
}
.favourites .content{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  justify-content: center;
  gap: 2rem;
}
.favourites .content .card{
  width: 100%;
  height: auto;
  position: relative;
  padding: 1.5rem 2rem;
  background: #eeeeee;
  border-radius: 5px;
 /* box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.2), -6px -6px 15px #ffffff; */
  transition: all 0.4s ease-in-out;
}
.favourites .content .card:hover{
  transform: translateY(-10px);
}
.favourites .content .card .card-image{
  width: 100%;
  height: 25rem;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.favourites .content .card:hover .card-image img{
  transform: scale(1.1);
}
.favourites .content .card .card-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 15% 0;
  transition: all 0.4s ease-in-out;
}
.favourites .content .card .card-text{
  padding: 1.5rem 0;
}
.favourites .content .card .card-text .heading{
  font-size: 2rem;
  color: #222;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.favourites .content .card:hover .card-text .heading{
  color: var(--secondary-color);
}
.favourites .content .card .card-text p{
  font-size: 1.7rem;
  color: #555;
  font-weight: 400;
  margin: 0.6rem 0;
}

/* featured */
.featured .title-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  
}
.featured .title-box .headings{
  width: 35%;
}
.featured .title-box .headings h2{
  font-size: 2.5rem;
  color: #222;
  font-weight: 500;
  text-transform: capitalize;
}
.featured .title-box .headings p{
  font-size: 1.7rem;
  font-weight: 400;
  column-rule: #555;
  line-height: 2.5rem;
  margin: 0.6rem 0;
}
.featured .title-box .tab-btns{
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.featured .title-box .tab-btns .tab-btn{
  padding: 1rem 2rem;
  background: #f9f9f9;
  border-radius: 25px;
  font-size: 1.7rem;
  color: #222;
  font-weight: 500;
  text-transform: capitalize;
}
.featured .title-box .tab-btns .tab-btn:hover{
  background: var(--secondary-color);
  color: #fff;
}
.featured .title-box .tab-btns .tab-btn.active{
  background: var(--secondary-color);
  color: #fff;
}
.featured .featured-grid{
  margin: 5rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  width: 100%;
}
.featured .featured-grid .card{
  position: relative;
  width: 100%;
  height: 30rem;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.featured .featured-grid .card:hover{
  transform: scale(1.05);
  cursor: pointer;
}
.featured .featured-grid .card .card-image{
  width: 100%;
  height: 100%;
  position: relative;
}
.featured .featured-grid .card .card-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured .featured-grid .card .card-image .overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
  to bottom right,
  rgba(106, 42, 140, 0.82),
  rgba(203, 124, 246, 0.82)
);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.featured .featured-grid .card:hover .card-image .overlay{
  opacity: 1;
  visibility: visible;
}
.featured .featured-grid .card .card-image .overlay .heading{
  font-size: 2rem;
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
}
.featured .featured-grid .card .card-image .overlay .link{
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 400;
}
.featured .featured-grid .card .card-image .overlay .link a{
  color: var(--tertiary-color);
}
.fadeIn{
  animation: fadeInEffect 0.5s ease-in-out;
}
@keyframes fadeInEffect{
  from{
    opacity: 0;
    transform: translateY(20px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* Video area */
.video-area{
  position: relative;
  width: 100%;
  height: 500px;
  background: url('../images/nosotros/sucursal-simba.jpeg') center center no-repeat fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-area .play-icon{
  position: relative;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 5rem;
  color: var(--tertiary-color);
  font-weight: 500;
  border: 20px solid rgba(255, 255, 255, 0.9);
}

.video-area .play-icon:hover{
  cursor: pointer;
}

/* Modal background */
.video-modal {
  display: none; 
  position: fixed;
  z-index: 9999;
  left: 0; 
  top: 0; 
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}

/* Modal content */
.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

/* Video inside modal */
.video-modal video {
  width: 100%;
  height: auto;
  display: block;
}

/* Close button */
.video-close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
}


/* testimonials */
.testimonials .content .card{
  width: 40rem;
  height: auto;
  position: relative;
  padding: 3rem 2rem;
  transition: all 0.4s ease-in-out;
}
.testimonials .content .card:hover{
  background: #fff;
  transform: scale(1.1);
  border-radius: 0 0 20% 0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.testimonials .content .card .card-text p{
  font-size: 1.8rem;
  color: #555;
  font-weight: 400;
  font-style: italic;
  line-height: 2.5rem;
}
.testimonials .content .card .card-text p .icon{
  color: var(--secondary-color);
  font-size: 4rem;
  opacity: 0.6;
  margin-right: 1rem;
}
.testimonials .content .card .card-profile{
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 2.5rem 0;
}
.testimonials .content .card .card-profile img{
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}
.testimonials .content .card:hover .card-profile img{
  border: 3px solid var(--secondary-color);
}
.testimonials .card .card-profile .card-profile-info{
  display: flex;
  flex-direction: column;
}
.testimonials .card .card-profile .card-profile-info .heading{
  font-size: 2rem;
  color: #222;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.testimonials .content .card:hover .card-profile .card-profile-info .heading{
  color: var(--secondary-color);
}
.testimonials .card .card-profile .card-profile-info small{
  display: block;
  font-size: 1.5rem;
  color: #555;
  font-weight: 400;
}

/* photos */
.photos{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.photos .image{
  position: relative;
  width: 100%;
  height: 40rem;
  overflow: hidden;
}
.photos .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}
.photos .image:hover img{
  transform: scale(1.1);
}
.photos .image .overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
  to bottom right,
  rgba(106, 42, 140, 0.82),
  rgba(203, 124, 246, 0.82)
);

  display: flex;
  justify-content: center;
  align-items: center;
   opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.photos .image:hover .overlay{
  opacity: 1;
  visibility: visible;
  cursor: pointer;
}
.photos .image .overlay a{
  display: block;
  font-size: 6rem;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.photos .image .overlay a:hover{
  color: var(--secondary-color);
  transform: scale(1.1);
}

/* contact */
.contact .content .map{
  width: 100%;
  height: 500px;
}
.contact .content .map iframe{
  width: 100%;
  height: 100%;
}
.contact .form-content{
  margin: 5rem 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  justify-content: center;
  grid-area: 2rem;
}
.contact .form-content .form-info .card{
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.contact .form-content .form-info .card .card-icon{
  width: 5rem;
  height: 5rem;
  border-radius: 3px;
  background: #f4f4f4;
  font-size: 2.2rem;
  color: var(--secondary-color);
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact .form-content .form-info .card .card-text p{
  font-size: 1.7rem;
  font-weight: 400;
  color: #555;
  line-height: 2.5rem;
}
.contact .form-content .form-box{
  width: 100%;
}
.contact .form-content .form-box form{
  width: 100%;
}
.contact .form-content .form-box form .group{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  
}
.contact .form-content .form-box form .group .input-group{
  margin: 0;
}
.contact .form-content .form-box form .input-group{
  width: 100%;
  margin: 1.5rem 0;
}
.contact .form-content .form-box form .input-group input,
.contact .form-content .form-box form .input-group textarea{
  width: 100%;
  padding: 1rem;
  height: 5rem;
  background: none;
  border: 1.5px solid #eee;
  outline: none;
  font-size: 1.7rem;
  color: #555;
}
.contact .form-content .form-box form .input-group input::placeholder,
.contact .form-content .form-box form .input-group textarea::placeholder{
  font-size: 1.5rem;
  color: #555;
  font-weight: 400;
  transition: all 0.4s ease;
}
.contact .form-content .form-box form .input-group input:focus::placeholder,
.contact .form-content .form-box form .input-group textarea:focus::placeholder{
  transform: translateY(-10px);
  opacity: 0;
}
.contact .form-content .form-box form .input-group input:focus,
.contact .form-content .form-box form .input-group textarea:focus{
  border: 1.5px solid var(--secondary-color);
}
.contact .form-content .form-box form .input-group textarea{
  height: 20rem;
}
.contact .form-content .form-box form .btn{
  width: auto;
  padding: 1.5rem 5rem;
  background: none;
  border: 1.5px solid var(--secondary-color);
  font-size: 1.7rem;
  color: var(--secondary-color);
  font-weight: 400;
  text-transform: capitalize;
}
.contact .form-content .form-box form .btn:hover{
  background: var(--secondary-color);
  color: #fff;
}

/* Sucursales Info */
.seccion-ubicaciones {
  padding: 80px 0;
  background: #fafafa;
}

.titulo-seccion {
  text-align: center;
  font-size: 2.5rem;
  color: var(--tertiary-color);
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: capitalize;
  font-family: 'Alfa Slab One';
}

.subtitulo-seccion {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.filtros-ubicaciones {
  text-align: center;
  margin-bottom: 40px;
}

.boton-filtro {
  padding: 10px 20px;
  border: none;
  margin: 0 8px;
  background: #eee;
  cursor: pointer;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.boton-filtro.activo {
  background: var(--secondary-color);
  color: #fff;
}

.boton-filtro:hover{
  background: var(--secondary-color);
  color: #fff;
}

.lista-ubicaciones {
  max-width: 900px;
  margin: 0 auto;
}

.grupo-ubicaciones {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.item-ubicacion {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  margin-bottom: 0; /* ya no hace falta el margin porque usamos gap */
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}


.item-ubicacion i {
  font-size: 26px;
  color: var(--secondary-color);
  min-width: 32px;
}

.item-ubicacion h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.item-ubicacion p {
  margin: 3px 0 0;
  color: #555;
}


/* promos */
.promos-banners {
  width: 100%;
  position: relative;
  margin-top: 5rem;
}

.contenedor-slides {
  width: 100%;
  height: 300px;
  position: relative;
  margin-top: 2rem;
}

.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity .6s ease;
}

.slide.activo {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Flechas */
.flecha {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--secondary-color);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 8px;
  transition: background .3s ease;
  z-index: 10;
  display: none;
  visibility: 0;
}

.flecha:hover {
  background: var(--tertiary-color);
}

.flecha-izq {
  left: 15px;
}

.flecha-der {
  right: 15px;
}

/* color secundario */
.color-secundario{
    color: var(--tertiary-color);
}



/* footer */
.footer{
  width: 100%;
  position: relative;
  padding: 20px 100px;
  background: var(--background);
}
.footer .content{
  max-width: 100%;
  margin: 0 auto;
}
.footer .row{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  
  padding: 2rem 0;
}
.footer .row .col{
  width: 100%;
}
.content .col1 img{
  width: 180px;
}
.footer .row .col .logo{
  font-size: 2.5rem;
  color: var(--secondary-color);
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 1rem;
}
.footer .row .col p{
  font-size: 1.8rem;
  color: #fff;
  font-weight: 400;
  line-height: 2.5rem;
  margin-bottom: 1rem;
}
.footer .row .col .social-icons{
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.footer .row .col .social-icons a{
  display: inline-block;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(
  to bottom right,
  rgba(172, 31, 248, 0.82),
  rgba(203, 124, 246, 0.82)
);

  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s ease;
}
.footer .row .col .social-icons a:hover{
  background: var(--primary-color);
  transform: scale(1.1);
}
.footer .row .col .heading{
  display: inline-block;
  font-size: 2rem;
  color: #fdfdfd;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 1rem;
}
.footer .row .col ul li{
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 400;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.footer .row .col ul li a{
  font-size: 1.6rem;
  color: #fdfdfd;
  font-weight: 400;
  text-transform: capitalize;
  transition: all 0.4s ease;
}
.footer .row .col ul li a:hover{
  text-decoration: underline var(--tertiary-color);
  color: var(--tertiary-color);
}
.footer .row .col ul li .icon{
  color: var(--tertiary-color);
  font-size: 2rem;
}
.footer .copyright-box{
  text-align: center;
}
.footer .copyright-text{
  font-size: 1.6rem;
  font-weight: 400;
  color: #555;
}
.footer .copyright-box small{
  font-size: 1.5rem;
  font-weight: 400;
  display: block;
  color: #555;
  margin-top: 0.6rem;
}
.footer .copyright-box small span{
  color: var(--secondary-color);
}

.content-map{
  margin-top: 5rem;
}

/* responsive media */
@media (max-width: 1300px){
  .header{
    padding: 0rem 8rem;
    
  }
  .header .navbar{
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--background);
    z-index: 1010;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }
  .header .navbar.active{
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .header .navbar .navlist{
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #fff;
    flex-direction: column;
    justify-content: center;
  }
  .header .navbar .navlist .navitem .navlink{
    font-size: 3rem;
    color: #333;
  }
  .header .close{
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 3.5rem;
    color: tomato;
    cursor: pointer;
    display: inline-block;
    transition: all 0.4s ease;
    z-index: 1020;
  }
  .header .menu-bar{
    display: inline-block;
    font-size: 3rem;
    color: var(--color-title);
    cursor: pointer;
  }
 .hero .content .title-box{
  width: 65%;
}
 .hero .content .title-box p{
  font-size: 2rem;
 }
}
@media (max-width: 1200px){
    .hero::before{
    width: 100%;
    border-radius: 0;
   } 
   .hero .content .title-box{
  width: 65%;
   margin: 0 auto;
  text-align: center; 
   } 
   .section .title{
    width: 60%;
   }
   .why-us .content{
    grid-template-columns: repeat(1, 1fr);
   }
   .about .content{
    grid-template-columns: repeat(1, 1fr);
   }
   .featured .title-box{
    flex-direction: column;
   }
   .featured .title-box .headings{
    width: 60%;
    text-align: center;
   }
   .footer .row{
    grid-template-columns: 1fr 1fr 1fr;
   }

   .promos-banners .contenedor-slides{
     display: none;
   }
}
@media (max-width: 991px){
   .hero .content .title-box{
    width: 100%;
    text-align: center;
   }
   .hero::after{
   
    display: none;
   }
   .hero .content .title-box{
    width: 100%;
    text-align: center;
   }
   .featured .title-box .headings{
    width: 80%;
    text-align: center;
   }
   .contact .form-content{
    grid-template-columns: repeat(1, 1fr);
   }
   .footer{
    padding: 50px;
   }
   .footer .row{
    grid-template-columns: 1.5fr 1fr;
   }
}
@media (max-width: 900px){
  .section .title{
    width: 100%;
  }
}
@media (max-width: 768px){
  html{
    font-size: 59.5%;
  }
  .header{
    padding: 0rem 6rem;
  }
  .hero{
    padding: 50px;
  }

  .header .logo img{
    width: 170px;
  }

  .about .content{
    grid-template-columns: repeat(1, 1fr);
  }
  .short-section{
    padding: 50px;
  }
  .section{
    padding: 50px;
  }
  .section .title{
    width: 80%;
  }
  .featured .title-box .headings{
    width: 100%;
    text-align: center;
   }
   .slide img {
  
  object-fit: contain;
}

   .footer{
    padding: 30px;
   }
   .footer .row{
    grid-template-columns: 1fr;
   }
   
}

@media (max-width: 600px){
  .header .contact-info{
    display: none;
  }
   .hero{
    padding: 30px;
  } 
  .why-us .image{
    display: block;
  }
  
  .why-us .image img{
      width: 40rem;
  }
  
  .featured .title-box .tab-btns{
  display: flex;
  align-items: center;
  justify-content: center;
}
}

@media (max-width: 500px){
  .header{
    padding: 0rem 4rem;
  }
  .header .navbar .navlist .navitem .navlink{
    color: var(--color-title);
  }
   .header .navbar .navlist{
    width: 100%;
    background: var(--background);
    
   }
   .header .btn{
    display: none;
   }
   .hero .title-box h1{
    font-size: 4.5rem;
   }
   .short-section{
    padding: 30px;
  }
  .section{
    padding: 30px;
  }
  .about .about-text .stats .card{
    width: 100%;
  }
  .about .about-image{
    height: 100%;
  } 
}

@media (max-width: 400px){
  .hero{
    height: 800px;
  }
}


/* Sección Sabores */
.sabores {
  padding: 10rem 10rem;
  background: linear-gradient( to bottom right, rgba(237, 106, 133, 0.08), rgba(244, 60, 100, 0.08) );
}

.section-title {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  color: var(--secondary-color);
  font-family: 'Asap';
}

.section-desc {
  font-size: 1.8rem;
  text-align: center;
  color: #555;
  max-width: 70rem;
  margin: 1.5rem auto 4rem;
  line-height: 3rem;
}

/* Filtros */
.filters {
  text-align: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 1rem 2rem;
  font-size: 1.7rem;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  background: #cb7cf6;
  color: #fdfdfd;
  margin: 0 .5rem;
  transition: all .3s;
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--secondary-color);
  color: #fff;
}

/* GRID */
.sabores-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(5, 1fr);
}

/* Ítems */
.sabor-item {
  background: #fff;
  padding: 2rem;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--secondary-color);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: .3s ease;
}

.sabor-item:hover {
  transform: scale(1.05);
  background: #fbdfe5;
}

/* Responsive */
@media (max-width: 1200px) {
  .sabores-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .sabores-container{
    align-items: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .sabores-grid {
    grid-template-columns: repeat(2, 1fr);
   
  }

  
/* Filtros */
.filters {
  text-align: center;
  
}

.filter-btn {
  
  margin: 1rem .5rem;
  
}
}

@media (max-width: 568px){
  .filters{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .filters .filter-btn{
    width: 90%;
  }
}

@media (max-width: 418px){
  .filters{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .filters .filter-btn{
    width: 100%;
  }
}



.portada-principal {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portada-contenido {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  padding: 2rem 4rem;
  max-width: 800px;
}

/* Título y texto */
.portada-contenido h1 {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.portada-contenido p {
  font-size: 2rem;
  line-height: 1.6;
  text-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

/* Fondo con imágenes */
.portada-fondo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.portada-fondo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

/* Imagen activa */
.portada-fondo img.activo {
  opacity: 1;
}

/* Degradado overlay */
.portada-principal::before {
  content: "";
  position: absolute;
  inset: 0;
 background: linear-gradient(
  to bottom right,
  rgba(106, 42, 140, 0.32),
  rgba(203, 124, 246, 0.32)
);
  z-index: 2;
}




/* Fila */
.fila-50 {
  display: flex;
  gap: 30px; /* separación entre columnas */
}

/* Columnas 50% */
.col-50 {
  flex: 0 0 50%;
  max-width: 50%;
}

/* Responsive */
@media (max-width: 991px) {
  .fila-50 {
    flex-direction: column;
  }

  .col-50 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


.video-promo {
  display: none;
  justify-content: center;
  margin: 60px 0;
}

.video-promo__media {
  width: 100%;
  max-width: 360px; /* ajustá según diseño */
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  background: #000;
}

@media (max-width: 791px){
   .video-promo {
  display: flex;
  
}
}