/* === GLOBAL RESET === */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
  min-height: 100%;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;     
  font-family: 'Orbitron', sans-serif;
  background-image: url('assets/img/fondo1.png');
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top center;
  background-attachment: fixed;
  padding-top: 160px;
}

/* === HEADER === */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  background-color: #4A7D4AD9;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 1rem;
}

.logo {
  height: 100px;
  width: auto;
}

.hamburger {
  display: none;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem 1.5rem;
  position: relative;
  z-index: 1001;
}

.flecha-dropdown {
  font-size: 0.8em;
  margin-left: 0.3em;
  transition: transform 0.3s ease;
  display: inline-block;
}

/* Rotación cuando se despliega el menú (opcional animación si quieres) */
.nav-item.dropdown-wrapper:hover .flecha-dropdown {
  transform: rotate(180deg);
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

nav {
  display: flex;
  align-items: center;
  gap: 3rem;
  font-size: 1.2rem;
}

.nav-item {
  position: relative;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.3s, border-bottom 0.3s;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  color: white;
}

.nav-item:hover {
  color: #A9D18E;
  border-bottom: 2px solid #A9D18E;
}

.dropdown-wrapper {
  position: relative;
  display: inline-block;
  color: white;
}

.dropdown-wrapper .flecha-dropdown {
  font-size: 0.7em;
  margin-left: 0.3rem;
  transition: transform 0.3s ease;
  pointer-events: none; /* evita que el hover se pierda al pasar sobre la flecha */
}

.dropdown-wrapper:hover .flecha-dropdown {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0; /* evita huecos entre el botón y el dropdown */
  background-color: #3e633e;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  min-width: 200px;
  padding: 0.5rem 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto; /* asegura que puedas clicar los enlaces */
}

.dropdown a {
  color: white;
  text-decoration: none;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Orbitron', sans-serif;
  transition: background-color 0.3s;
}

.dropdown a:hover {
  background-color: #A9D18E;
  color: #1f2d20;
}
.dropdown-wrapper:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* === HERO SECTION === */
.hero {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 2rem 1rem;
  max-width: 1400px;
  margin: auto;
  color: white;
}

.hero-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  max-width: 1400px;
  width: 100%;
}

.hero-text {
  flex: 1;
  margin-right: 2rem;
  padding: 2rem;
  color: white;
  background-color: #4A7D4ABF;
  border-radius: 8px;
  font-family: 'Orbitron', Tahoma, Geneva, Verdana, sans-serif;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}


.hero-logos {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 2rem 1rem;
  margin-top: 2rem;
  scrollbar-width: none;
  flex-wrap: nowrap;
  width: max-content;
  animation: scrollLogosAuto 60s linear infinite;
  flex-shrink: 0;
  height: 90px;
  margin-right: 2rem;
  transition: transform 0.3s ease;
}
.hero-logos-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
  margin-top: -2rem;
  overflow: hidden;
  flex-wrap: nowrap; /* 💡 clave para que los botones no salten de línea */
}

.hero-logos img,
.hero-logos-wrapper img {
  height: 90px;
  transition: transform 0.3s ease;
}
.hero-logos-track {
  flex: 1; /* 💡 permite crecer */
  overflow: hidden;
  position: relative;
}

.hero-logos img {
  flex-shrink: 0;
  height: 80px;
  margin-right: 2rem;
  transition: transform 0.3s ease;
   flex-shrink: 0;
  height: 90px;
  margin-right: 2rem;
  transition: transform 0.3s ease;
}

.hero-logos img:hover,
.hero-logos-wrapper img:hover {
  transform: scale(1.2);
  opacity: 1;
}

.hero-logos::-webkit-scrollbar {
  display: none;
}
.scroll-btn {
  display: none !important;
  
}

.scroll-btn:hover {
  background-color: #2A5E3F;
}

.y-mas {
  margin-top: 1rem;
  font-size: 0.95rem;
  opacity: 0.9;
  text-align: center;
  color: white;
  grid-column: span 2;
}
@keyframes scrollLogosAuto {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
  }
/* === CONDITIONS BOX === */
.testing-conditions {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 4rem 1rem;
    }

    .conditions-box {
      background-color: #4A7D4ABF;
      color: white;
      padding: 2rem;
      border-radius: 8px;
      max-width: 1200px;
      width: 100%;
      text-align: left;
    }

    .conditions-box h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .conditions-box h3 {
      font-family: 'Roboto', sans-serif;
      font-size: 1.2rem;
      line-height: 1.5;
      margin-bottom: 1.5rem;
    }
/* === AEG SERVICES === */
.aeg-services {
  margin-top: 4rem;
}

.aeg-container {
  max-width: 1100px;
  margin: auto;
  background-color: #4A7D4ABF;
  padding: 2rem;
  border-radius: 12px;
}

.aeg-inner-box {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 900px;
  text-align: center;
}

.aeg-inner-box h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: white;
}

.services-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 0;
}

.services-wrap a {
  text-decoration: none;
}

.service-item {
  max-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.service-name {
  color: white;
  margin-top: 0.5rem;
  text-align: center;
}

/* === DIAGNÓSTICO SECTION === */
.diagnostico-section {
  width: 100%;
  margin: 2rem 0;
}

.diagnostico-container {
  position: relative;
  background-color: #4A7D4ABF;
  max-width: 1300px;
  margin: 0 auto;
  border-radius: 8px;
  text-align: center;
  overflow: hidden;
}

.diagnostico-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.diagnostico-content {
  position: relative;
  z-index: 1;
}

.diagnostico-box {
  background-image: url('assets/img/fondoservicio.png');
  background-size: cover;
  background-position: center;
  border: 2px solid white;
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 80%;
}

.diagnostico-box h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  margin: 0;
  color: white;
}

.diagnostico-box h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  margin: 1rem 0 0;
  color: white;
}

.diagnostico-box a {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #A9D18E;
  color: #1f2d20;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.diagnostico-box a:hover {
  background-color: #91c67b;
}
/* === GBB SERVICES === */
.gbb-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1100px;
  margin: 4rem auto;
  align-items: stretch;
}

.gbb2-services {
  margin-top: 2rem;
  width: 100%;
}

.gbb-container {
  max-width: 800px;
  margin: auto;
  background-color: #4A7D4ABF;
  padding: 2rem;
  border-radius: 12px;
}

.gbb-inner-box {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 800px;
  text-align: center;
}

.gbb-inner-box h2 {
  color: white;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.gbb-service-group {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.gbb-service-group a {
  text-decoration: none;
}

/* === SNIPER SERVICES === */
.sniper-services {
  margin-top: 2rem;
}

.sniper-container {
  max-width: 800px;
  margin: auto;
  background-color: #4A7D4ABF;
  padding: 2rem;
  border-radius: 12px;
}

.sniper-inner-box {
  background-image: url('assets/img/fondoservicio.png');
  background-size: cover;
  background-position: center;
  border: 2px solid white;
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 800px;
  text-align: center;
}

.sniper-inner-box h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: white;
}

.sniper-service-group {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.sniper-service-group a {
  text-decoration: none;
}

/* === FOOTER === */
.footer {
  background-color: #4A7D4AD9;
  color: white;
  padding: 2rem 1rem 0 1rem;
  font-family: 'Orbitron', sans-serif;
  width: 100%;
  border-top: 2px solid #ffffff33;
}

.footer-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  box-sizing: border-box;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: flex-start;
}

.footer-brand {
  flex: 1 1 100%;
  max-width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-right: 2rem;
}

.footer-brand img {
  height: 120px;
  flex-shrink: 0;
}

.footer-brand h2 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.6;
}

.footer-brand h3 {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.6;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 150px;
}

.footer-column.enlaces {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer-title {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.footer-links-columns {
  display: flex;
  gap: 0.5rem;
}

.footer-links-columns div {
  flex: 1 1 150px;
}

.footer-links-columns p {
  margin: 0.2rem 0;
}

.footer-copy {
  text-align: center;
  padding: 1rem 0;
  font-size: 0.8rem;
  border-top: 1px solid #ffffff44;
}

.redes-sociales {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem; /* más espacio entre iconos */
  padding: 0.5rem 0;
}

.redes-sociales a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
}

.redes-sociales img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #25d366;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
}

.whatsapp-float:hover {
  transform: scale(1.3);
}

/* === ENLACES GENERALES === */
.enlace-footer {
  color: white;
  text-decoration: none;
  transition: text-decoration 0.3s;
}

.enlace-footer:hover {
  text-decoration: underline;
}

/* ================================== PAGINA AEG ============================================ */
/* ========================== LABORATORIO AEG ========================= */
.banner-replica {
  width: 100%;
  margin: 2rem 0;
  overflow-x: hidden;
}

.banner-contenedor {
  position: relative;
  background-image: url('assets/img/banner-pagina.png');
  border: 2px solid white;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  padding: 3rem 1rem;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 0;
}

.capa-oscura,
.capa-extra {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.capa-oscura {
  background-color: rgba(0, 0, 0, 0.6);
}

.banner-contenido {
  position: relative;
  z-index: 1;
}

.banner-contenido h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin: 0;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.banner-contenido h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  margin: 0;
  margin-top: 1rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.banner-contenido a {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background-color: #A9D18E;
  color: #1f2d20;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
}

.banner-contenido a:hover {
  background-color: #94c17d;
}

/* ================================= BSL-1 Y COMÚN ================================ */

.bsl-section {
  width: 100%;
  margin: 2rem 0;
}

.bsl-banner {
  position: relative;
  background-color: transparent;
  border-radius: 12px;
  margin: 0 auto;
  max-width: 1500px;
  overflow: hidden;
}

.bsl-fondo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('assets/img/banner-bsl1.jpg');
  background-size: contain;
  background-position: center;
  padding: 3rem 2rem;
  opacity: 0.75;
  z-index: 0;
  border-radius: 12px;
  width: 100%;
  overflow: hidden;
}

.bsl-contenido {
  position: relative;
  z-index: 1;
}

.bsl-titulo {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 1300px;
}

.bsl-titulo h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin: 0;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.bsl-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.bsl-card {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 280px;
}

.bsl-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 0;
  text-transform: uppercase;
}

.bsl-card h4 {
  font-family: 'Roboto', sans-serif;
    font-size: 1.2rem !important;
    margin-bottom: 1rem;
  }

.h4-custom span {
  display: block;
    font-weight: bold;
    font-family: 'Orbitron';
    text-transform: uppercase;
    color: #A9D18E; /* Puedes cambiar color si quieres */
    font-size: 1.3rem;
    text-decoration: underline;
}

.bsl-card.precio {
  max-width: 560px;
}

.bsl-card.precio h3 {
  font-size: 2rem;
}

.bsl-card.precio a {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #A9D18E;
  color: #1f2d20;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.bsl-card.precio a:hover {
  background-color: #94c17d;
}

/* =================== BSL-2 =========================*/

#bsl-2 .bsl-fondo {
  background-image: url('assets/img/banner-bsl2.jpg');
}

#bsl-2 .bsl-card.precio a {
  background-color: #C1AD64;
}

#bsl-2 .bsl-card.precio a:hover {
  background-color: #b7a45c;
}

.h5-custom {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  color: white;
}

.h5-custom span {
   display: block;
    font-weight: bold;
    font-family: 'Orbitron';
    text-transform: uppercase;
    color: #C1AD64; /* Puedes cambiar color si quieres */
    font-size: 1.3rem;
    text-decoration: underline;
  }

  /*======================= SECTION HOPUP =========================*/
.hopup-section {
  width: 100%;
  margin: 2rem 0;
}

.hopup-banner {
  position: relative;
  background-color: #4A7D4ABF;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  background-size: contain;
  background-position: center;
  overflow: hidden;
}

.hopup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hopup-contenido {
  position: relative;
  z-index: 1;
}

.hopup-titulo {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 1300px;
}

.hopup-titulo h1,
.hopup-titulo h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin: 0;
  color: white;
}

.hopup-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  padding: 0 1rem;
}

.hopup-card {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 280px;
  flex: 1 1 280px; /* hace que puedan agruparse en múltiples columnas */
  box-sizing: border-box;
}

.hopup-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 0;
  text-transform: uppercase;
}

.hopup-card h4,
.hopup-card .h4-custom {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  color: white;
}

.hopup-card .h4-custom span {
  font-weight: bold;
}

/* Precio con imagen */
.hopup-precio-bloque {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.hopup-precio {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 700px;
  flex: 1 1 700px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-sizing: border-box;
}

.hopup-precio-texto {
  flex: 1;
  text-align: left;
}

.hopup-precio-texto h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 0;
}

.hopup-precio-texto h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
}

.hopup-precio-texto a {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #A9D18E;
  color: #1f2d20;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.hopup-precio-texto a:hover {
  background-color: #94c17d;
}

.hopup-precio-img {
  flex: 0 0 auto;
  max-width: 200px;
}

.hopup-precio-img img {
  width: 100%;
  border-radius: 8px;
}

/*======================= GATILLO ================================*/

.gatillo-section {
  width: 100%;
  margin: 2rem 0;
}

.gatillo-banner {
  position: relative;
  background-color: #4A7D4ABF;
  max-width: 1300px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  width: 100%;
  box-sizing: border-box; /* evita que se coma los márgenes */
}
.gatillo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.gatillo-content {
  position: relative;
  z-index: 1;
}

.gatillo-titulo {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 1300px;
}

.gatillo-titulo h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin: 0;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.gatillo-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1300px;
  
  margin: 2rem auto;
  padding-inline: 1rem;
  box-sizing: border-box;
}
.gatillo-card {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.gatillo-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 0;
  text-transform: uppercase;
}

.gatillo-card h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
}

.gatillo-precio {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.gatillo-precio-texto {
  flex: 1;
  text-align: left;
}

.gatillo-precio-texto h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 0;
}

.gatillo-precio-texto h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
}

.gatillo-precio-texto h3 + h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
}

.gatillo-precio-texto a {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #A9D18E;
  color: #1f2d20;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
}

.gatillo-precio-img {
  flex: 0 0 auto;
  max-width: 200px;
}

.gatillo-precio-img img {
  width: 100%;
  border-radius: 8px;
}

/*=================== SECCION MUELLE Y CONECTORES ===========================*/
.servicio-dual {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1300px;
  margin: 4rem auto;
  align-items: stretch;
  box-sizing: border-box;
  padding: 0 1rem;
}

.servicio-box {
  flex: 1 1 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #4A7D4ABF;
  background-position: center;
  color: white;
  padding: 2rem;
  border-radius: 10px;
  box-sizing: border-box;
}

.servicio-titulo {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 0 auto 2rem auto;
  max-width: 450px;
  text-align: center;
}

.servicio-titulo h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin: 0;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.servicio-contenido {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 0 auto;
  max-width: 450px;
  text-align: left;
  color: white;
  font-family: 'Roboto', sans-serif;
}

.servicio-contenido h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.servicio-contenido .precio {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: bold;
}

.servicio-contenido a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #A9D18E;
  color: #1f2d20;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.servicio-contenido .textoboton {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: bold;
}
.servicio-contenido a:hover {
  background-color: #94c17d;
}

/* ================================== PAGINA GBBSNIPER ============================================ */
.gbb-banner {
  width: 100%;
  margin: 2rem 0;
  overflow-x: hidden;
}

.gbb-banner-container {
  position: relative;
  background-image: url('assets/img/banner-gbb.png');
  border: 2px solid white;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  padding: 3rem 1rem;
  border-radius: 0;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
}

.gbb-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.gbb-banner-content {
  position: relative;
  z-index: 1;
}

.gbb-banner-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin: 0;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.gbb-banner-content h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
  margin: 0;
  margin-top: 1rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  line-height: 1.6;
}

.gbb-banner-content a {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background-color: #A9D18E;
  color: #1f2d20;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2rem;
  transition: background-color 0.3s;
}

.gbb-banner-content a:hover {
  background-color: #92be79;
}


/* ================== SERVICIOS PISTOLAS GBB ==================== */
.cargador-section {
  width: 100%;
  margin: 2rem 0;
}

.cargador-wrapper {
  position: relative;
  background-color: rgba(74, 125, 74, 0.75);
  max-width: 1500px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  overflow: hidden;
}

.cargador-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cargador-content {
  position: relative;
  z-index: 1;
}

.cargador-title {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 1300px;
  color: white;
}

.cargador-title h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.cargador-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.cargador-card {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 280px;
  box-sizing: border-box;
}

.cargador-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 0;
}

.cargador-card h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0.8rem 0;
}

.cargador-card h4 span {
  font-weight: bold;
  display: block;
  margin-bottom: 0.2rem;
}

.cargador-card hr {
  border: 0;
  border-top: 1px solid white;
  margin: 1rem 0;
}

.cargador-final {
  max-width: 590px;
}

.cargador-final h3 {
  font-size: 2rem;
}

.cargador-final a {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #A9D18E;
  color: #1f2d20;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.cargador-final a:hover {
  background-color: #92be79;
}

.cargador-img {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.cargador-img img {
  max-width: 100%;
  width: 200px;
  border-radius: 8px;
}

.upgradegbb-section {
  width: 100%;
  margin: 2rem 0;
}

.upgradegbb-wrapper {
  position: relative;
  background-color: rgba(74, 125, 74, 0.75);
  max-width: 1500px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  overflow: hidden;
}

.upgradegbb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.upgradegbb-content {
  position: relative;
  z-index: 1;
}

.upgradegbb-title {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 1300px;
  color: white;
}

.upgradegbb-title h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.upgradegbb-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.upgradegbb-card {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 280px;
  box-sizing: border-box;
}

.upgradegbb-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 0;
}

.upgradegbb-card hr {
  border: 0;
  border-top: 1px solid white;
  margin: 1rem 0;
}

.upgradegbb-final {
  max-width: 560px;
}

.upgradegbb-final h3 {
  font-size: 2rem;
}

.upgradegbb-card h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0.8rem 0;
}
.upgradegbb-final a {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #A9D18E;
  color: #1f2d20;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.upgradegbb-final a:hover {
  background-color: #92be79;
}

.upgradegbb-img {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.upgradegbb-img img {
  max-width: 100%;
  width: 200px;
  border-radius: 8px;
}

/* ================== SERVICIOS SNIPERS ==================== */
.sniper-banner {
  width: 100%;
  margin: 2rem 0;
  overflow-x: hidden;
}

.sniper-banner-container {
  position: relative;
  background-image: url('assets/img/banner-sniper.png');
  border: 2px solid white;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  padding: 3rem 1rem;
  border-radius: 0;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
}

.sniper-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.sniper-banner-content {
  position: relative;
  z-index: 1;
}

.sniper-banner-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin: 0;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.sniper-banner-content h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  margin: 0;
  margin-top: 1rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  line-height: 1.6;
}

.sniper-banner-content a {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background-color: #A9D18E;
  color: #1f2d20;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2rem;
  transition: background-color 0.3s;
}

.sniper-banner-content a:hover {
  background-color: #92be79;
}

.hopupsniper-section {
  width: 100%;
  margin: 2rem 0;
}

.hopupsniper-wrapper {
  position: relative;
  background-color: rgba(74, 125, 74, 0.75);
  max-width: 1500px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  overflow: hidden;
}

.hopupsniper-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hopupsniper-content {
  position: relative;
  z-index: 1;
}

.hopupsniper-title {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 1300px;
  color: white;
}

.hopupsniper-title h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.hopupsniper-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.hopupsniper-card {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 280px;
  box-sizing: border-box;
}

.hopupsniper-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 0;
}

.hopupsniper-card hr {
  border: 0;
  border-top: 1px solid white;
  margin: 1rem 0;
}

.hopupsniper-card h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0.8rem 0;
}

.hopupsniper-final {
  max-width: 560px;
}

.hopupsniper-final h3 {
  font-size: 2rem;
}

.hopupsniper-final a {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #A9D18E;
  color: #1f2d20;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.hopupsniper-final a:hover {
  background-color: #92be79;
}

.hopupsniper-img {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.hopupsniper-img img {
  max-width: 100%;
  width: 200px;
  border-radius: 8px;
}

.internosniper-section {
  width: 100%;
  margin: 2rem 0;
}

.internosniper-wrapper {
  position: relative;
  background-color: rgba(74, 125, 74, 0.75);
  max-width: 1500px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  overflow: hidden;
}

.internosniper-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.internosniper-content {
  position: relative;
  z-index: 1;
}

.internosniper-title {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 1300px;
  color: white;
}

.internosniper-title h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.internosniper-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.internosniper-card {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 280px;
  box-sizing: border-box;
}

.internosniper-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 0;
}

.internosniper-card hr {
  border: 0;
  border-top: 1px solid white;
  margin: 1rem 0;
}

.internosniper-card h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0.8rem 0;
}

.internosniper-final {
  max-width: 1000px;
}

.internosniper-final h3 {
  font-size: 2rem;
}

.internosniper-final a {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #A9D18E;
  color: #1f2d20;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.internosniper-final a:hover {
  background-color: #92be79;
}

.internosniper-img {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.internosniper-img img {
  max-width: 100%;
  width: 200px;
  border-radius: 8px;
}

/* ================================== PAGINA ASITRABAJAMOSGARANTIAETC ================================== */
.definiciones {
  width: 100%;
  margin: 2rem 0;
}

.definiciones-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.definiciones-caja {
  flex: 1;
  background-color: rgba(74, 125, 74, 0.75);
  padding: 3rem 2rem;
  border-radius: 12px;
  color: white;
}

.definiciones-titulo {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 1200px;
  color: white;
}

.definiciones-texto {
  text-align: left;
}

.definiciones-texto h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.definiciones-texto h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  margin: 1rem 0 0;
  line-height: 1.6;
}

.proceso-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.proceso-item {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  padding: 1.5rem;
  border-radius: 10px;
}

.proceso-item h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 0;
  color: white;
}

.proceso-item h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  color: white;
  line-height: 1.6;
  margin-top: 1rem;
}

.proceso-item hr {
  border: 0;
  border-top: 1px solid white;
  margin: 1rem 0;
}

/* ================================== PAGINA CONTACTO ================================== */
.contacto-section {
  width: 100%;
  margin: 2rem 0;
}

.contacto-flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
}

.contacto-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.contacto-logo-img {
  width: 300px;
  border-radius: 8px;
  max-width: 100%;
}

.contacto-contenedor {
  flex: 1;
  background-color: rgba(74, 125, 74, 0.75);
  padding: 1.5rem;
  border-radius: 12px;
  color: white;
}

.contacto-caja {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1rem auto;
  max-width: 1150px;
  color: white;
}

.contacto-texto {
  text-align: left;
}

.contacto-texto h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.contacto-info {
  text-align: center;
  margin-top: 1.5rem;
}

.contacto-info h1,
.contacto-info h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.contacto-info hr {
  border: 0;
  border-top: 1px solid white;
  margin: 1rem 0;
}

.contacto-redes {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.contacto-redes img {
  width: 60px;
  height: 60px;
  transition: transform 0.2s ease;
}

.contacto-redes img:hover {
  transform: scale(1.1);
}

.form-contacto {
  width: 100%;
  margin: 2rem 0;
}

.form-contacto-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.form-contacto-caja {
  flex: 1;
  background-color: rgba(74, 125, 74, 0.75);
  padding: 1rem;
  border-radius: 12px;
  color: white;
}

.form-contacto-fondo {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 1150px;
}

.form-contacto-formulario {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-contacto-formulario input[type="text"],
.form-contacto-formulario input[type="email"],
.form-contacto-formulario textarea {
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  resize: vertical;
}

.form-contacto-formulario button {
  padding: 0.75rem;
  background-color: black;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Orbitron', sans-serif;
  transition: background-color 0.3s;
}

.form-contacto-formulario button:hover {
  background-color: #222;
}
/*=============== FORMULARIO ===================*/
.form-servicio {
  background-color: rgba(63, 93, 64, 0.75);
  padding: 2rem;
  border-radius: 12px;
  max-width: 900px;
  margin: 4rem auto;
  color: white;
}

.form-servicio-fondo {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  padding: 1.5rem;
  border-radius: 10px;
}

.form-servicio-titulo {
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.form-servicio-subtitulo {
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.form-servicio-formulario {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-servicio-campo {
  display: flex;
  flex-direction: column;
}

.form-servicio-campo p {
  margin: 0 0 8px 0;
  font-weight: bold;
  font-size: 1.2rem;
}

.form-servicio-campo input,
.form-servicio-campo textarea {
  padding: 0.75rem;
  border-radius: 8px;
  border: none;
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  width: 100%;
}

.form-servicio-servicios {
  background-image: url('assets/img/fondoservicio.png');
  background-size: cover;
  background-position: center;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: white;
}

.form-servicio-servicios legend {
  font-weight: bold;
  font-size: 2rem;
  color: #A9D18E;
  font-family: 'Orbitron', sans-serif;
}

.form-servicio-servicios hr {
  border: 1px solid white;
  width: 100%;
}

.form-servicio-politica {
  font-size: 1rem;
  margin-top: 1rem;
}

.form-servicio-politica a {
  color: #A9D18E;
  font-weight: bold;
  text-decoration: underline;
}

.form-servicio-btn {
  background-color: #A9D18E;
  color: #1f2d20;
  font-weight: bold;
  padding: 0.75rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  font-family: 'Orbitron', sans-serif;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.3s;
}

.form-servicio-btn:hover {
  background-color: #91be7c;
}
/*======================= PAGINA PREGUNTAS Y QUIENES SOMOS ================================*/
/* SECCIÓN QUIÉNES SOMOS */
.somos-section {
  width: 100%;
  margin: 2rem 0;
}

.somos-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  max-width: 1500px;
  margin: 0 auto;
}

.somos-caja {
  flex: 1;
  background-color: rgba(74, 125, 74, 0.75);
  padding: 3rem 2rem;
  border-radius: 12px;
  color: white;
}

.somos-contenido {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 1200px;
}

.somos-texto {
  text-align: left;
}

.somos-texto h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.somos-texto h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  line-height: 1.7;
  white-space: pre-line;
}
/* SECCIÓN PREGUNTAS FRECUENTES */
.faq-section {
  width: 100%;
  margin: 2rem 0;
}

.faq-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  max-width: 1500px;
  margin: 0 auto;
}

.faq-caja {
  flex: 1;
  background-color: rgba(74, 125, 74, 0.75);
  padding: 3rem 2rem;
  border-radius: 12px;
  color: white;
}

.faq-contenido {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: contain;
  background-position: center;
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 1200px;
}

.faq-texto {
  text-align: left;
}

.faq-texto h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.faq-detalles {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
}

.faq-detalles details {
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: #ffffff20;
  border-radius: 8px;
  cursor: pointer;
}

.faq-detalles summary {
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
  outline: none;
}

.faq-detalles summary:hover {
  color: #a4ffb8;
}

.faq-detalles h3 {
  font-weight: bold;
  margin-top: 0.5rem;
  font-size: 1.3rem;
  line-height: 1.5;
}
/*======================= PAGINA REPARACION Y MATNEIMIENTO ===============================*/
#diagnostico {
  width: 100%;
  margin: 2rem 0;
}

#diagnostico .diagnostico-wrapper {
  position: relative;
  background-color: rgba(74, 125, 74, 0.75);
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  overflow: hidden;
}

#diagnostico .diagnostico-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#diagnostico .diagnostico-contenido {
  position: relative;
  z-index: 1;
}

#diagnostico .diagnostico-cabecera {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 1300px;
}

#diagnostico .diagnostico-cabecera h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin: 0;
  color: white;
}

#diagnostico .diagnostico-cabecera h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  margin: 0;
  color: white;
}

#diagnostico .diagnostico-bloques {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

#diagnostico .diagnostico-bloque {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1rem;
  max-width: 1300px;
  text-align: left;
}

#diagnostico .diagnostico-bloque h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 0;
  color: white;
}

#diagnostico .diagnostico-bloque h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  margin-top: 0;
  line-height: 1.6;
  color: white;
}

#diagnostico .diagnostico-bloque h5 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  color: white;
}

#diagnostico .diagnostico-boton {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #A9D18E;
  color: #1f2d20;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Orbitron', sans-serif;
}
/* === MANTENIMIENTO SECTION === */

#mantenimiento {
  width: 100%;
  margin: 2rem 0;
}

.mantenimiento-wrapper {
  position: relative;
  background-color: rgba(74, 125, 74, 0.75);
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-radius: 12px;
  overflow: hidden;
}

.mantenimiento-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.mantenimiento-contenido {
  position: relative;
  z-index: 1;
  text-align: center;
}

.mantenimiento-cabecera {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 1300px;
}

.mantenimiento-cabecera h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin: 0;
  color: white;
}

.mantenimiento-cabecera h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  margin: 0;
  color: white;
}

.mantenimiento-bloques {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.mantenimiento-bloque {
  background-image: url('assets/img/fondoservicio.png');
  border: 2px solid white;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1rem;
  max-width: 1300px;
  text-align: left;
}

.mantenimiento-bloque h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 0;
  color: white;
}

.mantenimiento-bloque h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-top: 0;
}

.mantenimiento-boton {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #A9D18E;
  color: #1f2d20;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Orbitron', sans-serif;
}
/*======================= PAGINA GRACIAS  ================================*/
.body-gracias {
  background-image: url('assets/img/fondo1.png');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  padding-top: 140px;
  font-family: 'Orbitron', sans-serif;
  margin: 0;
}

.gracias-main {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
}

.gracias-container {
  background-color: #4A7D4ABF;
  padding: 3rem 2rem;
  border-radius: 12px;
  color: white;
  max-width: 900px;
  width: 100%;
}

.gracias-content {
  background-image: url('assets/img/fondoservicio.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border: 2px solid white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.btn-volver {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #A9D18E;
  color: #1f2d20;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.btn-volver:hover {
  background-color: #94c576;
}

.gracias-logo img {
  width: 300px;
  max-width: 100%;
  margin-top: 2.5rem;
  border-radius: 8px;
}

.onda-svg {
  display: block;
  width: 100vw;
  height: 40px;
  margin: 0;
  padding: 0;
}

/*======================= RESTRUCTURACION PARA MOVILES Y TABLES ================================*/
@media (max-width: 1024px) {
  /* Fondo adaptado */
  body {
    background-size: 100% auto;
    background-repeat: repeat-y;
    background-position: top center;
    background-attachment: fixed;
    overflow-x: hidden;
    padding-top: 160px;
  }

  .header-content {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
  }

  .logo {
    margin: 0 auto;
    display: block;
  }

  header,
  .header-content {
    box-sizing: border-box;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .hamburger {
    padding: 0.5rem 1rem;
    display: block;
    font-size: 2rem;
    position: relative;
    left: 1rem;
    transform: translateY(-30%);
  }

  .nav-container {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #4A7D4A;
    padding: 1rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-top: 2px solid white;
  }

  .nav-container.active {
    display: flex;
  }

  nav {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1rem 1.5rem;
  }

  .nav-item {
    text-align: left;
    font-size: 1.1rem;
    padding: 0.5rem;
    background-color: #4A7D4A;
    border-radius: 6px;
    transition: background-color 0.3s, padding-left 0.3s;
  }

  .nav-item:hover {
    background-color: #5c8e5b;
    padding-left: 0.75rem;
  }

  .nav-item a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: block;
    width: 100%;
  }

  .dropdown {
    margin-top: 0.5rem;
    background-color: #3d623d;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
  }

  .dropdown a {
    display: block;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
  }

  .dropdown a:hover {
    background-color: #A9D18E;
    color: #1f2d20;
  }

  @keyframes scrollLogosAuto {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

  .hero {
    margin: 0 auto;
    padding: 1rem;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo-lateral {
    display: none !important;
  }

  .hero-text {
    margin: 0 auto !important;
    padding: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background-size: contain;
    background-repeat: repeat;
    background-position: top center;
  }

  .hero img {
    margin: 0 auto;
    height: 300px !important;
    margin-bottom: 1rem;
  }
  
  .scroll-btn {
  display: none !important;
  
}

  .hero-logos-wrapper {
    overflow: visible;
    width: 100%;
    max-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .hero-logos {
    animation: scrollLogosAuto 30s linear infinite;
    display: inline-flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 1rem;
    margin: 0;
    min-width: 110%;
  }

  .testing-conditions {
    padding: 2rem 1rem;
  }

  .conditions-box {
    width: 100%;
    padding: 1rem;
  }

  .aeg-services {
    margin-top: 3rem;
  }

  .aeg-container,
  .gbb-container,
  .sniper-container {
    padding: 1rem;
  }

  .aeg-inner-box,
  .gbb-inner-box,
  .sniper-inner-box {
    padding: 1rem;
    margin: 1rem auto;
    background-size: contain;
    background-repeat: repeat;
    background-position: top center;
  }

  .services-wrap {
    gap: 1rem;
    padding: 0.5rem 0;
  }

  .service-item {
    width: 100%;
    max-width: 200px;
    margin: 1rem auto;
  }

  .service-item img {
    width: 100%;
    max-width: 200px;
  }

  .service-name {
    font-size: 1rem;
    text-align: center;
  }

  .footer-main {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .footer img {
    height: 100px;
  }

  .redes-sociales {
    justify-content: center;
  }

/*==PAGINA AEG===*/
.banner-contenido h1 {
    font-size: 1.5rem;
  }

  .banner-contenido h2 {
    font-size: 1rem;
  }

  .banner-contenido a {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }

  .banner-contenedor {
    padding: 2rem 1rem;
  }
.bsl-titulo h1 {
    font-size: 2rem;
  }

  .bsl-card h3 {
    font-size: 1.3rem;
  }

  .bsl-card h4 {
    font-size: 0.95rem;
  }

  .bsl-card.precio h3 {
    font-size: 1.5rem;
  }

  .h5-custom {
    font-size: 1.1rem;
  }
   .hopup-titulo h1,
  .hopup-titulo h2 {
    font-size: 2rem;
  }
  .hopup-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .hopup-card h3 {
    font-size: 1.3rem;
  }

  .hopup-card h4 {
    font-size: 0.95rem;
  }

  .hopup-precio-texto h3 {
    font-size: 1.5rem;
  }

  .hopup-precio-texto h4 {
    font-size: 1.1rem;
  }
     .hopup-precio {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .hopup-precio-img {
    order: 0;
    max-width: 200PX;
    width: 100%;
    margin-bottom: 1rem;
  }

  .hopup-precio-img img {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .hopup-precio-texto {
    order: 1;
  }

  .hopup-precio-texto a {
    order: 2;
  }

  .gatillo-precio {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
   .gatillo-card,
  .gatillo-precio {
    margin-left: auto;
    margin-right: auto;
  }

  .gatillo-precio-texto {
    text-align: center;
  }

   .gatillo-precio-img {
    max-width: 200px;
    width: 100%;
  }

  .gatillo-precio-img img {
    max-width: 200px;
  }

  .gatillo-card,
  .gatillo-precio {
    margin-left: auto;
    margin-right: auto;
  }

  .gatillo-titulo h1 {
    font-size: 2rem;
  }

  .gatillo-card h3,
  .gatillo-precio-texto h3 {
    font-size: 1.4rem;
  }

  .gatillo-card h4,
  .gatillo-precio-texto h3 + h3 {
    font-size: 1.1rem;
  }

.servicio-dual {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }

  .servicio-box {
    max-width: 100%;
    padding: 1.5rem;
  }

  .servicio-titulo,
  .servicio-contenido {
    max-width: 100%;
  }

  .servicio-titulo h1 {
    font-size: 1.7rem;
  }

  .servicio-contenido h3 {
    font-size: 1.1rem;
  }

  .servicio-contenido .precio {
    font-size: 1.3rem;
  }

  .servicio-contenido a {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }

/*================PAGINA GBBSNIPER==================*/

.gbb-banner-container {
    padding: 2rem 1rem;
  }

  .gbb-banner-content h1 {
    font-size: 1.5rem;
  }

  .gbb-banner-content h2 {
    font-size: 1rem;
  }

  .gbb-banner-content a {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }

  .cargador-title h1 {
    font-size: 1.7rem;
  }

  .cargador-card {
    max-width: 100%;
  }

  .cargador-final h3 {
    font-size: 1.5rem;
  }

  .cargador-final a {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }

  .upgradegbb-title h1 {
    font-size: 1.7rem;
  }

  .upgradegbb-card {
    max-width: 100%;
  }

  .upgradegbb-final h3 {
    font-size: 1.5rem;
  }

  .upgradegbb-final a {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }
/*================PAGINA SNIPER==================*/

  .sniper-banner-container {
    padding: 2rem 1rem;
  }

  .sniper-banner-content h1 {
    font-size: 1.5rem;
  }

  .sniper-banner-content h2 {
    font-size: 1rem;
  }

  .sniper-banner-content a {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
  .hopupsniper-title h1 {
    font-size: 1.7rem;
  }

  .hopupsniper-card {
    max-width: 100%;
  }

  .hopupsniper-final h3 {
    font-size: 1.5rem;
  }

  .hopupsniper-final a {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }
   .internosniper-title h1 {
    font-size: 1.7rem;
  }

  .internosniper-card {
    max-width: 100%;
  }

  .internosniper-final h3 {
    font-size: 1.5rem;
  }

  .internosniper-final a {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }

/* ============== PAGINA ASITRABAJAMOSGARANTIAETC ======= */
 .definiciones-wrapper {
    flex-direction: column;
    padding: 0 1rem;
  }

  .definiciones-texto h1 {
    font-size: 1.5rem;
  }

  .definiciones-texto h4 {
    font-size: 1rem;
  }

  .proceso-item h3 {
    font-size: 1.3rem;
  }

  .proceso-item h4 {
    font-size: 1rem;
  }

  /* ================================== PAGINA CONTACTO ================================== */
  .contacto-logo {
    justify-content: center;
  }

  .contacto-logo-img {
    width: 220px;
  }

  .contacto-info h1,
  .contacto-info h2 {
    font-size: 1.2rem;
  }

  .contacto-texto h1 {
    font-size: 1.4rem;
  }
   .form-contacto-fondo {
    margin: 1rem auto;
  }

  .form-contacto-formulario input,
  .form-contacto-formulario textarea {
    font-size: 1rem;
  }
   .form-servicio-titulo {
    font-size: 1.5rem;
  }

  .form-servicio-subtitulo {
    font-size: 1rem;
  }

  .form-servicio-servicios {
    font-size: 1rem;
  }
  /*======================= PAGINA QUIENES SOMOS Y PREGUNTAS ================================*/
  .somos-wrapper {
    flex-direction: column;
    padding: 1rem;
  }

  .somos-contenido {
    margin: 1rem auto;
  }

  .somos-texto h1 {
    font-size: 1.5rem;
  }

  .somos-texto h4 {
    font-size: 1rem;
  }
  .faq-wrapper {
    flex-direction: column;
    padding: 1rem;
  }

  .faq-contenido {
    margin: 1rem auto;
  }

  .faq-texto h1 {
    font-size: 1.5rem;
  }

  .faq-detalles summary {
    font-size: 1.2rem;
  }

  .faq-detalles h3 {
    font-size: 1rem;
  }
}
/*======================= HEADER FIJADO PARA PANTALLAS PEQUEÑAS ================================*/
@media (max-width: 1550px) {
  header {
    position: static !important;
  }

  body {
    padding-top: 0px !important;
  }

  .logo-lateral {
    height: 350px;
    margin: 0 1rem;
  }
}
