/* Estilos generales para el menú móvil */
#mobile-nav {
  background: #444342;
  /* Fondo sólido darkGray */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 40;
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 2px;
}

#mobile-nav.translate-x-0 {
  transform: translateX(0);
  opacity: 1;
}

/* Estilos para los enlaces del menú móvil */
#mobile-nav nav {
  margin-top: 2.5rem;
  /* mt-10 */
}

#mobile-nav a {
  color: #ffffff;
  /* Blanco para contraste contra darkGray */
  font-size: 1.5rem;
  /* text-2xl, 24px */
  font-weight: 600;
  /* font-semibold */
  padding: 1rem;
  /* py-4 para área táctil grande */
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

#mobile-nav.translate-x-0 a {
  opacity: 1;
  transform: translateY(0);
}

/* Retraso escalonado para animación de entrada */
#mobile-nav a:nth-child(1) {
  transition-delay: 0.1s;
}

#mobile-nav a:nth-child(2) {
  transition-delay: 0.2s;
}

#mobile-nav a:nth-child(3) {
  transition-delay: 0.3s;
}

#mobile-nav a:nth-child(4) {
  transition-delay: 0.4s;
}

#mobile-nav a:hover {
  color: #EB6F23;
  /* yellow1 para hover */
}

/* Estilos para la navbar de escritorio */
nav a {
  color: #000000;
  /* text-black */
  font-size: 1rem;
  /* text-base, 16px */
  font-weight: 600;
  /* font-semibold */
  padding: 0.25rem 0.5rem;
  /* px-2 py-1 */
  transition: color 0.3s ease;
}

nav a:hover {
  color: #EB6F23;
  /* yellow1 para hover, consistente con menú móvil */
}

nav a .group span {
  height: 2px;
  /* Línea más gruesa para mejor visibilidad */
  bottom: -2px;
  /* Ajustado de -bottom-0.5 para mejor alineación */
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Estilos para el contenedor del botón de hamburguesa */
#mobile-menu-button {
  position: relative;
  width: 32px;
  height: 24px;
  z-index: 60;
}

/* Estilos para las barras del botón de hamburguesa */
.top-bar,
.middle-bar,
.bottom-bar {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #000;
  left: 0;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.top-bar {
  top: 0;
}

.middle-bar {
  top: 10px;
}

.bottom-bar {
  top: 20px;
}

/* Animaciones para transformar las barras en una X */
#mobile-menu-button.open .top-bar {
  top: 10px;
  transform: rotate(45deg);
}

#mobile-menu-button.open .middle-bar {
  opacity: 0;
}

#mobile-menu-button.open .bottom-bar {
  top: 10px;
  transform: rotate(-45deg);
}

/* Bloquea el scroll en el cuerpo de la página cuando el menú está abierto */
.no-scroll {
  overflow: hidden;
  height: 100vh;
}

/* Estilos para la nueva hero section */
.tooltip:hover .text-sm {
  opacity: 1;
  transform: translateX(0);
}

.tooltip .text-sm {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Nuevos estilos para el texto giratorio */
.text-ring-container {
  animation: spin 20s linear infinite;
  /* Rotación lenta y fluida */
}

.text-ring {
  position: relative;
  display: inline-block;
}

.text-ring [style*="--index"] {
  font-family: "Anton";
  /* Usar la fuente manuscrita correcta */
  text-transform: uppercase;
  font-size: calc(var(--font-size, 1) * 1rem);
  /* Tamaño ajustado */
  letter-spacing: 0.2em;
  /* Aumentar el espaciado entre letras */
  position: absolute;
  top: 50%;
  left: 50%;
  color: #2A2929;
  /* Usar darkGray de tu paleta */
  opacity: 0.9;
  /* Misma opacidad que antes */
  transform: translate(-50%, -50%) rotate(calc(360deg / var(--total) * var(--index))) translateY(calc(var(--radius, 5) * -1ch));
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* Estilos boton quote */
.cssbuttons-io-button {
  background: #EB6F23;
  color: #fff;
  font-family: "Roboto", sans-serif;
  padding: 0.5em 1.2em;
  font-size: 16px;
  /* más pequeño para móviles */
  font-weight: medium;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em #F29F35;
  overflow: hidden;
  position: relative;
  height: 3em;
  padding-right: 3.3em;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 280px;
  /* control de ancho */
}

@media (min-width: 768px) {
  .cssbuttons-io-button {
    font-size: 17px;
    height: 2.8em;
    width: auto;
  }
}

.cssbuttons-io-button:hover {
  background: #F29F35;
  /* Hover sólido */
}

.cssbuttons-io-button .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #EB6F23;
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: #0f0f0f;
  /* Gris oscuro */
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}

/* Estilos personalizados para la sección de estadísticas */
.stat-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

/* Estilos para el carrusel Swiper con efecto 3D */
.carousel-3d {
  width: 100%;
  height: 100%;
  padding-bottom: 40px;
  /* Espacio para la paginación */
  perspective: 1000px;
  /* Añade perspectiva para el efecto 3D */
}

.carousel-3d .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20rem;
  /* h-80 = 320px por defecto */
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transform-style: preserve-3d;
}

@media (min-width: 768px) {
  .carousel-3d .swiper-slide {
    height: 24rem;
    /* h-96 = 384px en pantallas grandes */
  }
}

.carousel-3d .swiper-slide-active {
  transform: translateZ(50px) scale(1.1);
  /* Slide central más cerca y grande */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  /* Sombra para profundidad */
}

.carousel-3d .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.carousel-3d .swiper-slide .bg-darkerGray {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-3d .swiper-pagination-bullet {
  background: #444342;
  /* darkerGray */
}

.carousel-3d .swiper-pagination-bullet-active {
  background: #EB6F23;
  /* yellow1 */
}

/* Estilos para el Smooth Accordion */
.shadow-box {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.ico-plus {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent;
  position: relative;
}

.ico-plus::before,
.ico-plus::after {
  content: "";
  position: absolute;
  background: #000;
  transition: transform 0.5s ease-in-out;
}

.ico-plus::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.ico-plus::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.active .ico-plus::after {
  transform: translateX(-50%) rotate(90deg);
}

/* efecto lupa */
.lens {
  position: absolute;
  border: 2px solid #000;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-repeat: no-repeat;
  pointer-events: none;
  display: none;
  z-index: 20;
}

/* zoom suave al pasar el mouse  */
.image-hover-zoom {
  transition: transform 0.4s ease;
}

.image-hover-zoom:hover {
  transform: scale(1.1);
  z-index: 10;
}

/* Banner tipo marquee para empresa de construcción */

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  width: 100vw;
  background-color: #F15D22;
  padding: 6px 0;
  position: relative;
  z-index: 20;
}

.marquee-inner {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  font-size: 1.4rem;
  color: #FFFFFF; /* Changed to white for high contrast */
  font-family: 'Roboto', sans-serif;
}

.bold-text {
  font-weight: bold;
  color: #FFFFFF; /* Changed to white for consistency and contrast */
  margin-right: 50px;
  white-space: nowrap;
}

.regular-text {
  color: #E5E7EB; /* Light gray for softer contrast */
  margin-right: 50px;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Para prevenir scroll lateral en general */
html,
body {
  overflow-x: hidden;
}