:root {
  color-scheme: black; 
}

/* Estilo cuerpo */

body {
  font-family: 'MADETommySof', sans-serif;
  color: #ffffff;
}

.header {
  background: black;
   animation: animacion-header linear both;
   animation-timeline:scroll(root) ;
   animation-range: 0 200px;
  position: sticky;
  z-index: 3000;
  top: 0px;
}

#logo {
  margin: 20px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1000;
}

.enlaces-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2000;
  position: relative;
}

.enlaces-nav a {
  position: relative;
  color: #eaeaea;
  text-decoration: none;
  padding: 8px 14px;
}

.enlaces-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 4px;
  width: 0%;
  height: 2px;
  background: #00ff88;
  transition: width .25s ease;
}

.enlaces-nav a:hover::after {
  width: calc(100% - 28px);
}

.enlaces-nav a:hover {
  background: none;
  box-shadow: none;
  color: #bfffe0;
}

.enlaces-nav a.activo {
  color: #00ff88;
}
   
li {
  list-style: none;
}


@keyframes animacion-header {
  to {
    background: rgba(27, 26, 26, 0.6);
        backdrop-filter: blur(10px);
        font-size: 15px;
  }
}


.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .enlaces-nav {

    display: none;
    flex-direction: column;

    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    padding: 20px;

    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;

    background: #0b0b0b;
    padding: 10px;
    gap: 15px;

    z-index: 4000;
  }

  .enlaces-nav li {
    width: 100%;
  }

  .enlaces-nav a {
    display: block;
    width: 100%;
  }

  .enlaces-nav.activo {
    display: flex;
  }
}

main {
  position: relative;
  background: #000;
  overflow: clip;
  aspect-ratio: 16 / 9;
}

main::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("./../images/iconos/pattern-red.svg");
  background-repeat: repeat;
  background-size: 1000px;

  opacity: 0.30;
  pointer-events: none;

  animation: patternRotate 160s linear infinite;
}

@keyframes patternRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/*cuerpo*/
.main-content {
  box-sizing: content-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#home {
  text-align: center;
  margin: 60px;
}


h1 {
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

a {
  text-decoration: none;
}


.cta-botones {
  margin-top: 50px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;      
  justify-content: center;  
  gap: 20px;
  flex-wrap: wrap; 
}

.btn {
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  padding: 12px 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;

  transition:
    transform 0.15s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.btn-principal {
  background: linear-gradient(to bottom,
      #00c96b,
      #009e52);

  color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 255, 136, 0.18);
  display: inline-flex;
  align-items: center;  
  justify-content: center;
    gap: 8px;  
}

.btn-principal:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 255, 136, 0.28);
}

.btn-secundario {
  background: transparent;
  color: #00ff88;
  border: 1px solid rgba(0, 255, 136, 0.45);
}

.btn-secundario:hover {
  background: rgba(0, 255, 136, 0.10);
  transform: translateY(-2px);
}

.lista-calidad {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

.lista-calidad li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #d8d8d8;
}

.lista-calidad li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;

  color: #00ff88;
  font-size: 0.9rem;
  opacity: 0.6;
}

.titulo-seccion {
  color: #ffffff;
  text-align: center;

  font-size: clamp(1.4rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: .6px;

  margin-bottom: 36px;

  position: relative;
  padding-bottom: 14px;
}

.titulo-seccion::after {
  content: "";
  position: absolute;

  left: 50%;
  transform: translateX(-50%);
  bottom: 0;

  width: 110px;
  height: 3px;

  background: linear-gradient(90deg,
      transparent,
      #00ff88,
      transparent);

  box-shadow: 0 0 14px rgba(0, 255, 136, .45);
}

/* ---Seccion servicios---*/
.seccion-servicios {
  padding: 80px 20px;
  text-align: center;
}

.servicios-hero {
  margin-top: 30px;
  text-align: center;
  position: relative;
}

.servicios-hero h1 {
  font-size: clamp(36px, 5vw, 46px);
  letter-spacing: 1px;
}

.hero-img img {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  filter: contrast(1.05);
}

.hero-img::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;

  width: 100%;
  height: 20px;

  transform: translateX(-50%);
  border-radius: 50%;

  background: radial-gradient(
    ellipse at center,
    rgba(0,255,136,.35),
    rgba(0,255,136,.15),
    transparent 70%
  );

  filter: blur(12px);
  z-index: 0;
}

.servicios-grid {
  display: grid;
  gap: 24px;
  margin-top: 20px;

  grid-template-columns:
    repeat(auto-fit, minmax(260px, 1fr));
}

.card-servicio {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 255, 136, 0.18);
  border-radius: 16px;

  padding: 28px;
  text-align: left;

  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.card-servicio:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 136, 0.45);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.12);
}

.card-servicio h3 {
  color: #00ff88;
  margin-bottom: 10px;
  font-size: 1.2rem;

}
.card-servicio.visible h3 {
  opacity: 1;
  transform: translateX(0);
}
 
.card-servicio p {
  color: #cfcfcf;
  line-height: 1.5;
  font-size: 0.95rem;
}

.icono img {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 0 6px rgba(0, 255, 136, 0.4));
}

@media (max-width: 520px) {
.servicios-hero h1 {
  font-size: 1.6rem;
}

.servicios-hero p {
  font-size: 1rem;
}

.cta-intermedio{
  width: 70%;
}
}

/*----Seccion nosotros------*/
.seccion-nosotros {
  padding: 20px 20px;
  max-width: 1100px;
  margin: auto;
}

.marca-inline {
  font-weight: 700;
  letter-spacing: 2px;
  color: #00ff88;
  opacity: .8;
}

.nosotros-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 820px;
  margin: 0 auto;
}

.nos-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: 16px;
  padding: 26px 30px;

  backdrop-filter: blur(6px);

  transition: all .25s ease;
}
.nos-card:hover {
  border-color: rgba(0, 255, 136, 0.35);
  background: rgba(0, 255, 136, 0.04);
}

.nos-card h3 {
  color: #00ff88;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.nos-card p {
  color: #d8d8d8;
  line-height: 1.6;
  font-size: 0.98rem;
}

.seccion-nosotros {
  border-top: 1px solid rgba(0, 255, 136, 0.08);
}

.nosotros-header {
  text-align: center;
  margin: 10px 0 50px;
  position: relative;
}

.valores-grid {
  list-style: none;
  padding: 0;
  margin-top: 20px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.valor-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 255, 136, 0.15);
  border-radius: 14px;

  padding: 22px 16px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;

  text-align: center;
  color: #ffffff;

  transition: all .25s ease;
}

.valor-card img {
  width: 36px;
  height: 36px;
  opacity: .9;
}

.valor-card:hover {
  transform: translateY(-4px);

  border-color: rgba(0, 255, 136, 0.4);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, .45),
    0 0 16px rgba(0, 255, 136, .15);
}

.valor-card span {
  font-weight: 600;
  letter-spacing: .4px;
}

.valores h3 {
  text-align: center;
  font-size: 1.5rem;

  color: #eafff5;

  text-shadow:
    0 0 8px rgba(0, 255, 136, .25);

  margin-bottom: 24px;
}

@media (max-width: 900px) {

  .valores-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 520px) {

  .seccion-nosotros  {
  margin-bottom: 2px;
}

    .nos-card {
    padding: 20px 16px;
  }

    .valor-card img {
    width: 28px;
    height: 28px;
  }

   .nos-card p {
    font-size: .95rem;
    line-height: 1.5;
  }

  
.lista-calidad {
 font-size: .90rem;
}

.cta-botones{
  padding: 10px;
}

}


/*--- seccion certificaciones---*/
.certificaciones {
  padding: 70px 20px;
  margin-top: 60px;
  background:
    linear-gradient(180deg,
      rgba(0, 255, 136, .04),
      rgba(0, 0, 0, 0));

  border-top: 1px solid rgba(0, 255, 136, .12);
}

.certificaciones-intro {
  max-width: 720px;
  margin: 0 auto 30px auto;

  text-align: center;
  color: #ffffff;

  line-height: 1.6;
  font-size: 1.05rem;
}

.cert-lista li {
  position: relative;

  padding: 14px 16px 14px 42px;
  margin-bottom: 12px;

  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(0, 255, 136, .18);
  border-radius: 12px;

  color: #ffffff;

  transition: all .2s ease;
}

.cert-lista li::before {
  content: "✔";
  position: absolute;

  left: 14px;
  top: 50%;
  transform: translateY(-50%);

  color: #00ff88;
  font-weight: bold;

  text-shadow: 0 0 8px rgba(0, 255, 136, .6);
}

.cert-lista li:hover {
  transform: translateX(6px);
  border-color: rgba(0, 255, 136, .4);

  box-shadow:
    0 6px 20px rgba(0, 0, 0, .35);
}

.sellos {
  list-style: none;

  margin-top: 40px;
  padding: 0;

  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.sellos img {
  height: 64px;

  opacity: .85;
  filter: grayscale(.2);

  transition: all .25s ease;
}

.sellos img:hover {
  opacity: 1;
  transform: scale(1.06);

  filter: drop-shadow(0 0 10px rgba(0, 255, 136, .35));
}



/*---formulario de contacto----*/
.contacto {
  padding: 80px 20px;
}

.contacto-header p {
  text-align: center;
  color: #ffffff;
  margin-top: 10px;
  font-size: 1.05rem;
}

.contacto-form {
  max-width: 960px;
  min-width: 660px;
  margin: 40px auto 0;

  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(0, 255, 136, .18);
  border-radius: 18px;

  padding: 32px;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, .5);
}

.contacto-form fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.contacto-form legend {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.contacto-form label {
  display: block;
  margin-top: 18px;
  margin-bottom: 6px;

  font-size: .95rem;
  color: #dfffee;
}

.contacto-form input,
.contacto-form select,
.contacto-form textarea {
  width: 90%;

  background: rgba(0, 0, 0, .45);
  border: 1px solid rgba(0, 255, 136, .18);
  border-radius: 10px;

  padding: 12px 14px;

  color: #ffffff;
  font-size: .95rem;

  transition: all .2s ease;
}

.contacto-form input:focus,
.contacto-form select:focus,
.contacto-form textarea:focus {
  outline: none;

  border-color: rgba(0, 255, 136, .6);

  box-shadow:
    0 0 0 3px rgba(0, 255, 136, .15),
    0 0 12px rgba(0, 255, 136, .25);
}


.contacto-form select option {
  background: #121212; 
  color: #ffffff;
  padding: 10px;
}

.contacto-form select:hover {
  border-color: rgba(0, 255, 136, 0.4);
  background-color: rgba(0, 255, 136, 0.02);
}

.contacto-form textarea {
  resize: vertical;
}

.btn-form {
  margin-top: 26px;
  width: 100%;

  padding: 14px;

  background: linear-gradient(135deg,
      #00ff88,
      #00c96b);

  border: none;
  border-radius: 12px;

  font-weight: 700;
  font-size: 1rem;
  color: #002b18;

  cursor: pointer;

  transition: all .2s ease;
}

.btn-form:hover {
  transform: translateY(-2px);

  box-shadow:
    0 10px 30px rgba(0, 255, 136, .35);
}

@media (max-width: 640px) {

  .contacto {
    padding: 40px 14px;
  }

  .contacto-form {
  min-width: 0;    
    width: 100%;
    padding: 10px;
    margin-top: 24px;
    border-radius: 14px;
  }

  .contacto-form legend {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .contacto-form label {
    font-size: .9rem;
    margin-top: 14px;
  }

  .contacto-form input,
  .contacto-form select,
  .contacto-form textarea {
    width: 90%;      
    font-size: .9rem;
    padding: 11px 12px;
  }

  .btn-form {
    padding: 13px;
    font-size: .95rem;
    margin-top: 18px;
  }

  .contacto-header p {
    font-size: .95rem;
    padding: 0 6px;
  }

}


.whatsapp-float {
  position: fixed;

  right: 22px;
  bottom: 22px;

  width: 64px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;

  background: linear-gradient(135deg,
      #00ff88,
      #00c96b);

  color: #00331d;
  text-decoration: none;

  border-radius: 50%;

  z-index: 999;

  box-shadow:
    0 12px 30px rgba(0, 255, 136, .35),
    0 0 18px rgba(0, 255, 136, .25);

  transition: all .25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);

  box-shadow:
    0 18px 40px rgba(0, 255, 136, .5),
    0 0 26px rgba(0, 255, 136, .35);
}

.whatsapp-float {
  animation: waPulse 3s infinite;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 136, .35);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(0, 255, 136, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
  }
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

@media (max-width: 600px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }
}

/*--footer---*/
footer {
  background: #0b0b0b;
  color: #dcdcdc;
  padding: 30px 24px 30px;
  font-size: 0.95rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

footer h2,
footer h3 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

footer p {
  margin: 6px 0;
  color: #bdbdbd;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer li {
  margin-bottom: 6px;
  color: #bdbdbd;
}

footer a {
  color: rgba(0, 255, 136, 0.4);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer address {
  font-style: normal;
}

footer section[aria-label="legal"] {
  grid-column: 1 / -1;

  margin-top: 30px;
  padding-top: 20px;

  border-top: 1px solid #1e1e1e;

  text-align: center;
  color: #8a8a8a;
  font-size: 0.85rem;
}

#logo_footer {
  width: 25px;
  height: auto;
  margin-left: 4px;
  margin-right: 4px;
  filter: drop-shadow(0 0 8px rgba(0, 255, 136, .25));
}

.footer-contacto-item {
  display: flex;
  gap: 10px;
}

.icon-footer {
  width: 20px;
  height: 20px;
  filter: invert(48%) sepia(92%) saturate(600%) hue-rotate(90deg);
}

/* texto */
.footer-contacto-item a {
  color: #ffffff;
  text-decoration: none;
}

.footer-contacto-item a:hover {
  color: #ffffff;
}

.texto-destacado {
  max-width: 720px;
  margin: 10px auto 40px;
  font-size: 1.05rem;
  line-height: 1.6;

  color: #ffffff;
  text-align: center;

  padding: 16px 20px;

}


@media (max-width: 640px) {

  footer section {
    margin-top: -25px;
     margin-bottom: -15px;
  }
}

.cta-intermedio {
  margin: 60px auto;
  padding: 40px 28px;

  max-width: 820px;
  text-align: center;

  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.9),
      rgba(68, 146, 90, 0.18));

  border: 1px solid rgba(0, 255, 136, .25);
  border-radius: 18px;

  box-shadow:
    0 0 18px rgba(0, 255, 136, .08),
    inset 0 0 30px rgba(0, 255, 136, .04);
}

.cta-intermedio h2 {
  color: white;
  font-size: clamp(1.1rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}

.cta-intermedio p {
  color: #c8ffe3;
  margin-bottom: 26px;
  font-size: 1.05rem;
}

/* --- Estructura Principal --- */
.hero-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0 0 0; 
  overflow: hidden;
}

.hero-textos {
  text-align: center;
  max-width: 900px;
  margin-bottom: 50px;
}

@keyframes entradaSutil {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(20px); 
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0); 
  }
}

.hero-textos h1 {
  opacity: 0; 
  animation: entradaSutil 2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.hero-textos h2 {
  opacity: 0; 
  animation: entradaSutil 2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.5s; 
}

.text-verde {
  color: #00ff88;
  font-weight: 600;
  text-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

/* --- El Carrusel --- */
.carrusel-container {
  width: 100%;
  padding: 20px 0 60px 0;
  cursor: grab;
}

.carrusel-track {
  display: flex;
  gap: 30px;
  padding: 0 5%;
    width: max-content;
  animation: scrollCarrusel 30s linear infinite;
  animation-direction: alternate; 
}

.carrusel-track:hover {
  animation-play-state: paused;
}

.carrusel-item {
  flex: 0 0 450px; 
  height: 600px;
  border-radius: 24px;
  overflow: hidden;
  background: #fff; 
  border: 1px solid rgba(0, 255, 136, 0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: transform 0.5s ease;
}

.carrusel-item::after {
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:20%;

  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0,0,0,.95)
  );
}
.carrusel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) brightness(1);
}

.carrusel-item:hover {
  transform: scale(1.05);
  border-color: #00ff88;
}

/* Animación infinita */
@keyframes scrollCarrusel {
  from { transform: translateX(0); }
  to { transform: translateX(-30%); }
}


.salto-movil {
  display: none;
}

@media (max-width: 768px) {
  .salto-movil {
    display: inline;
  }
}

@media (max-width: 900px) {

  .hero-card {
    padding: 60px 0 0 0;
  }

  .hero-textos {
    max-width: 680px;
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .hero-textos h1 {
    font-size:2rem;
  }

  .hero-textos h2 {
    font-size: 1.4rem;
  }

  .carrusel-item {
    flex: 0 0 320px;
    height: 460px;
  }

  .carrusel-track {
    gap: 20px;
  }

}

@media (max-width: 520px) {

  .hero-card {
    padding: 24px 0 0 0;
  }

  .hero-textos {
    padding: 0 20px;
    margin-bottom: 20px;
  }

  .hero-textos h1 {
    font-size: 1.5rem;
    line-height: 1.15;
  }

  .hero-textos h2 {
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .carrusel-container {
    padding: 5px 0 30px 0;
  }

  .carrusel-item {
  flex: 0 0 180px;  
    height: 250px;    
    border-radius: 14px;
  }

  .carrusel-track {
    gap: 10px; 
    padding: 0 15px;
  }

}


/*animación aparecer */
@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.reveal {
  animation: reveal linear both;
  animation-timeline: view();
  animation-range: entry 20% cover 40%;
}


.info-plagas {
  margin: 60px 0;
  padding: 0 20px;
}

.info-plagas-box {
  max-width: 820px;
  margin: 30px auto 0;

  background: linear-gradient(
    180deg,
    rgba(0,255,136,.05),
    rgba(0,0,0,.35)
  );

  border: 1px solid rgba(0,255,136,.18);
  border-radius: 18px;

  padding: 30px;
}

.info-plagas-lista {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;

  display: grid;
  gap: 12px;
}

.info-plagas-lista li {
  position: relative;
  padding-left: 26px;
  color: #eaeaea;
}

.info-plagas-lista li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;

  width: 10px;
  height: 10px;
  border-radius: 50%;

  background: #00ff88;
  box-shadow: 0 0 10px rgba(0,255,136,.5);
}

.info-plagas-legal {
  font-size: .9rem;
  color: #b9ffd9;
  border-left: 3px solid rgba(0,255,136,.6);
  padding-left: 14px;
  opacity: .9;
}
/*clientes que conifan*/

.clientes {
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
   position: relative;
}

.clientes::after {
  content:"";
  position:absolute;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  width:600px;
  height:2px;

  background: linear-gradient(
    90deg,
    transparent,
    #00ff88,
    transparent
  );

  box-shadow: 0 0 12px rgba(0,255,136,.5);
}

.clientes-row {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.clientes-row img {
  height: 120px;
  object-fit: contain;
  opacity: .9;
  transition: .25s;
}

.clientes-row img:hover {
  transform: scale(1.08);
  opacity: 1;
}

#titulo-clientes{
  margin-bottom: 50px;
}

@media (max-width: 640px) {

  .clientes-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    justify-items: center;
  }

  .clientes-row img {
    height: 64px;  
    max-width: 100%;
  }

  #titulo-clientes {
    margin-bottom: 28px;
  }

  .clientes {
    padding: 36px 12px;
  }

}


/* preguntas frecuentes*/

.faq {
  max-width: 980px;
  margin: 80px auto;
  padding: 0 20px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 30px;
}

.faq details {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,255,136,.15);
  border-radius: 10px;
  margin-bottom: 12px;
  padding: 16px 18px;
  transition: .2s;
}

.faq details[open] {
  border-color: rgba(0,255,136,.45);
  box-shadow:
    0 0 0 1px rgba(0,255,136,.25),
    0 12px 30px rgba(0,0,0,.6);
}
 
.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq summary::marker {
  display: none;
}

.faq details p {
  margin-top: 10px;
  opacity: .85;
  line-height: 1.5;
}

.faq details[open] p {
  animation: faq-in .2s ease;
}

@keyframes faq-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Modal email*/

.modal-exito {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;

  transition: .25s ease;
  z-index: 9999;
}

.modal-exito.activo {
  opacity: 1;
  pointer-events: auto;
}

.modal-exito-box {
  background: #0b0f0d;
  border: 1px solid rgba(0,255,136,.3);
  border-radius: 18px;

  padding: 30px;
  text-align: center;

  box-shadow:
    0 20px 60px rgba(0,0,0,.7),
    0 0 30px rgba(0,255,136,.15);

  transform: translateY(20px);
  transition: .25s ease;
}

.modal-exito.activo .modal-exito-box {
  transform: translateY(0);
}

/* Estilo del Video agregado*/
.hero-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.hero-textos {
  width: 100%;
  text-align: center; 
}


/* Estilo del Video agregado*/
.hero-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.hero-textos {
  width: 100%;
  text-align: center; 
}

/* El contenedor del video en móvil */
.video-promo-container {
  position: relative;
  width: 80%; 
  max-width: 500px; 
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 136, 0.3);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
}

.video-promo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- CONFIGURACIÓN PARA PANTALLAS GRANDES (PC) --- */
@media (min-width: 992px) {
  .hero-layout {
    flex-direction: row;
    justify-content: space-between;
    text-align: left; 
    padding: 40px 0;
  }

  .hero-textos {
    width: 70%; 
    text-align: center;
  }

  .video-promo-container {
    width: 30%; 
    max-width: 600px;
  }
  
  .hero-textos h1 {
    font-size: 3.5rem; 
  }
}