body {
  margin: 0;
  padding-top: 90px;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

/* --- HEADER --- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 90%; 
  height: 70px;
  z-index: 1000;
}

.logo { height: 60px; }

.nav { display: flex; align-items: center; }
.nav a { 
  margin-left: 20px; 
  text-decoration: none; 
  color: #444; 
  font-weight: 500; 
}

.cta-btn {
  background: #FFCC00; 
  padding: 10px 20px; 
  border-radius: 25px;
  font-weight: 600; 
  color: #000;
  text-decoration: none;
}

/* --- BOTÓN HAMBURGUESA --- */
.menu-toggle {
  display: none; /* Oculto en PC */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 10px;
  transition: 0.3s;
}

/* --- RESPONSIVIDAD MÓVIL (IZQUIERDA) --- */
@media (max-width: 768px) {
  .menu-toggle { display: flex; order: 1; } /* Forzamos orden a la izquierda */
  .logo { order: 2; } /* Logo a la derecha */

  .nav {
    position: fixed;
    top: 0;
    left: -100%; /* Ahora sale desde la IZQUIERDA */
    height: 100vh;
    width: 250px;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transition: 0.4s ease;
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
    z-index: 1050;
  }

  .nav.active { left: 0; } /* Mostrar menú */

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
  }
  
  .nav-overlay.active { display: block; }

  /* Animación X */
  .menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
}

/* Estilos de correo */
.email-link { color: #007bff; text-decoration: none; }







/* --- RESTO DE TU DISEÑO (HERO, SERVICES, ETC) --- */
.hero { height: 70vh; background-size: cover; background-position: center; display: flex; justify-content: center; align-items: center; }
.hero-content { background: rgba(255,255,255,0.9); padding: 30px; border-radius: 12px; text-align: center; }
.services-wrapper { display: flex; overflow-x: auto; gap: 20px; padding: 20px; }
.service-card { flex: 0 0 200px; background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); text-align: center; }
.checklist-item { display: flex; gap: 20px; margin-bottom: 30px; }
.image-content { width: 250px; height: 180px; overflow: hidden; flex-shrink: 0; border-radius: 8px; }
.checklist-item-image { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 768px) {
    .checklist-item { flex-direction: column; }
    .image-content { width: 100%; }
}

/* --- ESTILOS DEL ENCABEZADO Y NAVEGACIÓN --- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
   padding: 12px 20px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  
  /* PROPIEDADES PARA HACERLO FIJO */
  position: fixed; /* Fija el encabezado a la ventana de visualización */
  top: 0;          /* Lo alinea a la parte superior */
  left: 0;         /* Lo alinea a la izquierda */
  width: 100%;     /* Asegura que ocupe todo el ancho */
  z-index: 1000;   /* Asegura que esté por encima de otros elementos */
}


.logo { 
  height: 100px; 
} /* Ajuste del logo */

.nav a { 
  margin: 0 10px; 
  text-decoration: none; 
  color: #444; 
  font-weight: 500; 
}

.cta-btn {
  background: #FFCC00; 
  padding: 12px 20px; 
  border-radius: 25px;
  text-decoration: none; 
  font-weight: 600; 
  color: #000;
  transition: background-color 0.3s;
}

.cta-btn:hover {
  background: #FFB300;
}

/* --- ESTILOS DE SECCIÓN HERO (IMAGEN PRINCIPAL) --- */
.hero {
  height: 80vh; 
  background-size: cover; 
  background-position: center;
  display: flex; 
  justify-content: center; 
  align-items: center;
  text-align: center;
}

.hero-content { 
  max-width: 500px; 
  background: rgba(255,255,255,0.8); 
  padding: 30px; 
  border-radius: 12px; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.hero-content h1 {
  font-size: 2.5em;
  margin-top: 0;
  color: #333;
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #555;
}

/* --- ESTILOS GENERALES DE SECCIÓN --- */
.section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #000;
}

.section.alt {
  background-color: #f9f9f9;
}

/* --- SECCIÓN DE SERVICIOS CORREGIDA --- */
.services-wrapper {
  display: flex;
  gap: 20px;
  padding: 20px 5%; /* Agrega espacio a los lados para que no se corten las palabras */
  overflow-x: auto; /* Permite deslizar en móviles */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  justify-content: flex-start; /* Alineación inicial para permitir el scroll */
}

.service-card {
  flex: 0 0 220px; /* Ancho fijo para que las tarjetas no se aplasten */
  background: #fff;
  padding: 30px 15px; /* Espacio interno para que el texto no toque los bordes */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  border: 1px solid #f0f0f0;
  box-sizing: border-box; /* Asegura que el padding no agrande la tarjeta */
}

/* Para pantallas grandes, centramos las tarjetas si no hay suficientes para hacer scroll */
@media (min-width: 1024px) {
  .services-wrapper {
    justify-content: center; 
    overflow-x: hidden; /* Quitamos el scroll si caben todas en pantalla */
    flex-wrap: wrap; /* Las baja a la siguiente línea si son muchas */
  }
}
/* --- FIN: ESTILOS DE SERVICIOS MODIFICADOS --- */


/* --- ESTILOS DE IMAGEN ESTANDARIZADA (img8 y img9) --- */
.imagen-estandarizada {
  width: 100%; 
  max-width: 1280px; 
  height: auto; 
  display: block; 
  margin: 0 auto; 
}

/* --- ESTILOS DE WHO WE ARE / ABOUT US --- */
.content-box {
  max-width: 800px; 
  margin: 0 auto; 
  padding: 20px;
  line-height: 1.6;
  text-align: left;
}

.note-box {
  margin-top: 30px;
  padding: 20px;
  border-left: 5px solid #FFCC00;
  background: #fffaf0;
  border-radius: 5px;
}

.note-box p {
  margin: 5px 0;
  font-style: italic;
  font-size: 0.9em;
}

.final-note {
  font-weight: bold;
  font-style: normal !important;
}

.contact-info {
  margin-top: 30px;
  font-size: 1.1em;
}

/* --- ESTILOS DEL FOOTER --- */
.footer { 
  text-align: center; 
  padding: 20px; 
  background: #fff; 
  border-top: 1px solid #eee;
}

/* --- ESTILOS EXCLUSIVOS PARA LA HOME CLEANING CHECKLIST (Fondo Gris y Layout) --- */

.checklist-section {
  padding: 60px 20px;
  background-color: #f5f5f5; /* Fondo gris claro solicitado */
}

.checklist-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5em;
  font-weight: bold;
  text-align: left;
  margin-bottom: 30px;
  color: #333;
  padding-left: 20px; 
}

.checklist-content {
  max-width: 1000px; 
  margin: 0 auto;
  text-align: left;
  padding: 0 20px;
}

.checklist-content h3 {
  font-size: 1.5em;
  font-weight: bold; 
  margin-top: 40px;
  margin-bottom: 15px;
  color: #333;
}

.checklist-content h4 {
  font-size: 1.2em;
  font-weight: bold; 
  margin-top: 25px;
  margin-bottom: 10px;
  text-transform: uppercase; 
  color: #333;
}

.checklist-content ul {
  list-style: disc; 
  padding-left: 25px; 
  margin-top: 5px;
  margin-bottom: 20px; 
}

.checklist-content ul li {
  margin-bottom: 8px;
  font-size: 0.95em;
  line-height: 1.5;
  color: #555;
}

/* Contenedor principal para la fila de texto e imagen */
.checklist-item {
  display: flex; 
  justify-content: space-between; 
  align-items: flex-start; /* Alinea los elementos a la parte superior */
  margin-bottom: 30px; 
  gap: 30px; 
}

.text-content {
  flex: 1; 
  min-width: 300px; 
}

/* Contenedor de la imagen (El "cuadro" fijo) */
.image-content {
  flex-shrink: 0; 
  width: 250px; 
  height: 180px; 
  overflow: hidden; 
  border-radius: 5px; 
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
  border: 1px solid #ccc; 
}

.checklist-item-image {
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block;
}

/* --- RESPONSIVIDAD GENERAL --- */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    padding: 15px;
  }
  .logo {
    height: 100px; 
    margin-bottom: 10px;
  }
  .nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .nav a {
    margin: 5px 0;
  }
  .cta-btn {
    margin-top: 10px;
    padding: 10px 15px;
  }
  .hero {
    height: 60vh;
  }
  .hero-content h1 {
    font-size: 2em;
  }
  .hero-content p {
    font-size: 1em;
  }
  .section {
    padding: 40px 15px;
  }
  
  /* RESPONSIVIDAD ESPECÍFICA DE SERVICIOS */
  .services-wrapper {
    justify-content: flex-start; /* Alinea a la izquierda para un mejor scroll */
    padding: 0 15px;
  }
  .service-card {
    flex: 0 0 180px; /* Ancho fijo un poco menor para móviles */
  }

  /* RESPONSIVIDAD ESPECÍFICA DE CHECKLIST */
  .checklist-title {
    font-size: 2em;
    text-align: center; 
    padding-left: 0;
  }

  .checklist-item {
    flex-direction: column; 
    align-items: center; 
    gap: 15px; 
  }

  .text-content {
    min-width: auto; 
    width: 100%;
  }

  .image-content {
    width: 100%; 
    max-width: 300px; 
    height: 180px; 
  }



/* Estilos para el botón hamburguesa */
.menu-toggle {
  display: none; /* Oculto en desktop */
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  gap: 5px;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 4px;
  background-color: #333;
  border-radius: 2px;
  transition: 0.3s;
}

/* Ajustes para Móviles (Dentro de tu @media max-width: 768px) */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex; /* Mostrar en móviles */
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%; /* Escondido a la derecha */
    height: 100vh;
    width: 80%;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: 0.4s;
    z-index: 1050;
  }

  /* Cuando el menú está activo */
  .nav.active {
    right: 0;
  }

  .nav a {
    font-size: 1.5rem;
    margin: 15px 0;
  }

  .header {
    flex-direction: row; /* Mantener logo y hamburguesa en la misma línea */
    justify-content: space-between;
  }
}



}