* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  margin: 0;
  background-color: #111;
  color: white;
  font-family: "Roboto";
}

h1, h2 {
  font-family: 'Montserrat', sans-serif; /* o la fuente que elijas */
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

/* Títulos de secciones */
h3,h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
}

/* Texto descriptivo */
p {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: white;
}


/* Body para evitar overflow horizontal */
body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

/* Header: logo + toggle + menu en una fila */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: black;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

/* Logo */
.logo img {
  height: 80px;
  z-index: 1000;
}

/* Botón toggle (solo en móvil) */
.toggle-btn {
  display: none;
  font-size: 1.8em;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 50; /* para que esté todo */
}

/* Nav en línea en escritorio, alineado a la derecha */
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: max-height 0.5s ease;
}

/* Enlaces */
.nav a {
  position: relative;
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #00a3e9;
  transition: all 0.5s ease;
  transform: translateX(-50%);
}
.nav a:hover::after {
  width: 100%;
}

/* Submenú en escritorio: aparece con hover */
.submenu {
  position: relative;
}
.sub-menu-items {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none; /* evita interacción cuando no visible */
  position: absolute;
  top: 10;
  right: 25;
  background-color: #111;
  min-width: 150px;
  border-radius: 6px;
  margin-top: 5px;
  z-index: 20;
}

/* Cuando se pasa el ratón o en móvil cuando se despliega */
.submenu:hover .sub-menu-items,
#serviciosBtn.active + .sub-menu-items {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto; /* ahora sí interactúa */
}
.sub-menu-items a {
  padding: 10px;
  color: #fff;
  font-size: "Raleway";
}
.submenu:hover .sub-menu-items,
#serviciosBtn:focus + .sub-menu-items,
#serviciosBtn.active + .sub-menu-items {
  display: flex;
  flex-direction: column;
}

/* Animación de subrayado en escritorio */
.nav a::after {
  transition: all 0.6s ease;
}
.nav a:hover::after {
  width: 100%;
}

/* Pantallas pequeñas: menu deslizable y toggle visible */

@media (max-width: 768px) {
  /* Mostrar toggle en móvil */
  .toggle-btn {
    display: block;
    position: relative;
    z-index: 1000; /* sobre todo */
  }

  /* El menú en móvil: deslizar desde arriba */
  #nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    padding-top: 100px; /* espacio para logo y toggle */
    z-index: 998;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
  
  }
  #nav.open {
    max-height: 2000px; /* suficiente para todo el contenido */
    background-color: black;
    padding-bottom: 30px;
    transform: scaleY(1);
    opacity: 1;
  }


  /* El submenú en móvil: oculto por defecto */
  #serviciosSubmenu {
    display: none;
    flex-direction: column;
  }
  /* Mostrar submenú en móvil al clic en "Servicios" */
  #serviciosBtn.active + #serviciosSubmenu {
    display: flex;
  }
}

/* Hero section */
.hero-image {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4); /* fondo semitransparente opcional */
  padding: 3rem 4rem;
  border-radius: 40px;
  max-width: 80vw;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin: 0;
}

.hero-text p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .hero-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4); /* fondo semitransparente opcional */
  padding: 3rem 4rem;
  border-radius: 40px;
  }

  .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.55); /* más opaco para mejor contraste */
    padding: 1.2rem 1rem; /* menos padding para pantallas chicas */
    border-radius: 24px;
    width: 60vw;
    max-width: 95vw;
    box-sizing: border-box;
    margin-top: 40px;
  }

  .hero-text h1 {
    font-size: 1.5rem;
    margin: 0;
  }

  .hero-text p {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}



/* Contenedor en grid para distribución equitativa */
.puntos-clave {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 60px;
  padding: 40px 40px;
}

/* Cada punto */
.punto {
  background: black;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  opacity: 0; /* inicialmente invisible */
  transform: translateY(20px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  text-align: center;
}

/* Estado visible: eleva y aparece */
.punto.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Estilo para los íconos SVG */
.punto svg {
  width: 60px;
  height: 60px;
  margin-bottom: 0;
  fill: #00a3e9;
}

/* Títulos */
.punto h4 {
  margin-bottom: 10px;
  font-family: "Raleway";
  font-weight: 600;
  font-size: 20px;
  color: white;
}

/* Descripciones */
.punto p {
  font-size: 1em;
  color: white;
  line-height: 1.4;
}


/* Títulos */
h2 {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .puntos-clave {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    padding: 30px 30px;
  }

  .punto h4 {
    margin-bottom: 10px;
    font-family: "Raleway";
    font-weight: 600;
    font-size: 18px;
    color: white;
  }

  .punto p {
  font-size: 14px;
  color: white;
  line-height: 1.4;
}


}

/* Estilos para la presentacion */
.presentacion {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 50px 20px;
  width: 100%;
  margin: 0 auto;
  flex-wrap: wrap; /* para que sea responsive */
  background: whitesmoke
}

/* Contenido textual */
.presentacion-content {
  flex: 1 1 45%;
  padding: 20px;
}

.presentacion-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #222;
}

.presentacion-content p {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #555;
}

/* Responsive para pantallas chicas */
@media (max-width: 768px) {
  .presentacion-content {
    flex: 1 1 100%;
    padding: 10px 5vw;
    text-align: center;
  }
  .presentacion-content h1 {
    font-size: 1.5em;
    margin-bottom: 14px;
  }
  .presentacion-content p {
    font-size: 1em;
    margin-bottom: 18px;
  }
}



.btn-cta {
  display: inline-block;
  padding: 12px 25px;
  background-color: #00a3e9;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-cta:hover {
  background-color: #0056b3;
}

/* Imagen grande a la derecha */
.presentacion-image {
  flex: 1 1 50%;
  padding: 20px;
  text-align: center;
}

.presentacion-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}




/* Contenedor principal con los servicios en línea */
.seccion-servicios {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 40px; /* espacio entre servicios */
  padding: 20px;
  flex-wrap: nowrap; /* línea en una sola fila */
  justify-content: center; /* centrar en la página */
}

.titulo-servicios {
    text-align: center;
    font-family: 'Raleway'; /* o la fuente que prefieras */
    font-size: 3.5em;
    margin-bottom: 10px; 
    margin-top: 80px;
    color: white; /* ajusta el color según tu diseño */
}
/* Cada servicio */
.servicio {
  flex: 1; /* que ocupen igual espacio */
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: black; /* opcional, para distinguir */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 800px; /* limitar tamaño en pantallas grandes */
  text-align: center;
}

/* Imagen del servicio */
.servicio img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Título del servicio */
.servicio h3 {
  margin-top: 15px;
  font-family: "Raleway";
  margin-bottom: 10px;
  font-size: 1.5em;
}

/* Párrafo descriptivo */
.servicio p {
  font-size: 1em;
  margin-bottom: 25px;
}

/* Botón de más información */
.boton {
  display: inline-block;
  padding: 10px 20px;
  background-color: #00a3e9; /* color azul */
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.boton:hover {
  background-color: #0056b3;
}

@media (max-width: 600px) {
  .seccion-servicios {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 10px 2vw;
  }
  .servicio {
    width: 78vw;
    max-width: 99vw;
    min-width: 0;
    padding: 12px 6px;
  }
  .titulo-servicios {
    font-size: 2em;
    margin-top: 30px;
  }
  .servicio h3 {
    font-size: 1.5em;
  }
  .servicio p {
    font-size: 0.98em;
  }
}


/* Estilo básico para el footer */
.footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 200px;
  margin: 10px;
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 1.2em;
}

.footer-column p,
.footer-column ul {
  font-size: 0.9em;
  line-height: 1.4;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-copy {
  margin-top: 20px;
  text-align: center;
  font-size: 0.8em;
  color: #aaa;
}


/* Estilo para el título centrado */
.titulo-centro {
  text-align: center;
  font-family: "Raleway";
  font-size: 4rem;
  margin: 40px 0;
  color: white; /* tono lilas */
}

.quienes-somos {
  display: flex;
  flex-direction: row; /* Texto izquierda, imagen derecha */
  flex-wrap: wrap;
  background-color: #111;
  padding: 30px;
  padding-left: 100px;
  width: 80%;
  margin-top: 40px;
  margin: 0px auto;
  gap: 40px; /* Espacio entre imagen y texto */
}

/* Texto */
.quienes-somos .texto {
  flex: 1 1 45%;
  padding: 20px;
}
.quienes-somos p {
  font-family: "Raleway";
  line-height: 1.6;
  color: white;
  padding-top: 50px;
  text-align: left;
  margin-bottom: 15px;
  font-size: 20px;
}

/* Imagen */
.quienes-somos .imagen {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quienes-somos img {
  max-width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* Misma seccion con imagen al otro */
.quienes-somos-inverso {
  display: flex;
  flex-direction: row-reverse; /* Imagen izquierda, texto derecha */
  flex-wrap: wrap;
  background-color: #111;
  padding: 30px;
  padding-right: 60px;
  width: 80%;
  margin: 0px auto;
  gap: 40px; /* Espacio entre imagen y texto */
}

/* Texto */
.quienes-somos-inverso .texto {
  flex: 1 1 45%;
  padding: 20px;
}

.quienes-somos-inverso p {
  font-family: "Raleway";
  line-height: 1.6;
  color: white;
  margin-bottom: 15px;
  padding-top: 15%;
  font-size: 20px;
  text-align: left;
}

/* Imagen */
.quienes-somos-inverso .imagen {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quienes-somos-inverso img {
  max-width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* Responsive: apilar en columna en pantallas chicas */
@media (max-width: 900px) {
  .quienes-somos,
  .quienes-somos-inverso {
    flex-direction: column !important;
    padding-left: 20px;
    padding-right: 20px;
    width: 98%;
    gap: 0; /* Elimina el espacio horizontal en móvil */
  }
  .quienes-somos .texto,
  .quienes-somos .imagen,
  .quienes-somos-inverso .texto,
  .quienes-somos-inverso .imagen {
    flex: 1 1 100%;
    padding: 10px 0;
  }
  .quienes-somos p,
  .quienes-somos-inverso p {
    padding-top: 20px;
    font-size: 1.2em;
    text-align: center;
  }
  .titulo-centro {
    text-align: center;
    font-family: "Raleway";
    font-size: 3rem;
    margin: 40px 0;
    color: white;
  }
}

.animado {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.8s ease, transform 1.8s ease;
}

/* Cuando tengan la clase 'visible', aparecerán con efecto */
.animado.visible {
  opacity: 1;
  transform: translateY(0);
}


/*Carrusel*/
.carrusel {
  position: relative;
  max-width: 1000px;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 10px;
}
.slides {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}
.slides img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  flex-shrink: 0;
  margin: auto;
  display: block;
}
button.prev, button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 1.5em;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}
button.prev {
  left: 10px;
}
button.next {
  right: 10px;
}


/* Estilos generales para la sección */
.iconos-limpieza {
  max-width: 1800px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
  font-family: "Montserrat",sans-serif;
}

/* Título y descripción */
.titulo-limpieza {
  display: flex;
  flex-wrap: wrap;
  font-family: "Raleway";
  justify-content: space-around;
  font-size: 4em;
}
.descripcion-limpieza {
  margin-bottom: 30px;
  font-size: 1.8em;
  color: white;
  padding: 0 10vw;
}

.item-limpieza {
  flex: 1 1 100%;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  background-color: #111;
  transition: transform 0.3s, box-shadow 0.3s;
}

.item-limpieza p, .item-limpieza h3{
 font-size: 1.1em;
 font-family: "Roboto";
}

.item-limpieza h3{
  font-size: 1.3em;
  font-family: "Raleway";
  font-weight: 600px;
}

.item-limpieza:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Icono grande */
.icon-limpieza {
  font-size: 3em;
  margin-bottom: 10px;
}

.icon-limpieza svg{
  height: 80px;
  width: auto;
}

/* --- Responsiveness --- */
@media (max-width: 1200px) {
  .titulo-limpieza {
    font-size: 2.8em;
  }
  .descripcion-limpieza {
    font-size: 1.2em;
  }
}

@media (max-width: 900px) {
  .iconos-limpieza {
    padding: 10px;
  }
  .titulo-limpieza {
    font-size: 2em;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .descripcion-limpieza {
    font-size: 1em;
    margin-bottom: 18px;
  }
  .item-limpieza {
    padding: 14px 8px;
    width: 100%;
  }
  .icon-limpieza svg {
    height: 60px;
  }
}

@media (max-width: 600px) {
  .iconos-limpieza {
    padding: 4px;
  }
  .titulo-limpieza {
    font-size: 1.3em;
    padding: 0 4vw;
  }
  .descripcion-limpieza {
    font-size: 1.2em;
    margin-bottom: 10px;
  }
  .item-limpieza {
    padding: 10px 2vw;
    border-radius: 7px;
  }
  .icon-limpieza {
    font-size: 2em;
  }
  .icon-limpieza svg {
    height: 38px;
  }
  .item-limpieza h3 {
    font-size: 1em;
  }
  .item-limpieza p {
    font-size: 0.85em;
  }
}

/* Sección "Cómo Funciona" mejorada */
.como-funciona {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  max-width: 100vw;
  margin: 0 0;
  padding: 40px 20px;
  background: linear-gradient(120deg, #f8fafc 60%, #e0f7fa 100%);
  border-radius: 0;
  box-shadow: 0 6px 24px rgba(0,163,233,0.08);
  gap: 40px;
  transition: box-shadow 0.3s;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.como-funciona:hover {
  box-shadow: 0 12px 36px rgba(0,163,233,0.16);
}

/* Contenido de texto */
.contenido {
  flex: 1 1 50%;
  padding: 20px 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contenido h2 {
  font-size: 2.5em;
  margin-bottom: 18px;
  color: #00a3e9;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}
.contenido p {
  font-size: 1.18em;
  line-height: 1.7;
  color: #222;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 0;
}

/* Imagen grande */
.imagen {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.imagen img {
  max-width: 95%;
  max-height: 380px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,163,233,0.10);
  object-fit: cover;
  transition: transform 0.3s;
}
.imagen img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 1100px) {
  .como-funciona {
    flex-direction: column;
    padding: 30px;
    gap: 24px;
  }
  .contenido, .imagen {
    flex: 1 1 100%;
    padding: 10px 0;
    text-align: justify;
  }
  .contenido h2 {
    font-size: 2em;
    text-align: center
  }
  .imagen img {
    max-width: 100%;
    max-height: 250px;
  }
}

/* Responsive */
@media(max-width: 768px) {
  .como-funciona {
    flex-direction: column;
  }
  .como-funciona p{
    font-size: 1rem;
  }
}


/* Estilo general del contenedor de 3 bloques */
.tres-contenedores {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1800px;
  margin: 50px auto;
  gap: 20px;
  padding: 20px;
}

/* Cada contenedor individual */
.contenedor-limp {
  background: #f0f0f0;
  border-radius: 10px;
  width: calc(33% - 20px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.contenedor-limp:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Imagen */
.imagen-limp img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
  border-bottom: 1px solid #ccc;
}

/* Texto debajo de la imagen */
.texto-limp {
  padding: 15px;
  text-align: center;
}
.texto-limp h3 {
  margin-bottom: 10px;
  font-family: "Raleway";
  color: black;
}
.texto-limp p {
  font-size: 0.95em;
  color: #111;
  font-family: "Roboto";
  line-height: 1.5;
}

/* Responsive para pantallas pequeñas */
@media(max-width: 768px) {
  .titulo-limpieza{
    font-size: 3em;
    text-align: center;
  }

  .tres-contenedores p{
    align-items: center;
  }
  .contenedor-limp {
    height: auto;
    width: 100%;
  }
  /* Hace que la sección de contenedores se apile verticalmente y centrar */
  .tres-contenedores {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Cada contenedor individual ocupa toda la anchura y con margen inferior para separación */
  .contenedor-limp {
    width: 90%; /* ajusta según prefieras */
    max-width: 1000px; /* para no ser demasiado ancho en pantallas grandes */
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
  }

  /* La imagen se ajusta a su contenedor sin problemas */
  .imagen-limp img {
    width: 100%;
    height: auto; /* ajusta automáticamente */
    max-height: 300px;
    display: block;
  }

  /* La sección de texto debajo de la imagen ocupa toda la anchura y se ajusta */
  .texto-limp {
    padding: 10px 15px;
  }
}


.hero-f {
  padding: 50px 20px;
  text-align: center;
}
.hero-f h1 {
  font-size: 3em;
  margin-bottom: 20px;
}
.hero-f p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.how-it-works {
  padding: 60px 0;
  background: linear-gradient(120deg, #101820 60%, #00a3e9 100%);
  text-align: center;
  border-radius: 0;
  margin: 60px 0 40px 0;
  max-width: 100vw;
  width: 100vw;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.how-it-works h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4em;
  margin-bottom: 18px;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
}
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
  margin-top: 30px;
}
.step {
  background: rgba(255,255,255,0.08);
  padding: 32px 24px 28px 24px;
  border-radius: 14px;
  width: 270px;
  box-shadow: 0 4px 16px rgba(0,163,233,0.08), 0 1.5px 8px rgba(0,0,0,0.10);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.step:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,163,233,0.16), 0 3px 16px rgba(0,0,0,0.13);
  background: rgba(0,163,233,0.12);
}
.step .step-icon {
  background: #00a3e9;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2em;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0,163,233,0.18);
}
.step h3 {
  margin-bottom: 12px;
  font-family: 'Raleway', sans-serif;
  font-size: 1.25em;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}
.step p {
  font-size: 1.05em;
  color: #e0e0e0;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .steps {
    gap: 18px;
  }
  .step {
    width: 90vw;
    max-width: 200px;
    margin-bottom: 18px;
  }
  .how-it-works {
    padding: 30px 0;
    
  }
}

@media (max-width: 600px) {
  .steps {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
  }
  .step {
    width: 98vw;
    max-width: 99vw;
    min-width: 0;
    padding: 18px 8px 16px 8px;
    font-size: 0.98em;
  }
  .step .step-icon {
    width: 44px;
    height: 44px;
    font-size: 1.5em;
    margin-bottom: 12px;
  }
  .step h3 {
    font-size: 1em;
    margin-bottom: 8px;
  }
  .step p {
    font-size: 0.95em;
  }
}


/* Certificaciones Fumigación */
.certificaciones-fumigacion {

  color: #fff;
  padding: 60px 20px;
  border-radius: 18px;
  margin: 60px auto 40px auto;
  max-width: 1100px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

.contenido-certificaciones {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.contenido-certificaciones h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4em;
  margin-bottom: 18px;
  color: #fff;
  text-align: center;
}

.contenido-certificaciones p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.15em;
  margin-bottom: 18px;
  color: #e0e0e0;
  text-align: center;
}

.contenido-certificaciones ul {
  margin: 25px 0 25px 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contenido-certificaciones ul li {
  background: rgba(255,255,255,0.08);
  border-left: 5px solid #00a3e9;
  padding: 12px 18px;
  border-radius: 7px;
  font-size: 1.08em;
  font-family: 'Raleway', sans-serif;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

@media (max-width: 768px) {
  .certificaciones-fumigacion {
    padding: 30px 8px;
    border-radius: 10px;
    margin: 30px 8px;
  }
  .contenido-certificaciones h2 {
    font-size: 1.5em;
  }
  .contenido-certificaciones p {
    font-size: 1em;
  }
  .contenido-certificaciones ul li {
    font-size: 1em;
    padding: 10px 12px;
  }
}

.contenedor-limp p{
  font-family: "Raleway";

}

/* --- Sección Título con Imagen de Fondo --- */
.titulo-limpieza-seccion {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 110px;
}

.titulo-limpieza-fondo {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url('./imagenes/ventanas-vidrio-edificio_53876-42549.avif'); /* o la que elijas */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;

  /* 🔹 Animación */
  opacity: 0;
  transform: scale(1.08);
  animation: fadeZoomIn 2.0s ease forwards;
}

/* 🔹 Efecto de entrada */
@keyframes fadeZoomIn {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }
  60% {
    opacity: 1;
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


/* Capa oscura encima para que el texto destaque */
.titulo-limpieza-fondo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.titulo-limpieza {
  position: relative;
  font-size: 4rem;
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  letter-spacing: 1.5px;
  z-index: 1;
  padding: 0 20px;

  /* 🔹 Degradado elegante en el texto */
  background-color: white;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;

  
  transform: translateY(20px);
  animation: fadeSlideIn 0.8s ease forwards; 
  animation-delay: 1s; /* aparece después del fondo */
}

/* Animación suave del texto */
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Adaptación a pantallas chicas */
@media (max-width: 768px) {
  .titulo-limpieza-seccion {
    height: 300px;
  }

  .titulo-limpieza {
    font-size: 2.3rem;
    padding: 0 20px;
    letter-spacing: 0.8px;
  }
}



/* --- Sección Fumigación con imagen de fondo --- */
.titulo-fumigacion-seccion {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 110px;
}

.titulo-fumigacion-fondo {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url('./imagenes/droneFumigando.avif'); /* 🔹 cambia si querés otra */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /* 🔹 Animación fondo */
  opacity: 0;
  transform: scale(1.08);
  animation: fadeZoomIn 2.5s ease forwards;
}

/* Fondo oscuro encima */
.titulo-fumigacion-fondo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

/* Texto principal */
.titulo-fumigacion {
  position: relative;
  font-size: 4rem;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  text-align: center;
  letter-spacing: 1.5px;
  background: white;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideIn 1.8s ease forwards;
  animation-delay: 1s; /* aparece después del fondo */
}

/* Subtítulo */
.subtitulo-fumigacion {
  position: relative;
  color: #f0f0f0;
  font-size: 1.4rem;
  text-align: center;
  font-family: "Roboto", sans-serif;
  z-index: 1;
  margin-top: 15px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeSlideIn 2.2s ease forwards;
  animation-delay: 1.2s;
}

/* Animaciones */
@keyframes fadeZoomIn {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }
  60% {
    opacity: 1;
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .titulo-fumigacion-seccion {
    height: 300px;
  }

  .titulo-fumigacion {
    font-size: 2.5rem;
    letter-spacing: 0.8px;
    /* padding property removed or specify a value if needed */
  }

  .subtitulo-fumigacion {
    font-size: 1rem;
    padding: 0 20px;
  }
}

/* --- Botón principal del hero (versión grande) --- */
.btn-contacto {
  display: inline-block;
  margin-top: 28px;
  padding: 18px 60px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: #fff;
  text-decoration: none;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 162, 255, 0.4);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

/* Hover con más impacto */
.btn-contacto:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 162, 255, 0.6);
  background: linear-gradient(90deg, #009dff, #0046ff);
}

/* Efecto de pulso sutil */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 rgba(0, 162, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 162, 255, 0.6);
  }
  100% {
    box-shadow: 0 0 0 rgba(0, 162, 255, 0.3);
  }
}

.btn-contacto {
  animation: pulseGlow 3.5s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .btn-contacto {
    font-size: 1.2rem;
    padding: 16px 40px;
  }
}
