@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;
  }
}
















.galeria-section {
  background: linear-gradient(to top, #777777, #777e5c);
  padding: 60px 20px;
}

.tituloG-container {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.tituloG {
  width: 15%;
  position: relative;
}

.subtituloG {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  font-style: italic;
  letter-spacing: 0.5px;
}

.linea-decorativa {
  width: 200px;
  height: 4px;
  background-color: #1a1a1a;
  margin: 0 auto;
  border-radius: 2px;
  animation: expandLine 2s ease forwards;
}

@keyframes expandLine {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 200px;
    opacity: 1;
  }
}

/* Estilo general galería para desktop */
.galeria {
  display: flex;
  width: 90%;
  height: 600px;
  margin: 0 auto;
  border-radius: 5px;
  overflow: hidden;
}

.galeria img {
  width: 0;
  flex-grow: 1;
  object-fit: cover;
  opacity: 0.9;
  transition: 1s ease;
}

.galeria img:hover {
  cursor: crosshair;
  width: 350px;
  height: 600px;
  opacity: 1;
  filter: contrast(120%);
}

/* RESPONSIVE: carrusel en mobile */
@media (max-width: 900px) {

  .tituloG {
    width: 25%;
  }

  .galeria {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    height: auto;
    gap: 10px;
    padding-bottom: 10px;
    scroll-behavior: smooth;
  }

  .galeria img {
    flex: 0 0 auto;
    width: 80%;
    height: 300px;
    border-radius: 10px;
    scroll-snap-align: center;
    transition: transform 0.3s ease;
  }

  .galeria img:hover {
    width: 80%;
    transform: scale(1.03);
    height: 300px;
    filter: contrast(105%);
  }

  .tituloG {
    font-size: 32px;
  }

  .subtituloG {
    font-size: 16px;
  }
}













.sobre-dero {
  background: linear-gradient(to top, #3a3a3a, #777777);
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.sobre-dero-content {
  display: flex;
  max-width: 1200px;
  width: 90%;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.sobre-dero-media {
  flex: 1;
  min-width: 300px;
}

.sobre-dero-media img {
  width: 100%;
  min-height: 400px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

.sobre-dero-texto {
  flex: 1;
  min-width: 300px;
}

.sobre-dero-texto h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 20px;
  font-weight: 700;
}

.sobre-dero-texto h2 span {
  color: #222;
  font-weight: 600;
}

.sobre-dero-texto p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #ffffff;
}

.btn-contacto {
  display: inline-block;
  padding: 12px 24px;
  background-color: #4CAF50;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.btn-contacto:hover {
  background-color: #3e9141;
}

@media (max-width: 900px) {

  .sobre-dero-texto h2 {
    font-size: 1.9rem;
    color: #222;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .sobre-dero-content {
    flex-direction: column;
  }

  .sobre-dero-media {
    order: -1; /* hace que la imagen se muestre primero */
  }
}


















.beneficiosItems {
  background: #3a3a3a;
  color: white;
  padding: 80px 40px;
  text-align: center;
}

.beneficiosItems .titulo-beneficios {
  font-size: 36px;
  margin-bottom: 20px;
}

.beneficiosItems .descripcion-beneficios {
  font-size: 18px;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 60px;
}

.beneficiosItems .grid-beneficios {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columnas iguales */
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.beneficiosItems .item-beneficio {
  background-color: #1f1f1f;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beneficiosItems .item-beneficio:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.beneficiosItems .item-beneficio h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #ffa500;
}

.beneficiosItems .item-beneficio p {
  font-size: 16px;
  color: #ddd;
}


/* Responsive para pantallas medianas */
@media (max-width: 1024px) {
  .beneficiosItems .grid-beneficios {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive para pantallas chicas */
@media (max-width: 600px) {
  .beneficiosItems .grid-beneficios {
    grid-template-columns: 1fr;
  }
}





.beneficios {
  background: linear-gradient(to top, #282828, #3a3a3a);
  color: #fff;
  padding: 40px 10px;
  text-align: center;
}

.iconos-beneficios {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 columnas en PC */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.beneficio {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}

.beneficio i {
  font-size: 34px;
  background-color: #fff;
  color: #000;
  border-radius: 50%;
  padding: 12px;
  margin-bottom: 10px;
}

.beneficio p {
  font-size: 0.85rem;
  line-height: 1.3;
  margin: 0;
  color: #ddd;
}

/* Tablets */
@media (max-width: 992px) {
  .iconos-beneficios {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Celulares */
@media (max-width: 600px) {
  .iconos-beneficios {
    grid-template-columns: repeat(2, 1fr);
  }
}





















#footer {
  background: linear-gradient(to top, #000000, #282828);
  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;
  }


}


