
@font-face {
  font-family: sansArabic;
  src: url(IBM_Plex_Sans_Arabic/IBMPlexSansArabic-Regular.ttf);
  font-weight: bold;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: sansArabic, sans-serif;
}

body {
  background-color: #000000;
  color: #111;
}









#promoPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.popup-content {
  width: 90%;
  max-width: 1200px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.popup-content img {
  width: 100%;
  height: auto;
}


#closePopup {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#closePopup:hover {
  background-color: #f2f2f2;
}

#promoPopup.active {
  opacity: 1;
  visibility: visible;
}

.promo-mobile {
  display: none;
}

.promo-desktop {
  display: block;
}

@media (max-width: 768px) {
  .promo-desktop {
    display: none;
  }
  .promo-mobile {
    display: block;
  }
}












header.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: white;
  font-family: sans-serif;
  position: sticky;
  z-index: 1000;
  top: 0;
}

/* Logo */
.navbar img {
  width: 150px;
  height: 40px;
}

/* Navegación principal */
header.navbar nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar nav a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  position: relative;
  transition: all 0.5s ease; /* 👈 controla la suavidad */
}

.navbar nav a:hover {
  color: #777e5c;
  transform: scale(1.2);
  font-weight: bold;
  cursor: pointer;
}

/* Dropdown general */
.dropdown {
  position: relative;
  list-style: none;
}

/* Menú desplegable */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: none;
  flex-direction: column;
  min-width: 180px;
  z-index: 1000;
  padding: 0.5rem 0;
}

/* Items del dropdown */
.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 0.7rem 1rem;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

/* Botón hamburguesa */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background-color: #333;
  display: block;
  border-radius: 3px;
}

header.navbar nav .dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

  .drop-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    flex-direction: column;
    min-width: 180px;
    z-index: 1000;
    padding: 10px;

    /* ESTADOS INICIALES PARA ANIMAR */
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-10px);
    pointer-events: none;   /* evita clics mientras está cerrado */

    /* TRANSICIONES SUAVES PARA ABRIR Y CERRAR */
    transition:
      opacity 0.35s ease,
      max-height 0.45s ease,
      transform 0.35s ease;
  }

  .dropdown:hover .drop-menu {
    opacity: 1;
    max-height: 500px;
    transform: translateY(0);
    pointer-events: auto; /* activa clics cuando se abre */
  }
  
  .drop-item {
    padding: 10px;
    border-bottom: 1px solid #ddd;
  }
  
  .drop-item:hover {
    background: #f5f5f5;
  }


  @media screen and (max-width: 890px) {

    .drop-menu {
      display: none;
      flex-direction: column;
      padding-left: 20px;
    }
  
    .dropdown.open .drop-menu {
      display: flex;
    }

    /* Flecha al lado del texto */
    .dropdown > a {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* flechita por defecto */
    .dropdown > a::after {
      content: "▾";
      font-size: 14px;
      transition: transform 0.3s ease;
      display: inline-block;
    }
    
    .dropdown.open > a::after {
      transform: rotate(180deg);
    }
    .dropdown > a:hover {
      transform: none; /* El hover general no lo afecta */
    }
  }

  header.navbar.nav-hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
  }
  
  header.navbar {
    transition: transform 0.3s ease;
  }
  















.hero {
  display: flex;
  height: 90vh;
  overflow: hidden;
}

.hero-text {
  flex: 1;
  background-color: #0d0d11;
  color: white;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
  
}

.hero-text p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #aaa;
}

.buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: white;
  color: black;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #f0f0f0;
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: normal;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: white;
  color: black;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  color: white;
}

/* ---------------- RESPONSIVE ------------------ */

@media screen and (max-width: 890px) {

    header.navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 20px;
      background: white;
      font-family: sans-serif;
      position: sticky; /* 🔹 importante para móviles */
      top: 0;
      z-index: 1000;
    }
  
    .menu-toggle {
      display: flex;
    }
  
    header.navbar nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      flex-direction: column;
      align-items: flex-start;
      padding: 20px;
      gap: 20px;
      display: none;
    }
  
    header.navbar nav.active {
      display: flex;
    }
  
    .dropdown:hover .dropdown-menu {
      display: none;
    }
  
    .dropdown-menu {
      position: relative;
      top: 0;
      left: 0;
      box-shadow: none;
      border: none;
      padding-left: 20px;
      display: none;
    }
  
    .dropdown.open .dropdown-menu {
      display: flex;
    }
  
    .dropdown > a::after {
      content: " ▼";
      font-size: 12px;
    }

  /* HERO móvil */
  .hero {
    flex-direction: column;
    position: relative;
    height: 100vh; /* Altura completa del dispositivo */
  }

  .hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: brightness(0.4);
  }

  .hero-text {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-color: rgba(13, 13, 17, 0.2);
    backdrop-filter: blur(4px);
  }

  .hero-text h1 {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 14px;
    margin-bottom: 25px;
    color: #ddd;
  }

  .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }

  .scroll-down {
    display: none;
  }
}
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  .nosotros-container {
    background: linear-gradient(to top, #282828, #777e5c);
    display: flex;
    gap: 40px;
    align-items: stretch;
    padding: 80px;
    padding-top: 100px;
    flex-wrap: wrap;
  }
  
  .nosotros-imagenes {
    display: flex;
    flex: 1;
    gap: 20px;
    min-width: 300px;
  }
  
  /* Slider columna izquierda */
  .columna-izquierda {
    flex: 1;
    position: relative;
    overflow: hidden;
  }
  
  .columna-izquierda .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .columna-izquierda .slide.active {
    opacity: 1;
  }
  
  .columna-izquierda img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Columna derecha */
  .columna-derecha {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .columna-derecha img {
    width: 100%;
    height: calc(50% - 10px);
    object-fit: cover;
  }
  
  /* Bloque de texto */
  .nosotros-texto {
    flex: 1;
    min-width: 300px;
  }
  
  .nosotros-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100px;
  }

  .nosotros-texto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .nosotros-texto h5 {
    font-size: 16px;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .nosotros-texto h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .nosotros-texto p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #bdbdbd;
  }
  
  /* Slider oculto por defecto */
  .slider-mobile {
    position: relative;
    width: 100%;
    height: 250px; /* ajustá según necesites */
    overflow: hidden;
  }
  
  .slider-mobile img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .slider-mobile img.active {
    opacity: 1;
  }

/* Responsive: mostrar slider solo en pantallas chicas */
@media (max-width: 900px) {
  .slider-mobile {
    display: block;
  }
  .nosotros-container {
    padding: 20px;
  }

  .nosotros-imagenes {
    display: none;
  }
}

/* Por defecto: mostramos el diseño de escritorio */
.nosotros-imagenes {
  display: flex;
}

.slider-mobile {
  display: none;
}

/* En pantallas chicas (ej: menos de 768px) */
@media (max-width: 768px) {
  .nosotros-imagenes {
    display: none; /* ocultar versión escritorio */
  }

  .slider-mobile {
    display: block; /* mostrar slider mobile */
    width: 100%;
    height: 250px; /* ajusta según tu diseño */
  }
}

  
  
  
  
  
  
  
  
  
  
  







  .faq-mapa-section {
    background: linear-gradient(to top, #1f1f1f, #282828);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 80px 20px;
    font-family: sans-serif;
    color: white;
  }
  
  .faq-col {
    flex: 1 1 500px;
    max-width: 600px;
  }
  
  .mapa-col {
    flex: 1 1 400px;
    max-width: 600px;
    text-align: center;
  }
  
  .mapa-col .mapa-titulo {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
  }  

  .faq-titulo {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
    text-align: center;
  }
  
  .faq-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .faq-question {
    background: #333;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
  }
  
  .faq-answer {
    display: none;
    background: #444;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 5px;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .faq-item.active .faq-answer {
    display: block;
  }
  
  .arrow {
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .arrow {
    transform: rotate(90deg);
  }
  
 

  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  #footer {
    background: linear-gradient(to top, #000000, #1f1f1f);
    color: #fff;
    padding: 80px 0 20px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
  }
  
  .footer-section {
    flex: 1;
    min-width: 250px;
    padding: 0 20px;
  }
  
  .footer-section img {
    width: 180px;
    margin-bottom: 10px;
  }
  
  .footer-section p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .footer-section2 {
    flex: 1;
    min-width: 250px;
    margin-top: 50px;
  }
  
  .footer-section2 p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 500px;
  }
  
  .mail {
    text-decoration: none;
    color: #f39c12;
    transition: all 0.5s;
  }
  
  .mail:hover {
    color: #777e5c;
    font-size: 18px;
  }
  
  .mailMobile {
    display: none;
  }
  
  .footer-section3 {
    flex: 1;
    min-width: 250px;
    margin-top: 50px;
  }
  
  .footer-section3 p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .social-icons a {
    color: #f39c12;
    margin-right: 10px;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.5s;
  }
  
  #fb:hover {
    color: #1534ff;
  }
  
  #ig:hover {
    color: #ca0599;
  }
  
  #tt:hover {
    color: #1da1f2;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #444;
  }
  
  .footer-bottom a {
    color: #f39c12;
    text-decoration: none;
  }
  
  .ig,
.wsp {
  position: fixed;
  z-index: 10000;
  transition: transform 0.3s ease;
}

.ig {
  width: 45px;
  height: 45px;
  bottom: 30px;
  right: 100px;
}

.wsp {
  width: 50px;
  height: 50px;
  bottom: 30px;
  right: 30px;
}

.ig:hover,
.wsp:hover {
  transform: scale(1.1);
  cursor: pointer;
}

/* Ajustes para pantallas más pequeñas */
@media (max-width: 890px) {

  .footer-section img {
    width: 180px;
    margin-bottom: 10px;
  }
  
  .ig {
    right: 80px;
  }

  .wsp {
    right: 20px;
  }
}

@media (max-width: 600px) {

  .footer-section img {
    width: 180px;
    margin-bottom: 10px;
  }

  .ig {
    right: 65px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }

  .wsp {
    right: 15px;
    bottom: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 400px) {

  .footer-section img {
    width: 180px;
    margin-bottom: 10px;
  }

  .ig {
    right: 55px;
  }

  .wsp {
    right: 10px;
  }
}
  
  #tel {
    text-decoration: none;
    color: #f39c12;
    transition: all 0.5s;
  }
  
  #tel:hover {
    color: #007BFF;
  }
  
  .tel {
    margin-left: 25%;
  }
  
  @media screen and (max-width: 890px) {

    .footer-section img {
      width: 180px;
      margin-bottom: 10px;
    }
    
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-section,
    .footer-section2,
    .footer-section3 {
      margin-top: 30px;
      padding: 0;
    }
  
    .footer-section2 p,
    .footer-section3 p {
      max-width: 90%;
      margin: 0 auto;
    }
  
    .social-icons {
      justify-content: center;
    }
  
    .mail {
      display: none;
    }
  
    .mailMobile {
      display: inline;
      color: #f39c12;
      text-decoration: none;
    }
  
    .mailMobile:hover {
      color: #777e5c;
    }
  
  
  }
  
  
  

















  




