@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: #777e5c;
  color: #111;
}





























header.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: white;
  font-family: sans-serif;
  position: relative;
  z-index: 1000;
}

/* 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;
}

/* 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: background 0.2s, color 0.2s;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
  color: #c49a6c;
}

.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;
}



/* --- 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: relative;
    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; /* Desactiva hover en móvil */
  }

  .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 {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, #1b1b1b, #282828);
  z-index: 1;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

/* 👇 Aquí agregamos el degradado difuminado */
.hero-background::after {
  content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(27, 27, 27, 0) 30%, #282828 100%);
    z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-content h1 img {
  width: 20%;
}

.buttons {
  display: flex;
  justify-content: center;
  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;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  color: white;
  z-index: 2;
}

/* ---------------- RESPONSIVE ------------------ */
@media screen and (max-width: 900px) {
  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content h1 img {
    width: 150px;
  }

  .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
  }

  .scroll-down {
    font-size: 22px;
  }
}















  .modelos {
    background: linear-gradient(to top, #1b1b1b, #282828);
    padding: 80px 40px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .modulo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    width: 100%;
    margin-bottom: 60px;
    flex-wrap: wrap;
  }
  
  .modulo.invertido {
    flex-direction: row-reverse;
  }
  
  .img-modulo {
    width: 48%;
    height: 300px;
    border-radius: 4px;
    object-fit: cover;
  }
  
  .modulo .info {
    background-color: #1b1b1b;
    padding: 30px;
    width: 28%;
    height: 300px;
    border: 1px solid #ffffff;
    box-sizing: border-box;
    text-align: left;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .modulo .info h3 {
    margin-bottom: 20px;
    font-size: 20px;
    letter-spacing: 1px;
  }
  
  .modulo .info ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
  }
  
  .modulo .info ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #ddd;
  }
  
  .modulo .info button {
    background-color: white;
    color: black;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .modulo .info button:hover {
    background-color: #ccc;
  }
  
  .titulo-modelos {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
  }
  
  .titulo-360 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
  }
  
  .titulo-modulo {
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    margin: 0;
    white-space: nowrap;
  }
  
  .boton-360 {
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    transition: background-color 0.3s;
    text-decoration: none;
  }
  
  .boton-360:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .icono-360 {
    width: 32px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }
  
  @media (max-width: 890px) {
    .modulo {
      flex-direction: column !important;
      align-items: center;
      gap: 20px;
    }
  
    .img-modulo,
    .modulo .info {
      width: 90%;
      height: auto;
    }
  
    .modulo .info {
      padding: 25px;
      height: auto;
    }
  
    .titulo-360 {
      justify-content: left;
      margin-bottom: 15px;
    }
  
    .titulo-modelos {
      font-size: 30px;
    }
  
    .titulo-modulo {
      font-size: 1rem;
    }
  
    .icono-360 {
      width: 26px;
    }
  }



















  #footer {
    background: linear-gradient(to top, #000000, #1b1b1b);
    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;
    }
  
  
  }
  
  
  