/* Styles specific to servicio-grua.html */

/* Asegura que el HTML y el Body tengan scroll vertical normal */
html,
body {
  overflow-x: hidden; /* Oculta el scroll horizontal por defecto */
  height: auto; /* Altura automática para permitir scroll vertical */
  margin: 0;
  position: relative;
}

/* Revertir el margen superior del hero */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-height); /* Vuelve al margen original para el header */
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23FF8C00" opacity="0.2"/><circle cx="80" cy="30" r="1.5" fill="%230047AB" opacity="0.3"/><circle cx="40" cy="70" r="1" fill="%23FF8C00" opacity="0.4"/><circle cx="90" cy="80" r="2.5" fill="%230047AB" opacity="0.2"/></svg>'); /* Updated to new blue and orange */
  animation: float 20s ease-in-out infinite;
}

/* MUCH DARKER OVERLAY FOR BETTER TEXT READABILITY */
.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 71, 171, 0.85) 0% /* Updated to new primary blue */,
    rgba(17, 24, 39, 0.8) 50%,
    rgba(255, 140, 0, 0.75) 100% /* Updated to new secondary orange */
  );
  /* Added additional dark overlay for maximum readability */
  background-image: linear-gradient(
      135deg,
      rgba(0, 71, 171, 0.85) 0%,
      rgba(17, 24, 39, 0.8) 50%,
      rgba(255, 140, 0, 0.75) 100%
    ), linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}

.animated-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 140, 0, 0.08); /* Updated to new secondary orange */
  animation: float-shapes 15s ease-in-out infinite;
}

.shape-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: -5s;
  background: rgba(0, 71, 171, 0.08); /* Updated to new primary blue */
}

.shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: -10s;
}

@keyframes float-shapes {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-30px) rotate(120deg);
  }
  66% {
    transform: translateY(20px) rotate(240deg);
  }
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--bg-image, url("/placeholder.png?height=1080&width=1920"));
  background-size: cover;
  background-position: center;
  z-index: -1;
  /* Additional filter to darken the background image */
  filter: brightness(0.4) contrast(1.1);
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 140, 0, 0.9); /* Updated to new secondary orange */
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 140, 0, 0.3); /* Updated to new secondary orange */
  color: var(--gray-900);
  box-shadow: var(--shadow-lg);
}

/* ENHANCED TEXT READABILITY */
.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 0, 0, 0.3);
  line-height: 1;
}

.title-line {
  display: block;
}

.title-line.highlight {
  background: linear-gradient(45deg, var(--secondary-orange), var(--secondary-orange-light)); /* Updated to new secondary orange */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
}

.hero-text {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-btn {
  font-size: 1rem;
  padding: 1.25rem 2.5rem;
}

.hero-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-btn {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--secondary-orange); /* Changed from --secondary-gold */
  color: var(--gray-900);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.25rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-lg);
}

.contact-btn:hover {
  background: var(--secondary-orange-light); /* Changed from --secondary-gold-light */
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.contact-btn.pulse {
  animation: pulse 2s infinite;
}

.contact-info-hero {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.contact-label {
  font-size: 0.875rem;
  opacity: 0.9;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.contact-number {
  font-size: 1.125rem;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item-hero {
  text-align: center;
  background: rgba(255, 140, 0, 0.15); /* Updated to new secondary orange */
  backdrop-filter: blur(15px);
  padding: 1.5rem 1rem;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 140, 0, 0.3); /* Updated to new secondary orange */
  min-width: 120px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.stat-number-hero {
  display: inline-block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--secondary-orange-light); /* Changed from --secondary-gold-light */
  margin-bottom: 0.25rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 140, 0, 0.5); /* Updated to new secondary orange */
}

.stat-plus,
.stat-percent {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--secondary-orange-light); /* Changed from --secondary-gold-light */
  margin-left: 0.25rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.stat-label-hero {
  display: block;
  font-size: 0.875rem;
  opacity: 0.95;
  font-weight: 600;
  margin-top: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 4;
}

.hero-nav-btn {
  width: 3rem;
  height: 3rem;
  border: none;
  background: rgba(255, 140, 0, 0.2); /* Updated to new secondary orange */
  backdrop-filter: blur(10px);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 140, 0, 0.3); /* Updated to new secondary orange */
  box-shadow: var(--shadow-md);
}

.hero-nav-btn:hover {
  background: rgba(255, 140, 0, 0.4); /* Updated to new secondary orange */
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.hero-indicators {
  display: flex;
  gap: 0.5rem;
}

.indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.indicator.active {
  background: var(--secondary-orange); /* Changed from --secondary-gold */
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 140, 0, 0.5); /* Updated to new secondary orange */
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  text-align: center;
  color: var(--white);
  z-index: 4;
}

.scroll-text {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.scroll-arrow {
  animation: bounce-vertical 2s infinite;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.7); /* Updated to new secondary orange */
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 140, 0, 0); /* Updated to new secondary orange */
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 140, 0, 0); /* Updated to new secondary orange */
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes bounce-vertical {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Optimización para pantallas anchas y bajas */
@media (min-width: 1366px) and (max-height: 768px) {
  .hero {
    height: 85vh;
    /* margin-top: calc(var(--header-height) - 20px); */
  }

  .hero-content {
    max-width: 900px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
  }

  .hero-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-actions {
    margin-bottom: 2rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  .stat-item-hero {
    padding: 1rem 0.8rem;
  }
}

@media (min-width: 1920px) and (max-height: 1080px) {
  .hero {
    height: 80vh;
  }

  .hero-content {
    max-width: 1000px;
  }

  .hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
  }
}

@media (min-width: 1280px) and (max-height: 720px) {
  .hero {
    height: 90vh;
  }

  .hero-badge {
    margin-bottom: 1.5rem;
  }

  .hero-title {
    margin-bottom: 1rem;
  }

  .hero-text {
    margin-bottom: 2rem;
  }

  .hero-actions {
    margin-bottom: 2rem;
  }
}

/* Marquee Section */
.marquee-section {
  background: var(--gradient-primary);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-container {
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marquee 30s linear infinite;
  color: var(--white);
  font-weight: 600;
  font-size: 1.125rem;
}

.marquee-text {
  margin: 0 2rem;
}

.marquee-separator {
  color: var(--secondary-orange-light); /* Changed from --secondary-gold-light */
  font-size: 1.5rem;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Services Section - Ajustado para scroll vertical normal */
.services {
  background: var(--white);
}

.services-container {
  overflow: visible; /* Permite el desbordamiento normal */
  position: relative;
  /* Elimina estilos de "fijado" */
  transition: none;
  border: none;
  box-shadow: none;
  background-color: transparent;
}

.services-slider {
  display: flex;
  flex-wrap: wrap; /* Permite que las tarjetas se envuelvan a la siguiente línea */
  justify-content: center; /* Centra las tarjetas */
  overflow-x: visible; /* Elimina el scroll horizontal forzado */
  -webkit-overflow-scrolling: auto;
  scroll-snap-type: none; /* Deshabilita el snap */
  scrollbar-width: auto; /* Vuelve al scrollbar por defecto */
  -ms-overflow-style: auto; /* Vuelve al scrollbar por defecto */
  gap: 2rem; /* Espacio entre tarjetas */
  padding-bottom: 0; /* Elimina el padding extra */
}

.services-slider::-webkit-scrollbar {
  display: auto; /* Vuelve a mostrar el scrollbar */
}

.service-track {
  display: flex;
  flex-wrap: wrap; /* Permite que las tarjetas se envuelvan */
  gap: 2rem; /* Espacio entre tarjetas */
  padding-bottom: 0; /* Elimina el padding extra */
  justify-content: center; /* Centra las tarjetas */
}

.service-card {
  flex-shrink: 1; /* Permite que las tarjetas se encojan si es necesario */
  width: 350px; /* Mantiene un ancho fijo, pero se ajustará con flex-wrap */
  max-width: 100%; /* Asegura que no se desborde en pantallas pequeñas */
  scroll-snap-align: none; /* Deshabilita el snap */
}

.modern-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  border: 1px solid var(--gray-100);
  position: relative;
}

.modern-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.modern-card:hover::before {
  transform: scaleX(1);
}

.modern-card:hover {
  transform: translateY(-0.75rem);
  box-shadow: var(--shadow-2xl);
}

.service-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 71, 171, 0.8) 0%, rgba(255, 140, 0, 0.6) 100%); /* Updated to new blue and orange */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.modern-card:hover .service-overlay {
  opacity: 1;
}

.modern-card:hover .service-image img {
  transform: scale(1.1);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  background: var(--white);
  color: var(--primary-blue); /* Changed from --primary-navy */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
}

/* Process Section */
.process {
  background: var(--gray-50); /* Ensure a light background for process steps */
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  border: 1px solid var(--gray-100);
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-bottom-left-radius: var(--radius-md);
  border-bottom-right-radius: var(--radius-md);
  transition: width var(--transition-normal);
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.process-step:hover::before {
  width: 100%;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--primary-blue); /* Changed from --primary-navy */
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--secondary-orange); /* Changed from --secondary-gold */
  transition: all var(--transition-normal);
}

.process-step:hover .step-number {
  background: var(--secondary-orange); /* Changed from --secondary-gold */
  color: var(--primary-blue); /* Changed from --primary-navy */
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-lg);
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.step-description {
  color: var(--gray-600);
  line-height: 1.7;
}

/* Gallery Section */
.gallery {
  background: var(--gray-100);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 71, 171, 0.7); /* Updated to new primary blue */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-icon {
  color: var(--white);
  font-size: 2.5rem;
  transform: scale(0.8);
  opacity: 0;
  transition: all var(--transition-normal);
}

.gallery-item:hover .gallery-icon {
  transform: scale(1);
  opacity: 1;
}

/* CTA Section */
.cta {
  position: relative;
  background: var(--gray-900);
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/placeholder.png?height=600&width=1920") center / cover;
  z-index: 1;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0.95;
  z-index: 2;
}

.cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="50" cy="50" r="3" fill="%23ffffff" opacity="0.1"/><circle cx="150" cy="80" r="2" fill="%23FFA500" opacity="0.2"/></svg>'); /* Updated to new secondary orange light */
  animation: float 15s ease-in-out infinite;
  z-index: 3;
}

.cta-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 4;
  color: var(--white);
}

.cta-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.cta-phone {
  width: 5rem;
  height: 5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  text-decoration: none;
  transition: all var(--transition-normal);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-phone:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.cta-info {
  display: flex;
  flex-direction: column;
}

.cta-label {
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cta-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.cta-number:hover {
  color: var(--secondary-orange-light); /* Changed from --secondary-gold-light */
}

.cta-text {
  flex: 1;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Responsive adjustments for servicio-grua.css */
@media (max-width: 768px) {
  .hero {
    height: 90vh;
    margin-top: calc(var(--header-height) + 60px);
  }

  .hero-content {
    text-align: center;
    padding: 0 1rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .hero-text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-contact {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .stat-item-hero {
    min-width: 100px;
    padding: 1rem 0.5rem;
  }

  .hero-controls {
    bottom: 1rem;
  }

  .services-slider {
    /* Ajustes para pantallas más pequeñas si es necesario */
  }

  .service-card {
    width: 300px; /* Ajusta el ancho para pantallas más pequeñas */
  }

  .process-steps {
    grid-template-columns: 1fr; /* Apila los pasos en pantallas pequeñas */
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Ajusta para pantallas más pequeñas */
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .cta-contact {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-phone {
    width: 4rem;
    height: 4rem;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }

  .hero-text {
    font-size: 0.9rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-item-hero {
    min-width: auto;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }

  .hero-btn {
    padding: 1rem 2rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  .stat-symbol {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: clamp(1.5rem, 12vw, 2rem);
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    height: 100vh;
  }

  .hero-content {
    padding: 1rem;
  }

  .hero-stats {
    flex-direction: row;
    gap: 1rem;
  }

  .stat-item-hero {
    min-width: 80px;
    padding: 0.8rem 0.5rem;
  }
}
