body {
  font-family: 'Rajdhani', sans-serif;
}

/* Texto desplazándose tipo marquee (cinta continua) */
.marquee {
  display: flex;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  min-width: 100%;
  animation: marquee 40s linear infinite;
}

@keyframes marquee {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

/* 🔹 Inputs del buscador más definidos */
.marquee input:focus {
  outline: none;
  box-shadow: 0 0 4px rgba(255,255,255,0.7);
}
.marquee-content span {
  padding-right: 1rem; /* 🔹 agrega espacio entre secciones */
}

.newsearch1{
    padding-left: 18px; padding-bottom: 18px; padding-right: 18px; padding-top: 18px;  color: white;
}
.newsearch2{
    margin-right: 70px;
}

/* 🔹 Estilos menú móvil personalizados */
.custom-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background-color: rgb(30,57,95);
  color: white;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 0;
  font-family: Arial, sans-serif;
}

.custom-menu-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 22px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.custom-menu-list {
  list-style: none;
  padding: 60px 20px 20px; /* 🔹 más espacio arriba del "Home" */
  margin: 0;
}

.custom-menu-list li {
  margin-bottom: 25px;
}

.custom-menu-list a {
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-size: 17px;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
}

.custom-menu-list a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: #f97316;
  transition: width 0.3s ease;
}

.custom-menu-list a:hover {
  color: #f97316;
  transform: translateX(5px);
}

.custom-menu-list a:hover::after {
  width: 100%;
}

.custom-menu-footer {
  text-align: center;
  font-size: 16px; /* 🔹 más grande */
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 25px; /* más aire */
  line-height: 1.5;
}

.custom-menu-footer .custom-phone {
  margin: 12px 0;
  font-size: 17px; /* 🔹 teléfono más grande */
  font-weight: 600;
}

.custom-social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 20px;
}

.custom-social-icons a {
  color: white;
  transition: color 0.3s, transform 0.3s;
}

.custom-social-icons a:hover {
  color: #f97316;
  transform: scale(1.2);
}

/* Animación al abrir/cerrar */
.custom-mobile-menu.show {
  transform: translateX(0);
}


/* Evita que desaparezca de golpe */
.custom-services-dropdown .custom-dropdown {
  transition-delay: 190ms; /* delay al cerrar */
}

.custom-services-dropdown:hover .custom-dropdown {
  transition-delay: 0ms; /* abre sin delay */
}




















/* slider */
.hero-wrapper,
.hero-wrapper .swiper,
.hero-wrapper .swiper-slide {
  height: clamp(420px, 70vh, 760px);
  position: relative;
}

/* */
.btn-primary {
  display: inline-block;
  background: rgb(254 133 1);
  color: #fff;
  font-weight: 700;
  padding: 0.7rem 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 10px rgba(0,0,0,.15);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 14px rgba(0,0,0,.2);
  opacity: .95;
}

.btn-secondary {
  display: inline-block;
  background: linear-gradient(90deg, rgb(254,133,1) 50%, rgb(0,180,0) 100%);
  color: #fff;
  font-weight: 700;
  padding: 0.7rem 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 10px rgba(0,0,0,.15);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 14px rgba(0,0,0,.2);
  opacity: .95;
}

/* Flechas Swiper en blanco */
.hero-wrapper .swiper-button-prev,
.hero-wrapper .swiper-button-next {
  color: #fff;
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.4));
}

/* Puntos de la paginación en blanco con borde sutil */
.hero-wrapper .swiper-pagination-bullet {
  background: #fff;
  opacity: .8;
}
.hero-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Texto con sombra para legibilidad sobre foto */
.hero-wrapper h2,
.hero-wrapper p {
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}

/* Ajustes responsivos finos */
@media (max-width: 640px) {
  .btn-primary,
  .btn-secondary {
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
  }
}

.logo1{
  width: 6.3rem;
}

/* 
mobile menu */



/* 🔹 Animación de slide para acordeón */
.custom-accordion-content,
.custom-subaccordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding-left: 15px;
}

/* Cuando está abierto */
.custom-accordion-content.open,
.custom-subaccordion-content.open {
  max-height: 1000px;
  padding-top: 12px;
  padding-bottom: 8px;
}

/* Botones */
.custom-accordion-toggle,
.custom-subaccordion-toggle {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 4px 0;
  font-weight: 600;
  font-size: 16px;
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
}

.custom-accordion-toggle:hover,
.custom-subaccordion-toggle:hover {
  color: #f97316;
}

/* 🔹 Scroll en menú móvil */
.custom-mobile-scroll {
  max-height: 100vh;   /* altura máxima del viewport */
  overflow-y: auto;    /* activa scroll vertical */
  padding: 10px 15px;
}

/* Opcional: personalizar scroll */
.custom-mobile-scroll::-webkit-scrollbar {
  width: 6px;
}
.custom-mobile-scroll::-webkit-scrollbar-thumb {
  background: #f97316;
  border-radius: 4px;
}
.custom-mobile-scroll::-webkit-scrollbar-track {
  background: #1e293b;
}



