
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Lato, sans-serif;
  color: #333;
  line-height: 1.5;
}

/* HERO (Portada) */
.hero {
  height: 100vh;
 /* background:linear-gradient(rgba(52, 73, 94, 0.7), rgba(52, 73, 94, 0.6)),
              url(imagenes/fondo-reluciente.jpg) center/cover no-repeat;*/
  background: linear-gradient(rgba(21, 67, 96, 0.8), rgba(21, 67, 96, 0.6)),
  url(imagenes/espacio-empresarial.webp) center/cover no-repeat;
  display: flex;
  flex-direction: column;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
}

.logo {
  width: 140px;
  height: auto;
}

.margenes{
    margin-left: 80px;
    margin-right: 80px;
}

.logo-imagen{
  width: 180px;
  height: auto;
}

.menu {
  list-style: none;
  display: flex;
  gap: 35px;
}
.menu a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

/* HERO CONTENT */

.hero {
  display: flex;
  flex-direction: column;
  /*justify-content: space-between;  Distribuye navbar arriba y contenido centrado */
}

.hero-content-container {
  flex: 1;
  display: flex;
  align-items: center; /* Centra verticalmente el contenido */
}

.hero-content {
  text-align: left;
  color: #fff;
  /*margin-top: 100px;*/

}
.hero-content h1 {
  font-size: 60px;
  font-weight: 800;
}
.subtext {
  margin: 20px 0;
  font-weight: 400;
  font-size: 22px;
}
.btn-primary {
  display: inline-block;
  padding: 6px 15px;
  background-color:#34495E;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
}

.btn-whatsapp{
  position: fixed;
  bottom: 50px;
  right: 40px;
  font-size: 75px;
  color: #e66108;
  cursor: pointer;
}

.link-whatsapp{
  text-decoration: none;
  color: #e66108;
}

/* SERVICES SECTION */
.services {
  min-height: 100vh;
  padding: 50px;
  text-align: center;

}

.services h2 {
  font-size: 50px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 15px;
}

.services-links {
  display: flex;
  list-style-type: none;
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 400;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}

.services-links li{
    display: inline-block;
    align-items: center;
    justify-content: center;
    text-align: center;
    /*color: #78a7c1;*/
    color: #3498DB;
    white-space: nowrap;
}

/* CARDS */
.cards {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.card {
  width: 240px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.card img {
  width: 240px;
  height: 300px;
  border-radius: 6px;
}
.card p {
  /*margin: 15px 0;*/
  font-size: 17px;
  color: #707070;
}

.card-text{
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 15px;
}

.card h3{
  color: #1A1A1A;
  font-weight: 800;
}

.card-link {
  font-weight: bold;
  color: #3498DB;
  font-size: 18px;
  text-decoration: none;
  margin-top: auto;
}

.card-link:hover {
  background-color: #8ecae6;
}

.icon{
    padding: 8px;
}

/* SECCIÓN NOSOTROS */
.about {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 70px;
}

.bold{
  font-weight: 800;
}

.about-content {
  display: flex;
  /*justify-content: space-between;*/
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.about-text {
  flex: 1;
}
.about-text h2 {
  font-size: 45px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 15px;
}
.about-text h3 {
  font-size: 30px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 20px;
  color: #707070;
  line-height: 1.6;
}
.about-image {
  flex: 1;
}


.about-image img {
  width: 450px;
  height: auto;
  border-radius: 6px;
}

/* SECCIÓN POR QUÉ ELEGIRNOS */
.choose {
  min-height: 65vh;
  /*background-color: #2c4d73;*/
  background-color: #19376D;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  position: relative;
}

.choose h2 {
  font-size: 45px;
  margin-bottom: 40px;
}

.choose-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 25px;
  gap: 20px 40px;
  max-width: 1200px;
  margin:
 0 auto 40px auto;
}

.choose h2,
.choose-items,
.btn-secondary {
  position: relative;   
  z-index: 3;         
}

 .choose img{
    position: absolute;
    top: 20%;
    right: 25%;
    width: 300px;
    height: auto;
    z-index: 2;
}
.choose-items div {
  font-size: 25px;
  font-weight: 300;
}

.check{
  color: #219ebc;
}

.btn-secondary {
  display: inline-block;
  padding: 8px 18px;
  /*background: linear-gradient(to right, #4a90e2, #f26522);*/
  background: linear-gradient(90deg,rgba(255, 132, 53, 0.21) 0%, rgba(255, 132, 53, 0.7) 42%, rgba(255, 132, 53, 0.73) 59%, rgba(255, 132, 53, 0.87) 82%, rgba(255, 132, 53, 1) 94%);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 400;
}
.btn-secondary:hover {
  opacity: 0.9;
}

.contact{
  display: flex;
  flex-direction: column;
  padding: 100px 0;
  align-items: center;
  justify-content: center;
}

.contact h2{
  font-size: 45px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 20px;
}

.slogan{
  font-size: 25px;
  font-style: italic;
  max-width: 800px;
  font-weight: 500;
  color: #19376D;
  margin-bottom: 40px;
  text-align: center;
  justify-content: center;
}

/*.contact-container{
  display: flex;
  flex-direction: row;
  gap: 80px;
}*/

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.contact-column {
  flex: 1;
}

iframe {
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.contact-column{
  display: flex;
  flex-direction: column;
  max-width: 550px;
}

.contact-data{
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow:  0 2px 10px rgba(0, 0, 0, 0.4);

}

.contact-data h3{
  color:#023047;
  font-size: 22px;
  font-weight: 600;
}

.contact-data h4{
  color:#023047;
  font-size: 18px;
  font-weight: 600;
}

.contact-data ul{
  list-style-type: none;
  padding: 20px 0;
}

.contact-data-item{
  color: #023047;
  font-weight: 500;
}

.contact-icon{
  color: #f26522;
  font-size: 20px;
  padding-right: 8px;
}

.info-item{
  display: flex;
  align-items: center;
  padding: 8px;
}

/* FOOTER */
.footer {
  background-color: #19376D;
  color: #fff;
  padding-top: 50px;
  font-size: 14px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0 20px 40px 20px;
}
.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-list{
  list-style-type: none;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #f26522; /* detalle naranja del logo */
  color: #ffffff;
}
.footer-col p, 
.footer-col a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}
.footer-col a:hover {
  color: #fff;
}
.footer-col i {
  margin-right: 8px;
  color: #f26522;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 15px 0;
  font-size: 13px;
  color: #aaa;
}

.form-container {
            background-color: white;
            max-width: 500px;
            margin: 0 auto;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }

        .form-header {
            background: linear-gradient(135deg, #ff7b47, #ff6b35);
            height: 4px;
        }

        .form-content {
            padding: 30px;
        }

        .form-title {
            text-align: center;
            color: #333;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 30px;
        }

        .form-row {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .form-group {
            flex: 1;
        }

        .form-group.full-width {
            width: 100%;
        }

        label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-size: 14px;
            font-weight: 500;
        }

        .required {
            color: #666;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        textarea,
        select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            color: #333;
            background-color: #fff;
            transition: border-color 0.3s ease;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="tel"]:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: #ff6b35;
            box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.1);
        }

        select {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 16px;
            padding-right: 40px;
            cursor: pointer;
        }

        select option {
            padding: 10px;
        }

        textarea {
            resize: vertical;
            min-height: 100px;
            font-family: Arial, sans-serif;
        }

        textarea::placeholder {
            color: #aaa;
            font-style: italic;
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #ff7b47, #ff6b35);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            margin-top: 10px;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, #ff6b35, #ff5722);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        @media (max-width: 600px) {
            .form-row {
                flex-direction: column;
                gap: 0;
            }

            .form-content {
                padding: 20px;
            }
        }

.form-message {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  font-weight: 500;
  text-align: center;
  animation: slideDown 0.3s ease-out;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Estilos para el botón en estado de carga */
.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

#btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

#btn-loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Sección Servicios Limpieza */
.servicios-limpieza {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    text-align: center;
}

.servicios-limpieza h2 {
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1A1A1A;
    /*max-width: 600px;*/
}

.servicios-limpieza p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #7F8C8D;
    max-width: 800px;
}

.cards-limpieza {
    display: flex;
    gap: 40px;
    justify-content: center;
    max-width: 1200px;
}

.card-limpieza {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 250px;
}

.card-limpieza img {
    width: 135px;
    height: 135px;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.card-limpieza p {
    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1.4;
}

.card-limpieza-especial{
  margin-top: 30px;
}

.servicios-limpieza button{
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 132, 53, 1);
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 400;
  margin-top: 20px;
}

/* Sección Tareas Limpieza */
.tareas-limpieza {
    /*min-height: 100vh;*/
    display: flex;
    align-items: center;
    padding: 80px 20px;
    background: #f8f9fa;
}

.tareas-limpieza > div {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.tareas-limpieza h2 {
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1A1A1A;
    max-width: 700px;
}

.tareas-limpieza > div > p {
    font-size: 26px;
    font-weight: 600;
    max-width: 600px;
    margin-bottom: 25px;
    color: #7F8C8D;
}

.tareas-limpieza ul {
    list-style: none;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 8px;
}

.tareas-limpieza li {
    padding-left: 20px;
    font-size: 1.2rem;
    color: #1A1A1A;
    display: flex;
    align-items: center;
    /*margin-bottom: 8px;
    border-radius: 0 8px 8px 0;*/
}

.icono-check{
  color: #3498DB;
  font-size: 25px;
  padding: 5px;
}

.tareas-limpieza button {
    background: rgba(255, 132, 53, 1);
    color: white;
    border: none;
    padding: 8px 18px;
    font-size: 1.1rem;
    font-weight: 400;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tareas-limpieza button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* Sección Locaciones */
.locaciones {
    /*min-height: 100vh;*/
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px;
}

.locaciones > div {
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
    width: 100%;
}

.locaciones h2 {
    font-size: 45px;
    font-weight: 800;
    font-weight: bold;
    margin-bottom: 25px;
    color: #1A1A1A;
}

.locaciones > div {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: flex-start;
}

.locaciones-container{
  display: flex;
  align-items: flex-start;
}

.limpieza-supermercado{
    width: 350px;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.locaciones ul {
    list-style: none;
    padding: 15px;
}

.locaciones li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 1.1rem;
    color: #1A1A1A;
    margin-bottom: 10px;
    font-weight: 500;
}

.icono-locaciones-limpieza{
  width: 40px;
  height: auto;
  margin: 8px;
}

/* DROPDOWN MENU */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.dropdown-toggle::after {
  content: "▼";
  margin-left: 8px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 280px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 10px;
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
  border-radius: 4px;
  margin: 4px;
}

.dropdown-menu a:hover {
  background-color: #f8f9fa;
  color: #3498DB;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Animación mejorada para X simétrica */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background-color: #fff;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background-color: #fff;
}

/* MOBILE MENU - Se abre desde la DERECHA */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -350px; /* Cambio: ahora se abre desde la derecha */
  width: 320px;
  height: 100vh;
  background: #19376D;
  padding: 80px 30px 30px;
  transition: right 0.3s ease; /* Cambio: animación hacia la derecha */
  z-index: 999;
  overflow-y: auto;
  box-shadow: -5px 0 15px rgba(0,0,0,0.2);
}

.mobile-menu.active {
  right: 0; /* Cambio: se posiciona en 0 desde la derecha */
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu > ul > li {
  margin-bottom: 20px;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: #3498DB;
}

/* MOBILE DROPDOWN */
.mobile-dropdown {
  position: relative;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.mobile-dropdown-toggle::after {
  content: "▼";
  font-size: 12px;
  transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle::after {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 20px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  max-height: 300px;
}

.mobile-dropdown-menu a {
  font-size: 16px;
  padding: 10px 0;
  border-bottom: none;
  color: #ccc;
}

.mobile-dropdown-menu a:hover {
  color: #3498DB;
}

/* OVERLAY */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== MEDIA QUERIES RESPONSIVE UNIFICADAS ===== */

/* Large Desktop */
@media (min-width: 1200px) {
  .margenes {
    margin-left: 120px;
    margin-right: 120px;
  }
  
  .cards {
    gap: 80px;
  }
  
  .hero-content h1 {
    font-size: 70px;
  }
}

/* Desktop */
@media (max-width: 1024px) {
  .navbar {
    padding: 20px 40px;
  }
  
  .margenes {
    margin-left: 40px;
    margin-right: 40px;
  }
  
  .hero-content h1 {
    font-size: 50px;
  }
  
  .cards {
    gap: 40px;
  }
  
  .about-content {
    gap: 30px;
  }
  
  .about-image img {
    width: 400px;
  }
  
  .contact-container {
    gap: 40px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  /* NAVBAR - Media query existente integrada */
  .navbar {
    padding: 15px 20px;
  }
  
  .menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }
  
  .margenes {
    margin-left: 20px;
    margin-right: 20px;
  }
  
  /* Hero */
  .hero-content {
    margin-top: 60px;
  }
  
  .hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
  }
  
  .subtext {
    font-size: 20px;
    margin: 15px 0;
  }
  
  .btn-primary {
    font-size: 18px;
    padding: 8px 18px;
  }
  
  /* Services */
  .services {
    padding: 40px 20px;
  }
  
  .services h2 {
    font-size: 40px;
  }
  
  .services-links {
    font-size: 16px;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 8px;
  }
  
  .services-links li {
    white-space: normal;
    text-align: left;
  }
  
  .cards {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .card {
    width: 280px;
  }
  
  .card img {
    width: 280px;
    height: 320px;
  }
  
  /* About */
  .about-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .about-text h2 {
    font-size: 38px;
  }
  
  .about-text h3 {
    font-size: 26px;
  }
  
  .about-text p {
    font-size: 18px;
  }
  
  .about-image img {
    width: 100%;
    max-width: 400px;
  }
  
  /* Choose */
  .choose {
    padding: 50px 20px;
  }
  
  .choose h2 {
    font-size: 38px;
  }
  
  .choose-items {
    flex-direction: column;
    font-size: 22px;
    text-align: left;
    max-width: 600px;
  }
  
  .choose-items div {
    font-size: 22px;
  }
  
  .btn-secondary {
    font-size: 18px;
    padding: 10px 20px;
  }
  
  /* Contact */
  .contact {
    padding: 60px 20px;
  }
  
  .contact h2 {
    font-size: 38px;
  }
  
  .slogan {
    font-size: 22px;
    margin-bottom: 30px;
  }
  
  .contact-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .contact-column {
    max-width: 100%;
  }
  
  /* Servicios Limpieza */
  .servicios-limpieza h2 {
    font-size: 38px;
  }
  
  .cards-limpieza {
    gap: 40px;
  }
  
  /* Tareas Limpieza */
  .tareas-limpieza ul {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  
  .tareas-limpieza h2 {
    font-size: 38px;
  }
  
  .tareas-limpieza > div > p {
    font-size: 22px;
  }
  
  /* Locaciones */
  .locaciones h2 {
    font-size: 38px;
  }
  
  .locaciones > div {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
  }
  
  .limpieza-supermercado {
    width: 300px;
  }
  
  /* Footer */
  .footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .footer-col {
    min-width: 100%;
  }
}

/* Mobile Large */
@media (max-width: 480px) {
  /* Mobile menu - Media query existente integrada */
  .mobile-menu {
    width: 280px;
    right: -280px;
  }
  
  .navbar {
    padding: 15px;
  }
  
  .margenes {
    margin-left: 15px;
    margin-right: 15px;
  }
  
  .logo-imagen {
    width: 140px;
  }
  
  /* Hero */
  .hero-content {
    margin-top: 40px;
  }
  
  .hero-content h1 {
    font-size: 32px;
    line-height: 1.1;
  }
  
  .subtext {
    font-size: 18px;
  }
  
  .btn-primary {
    font-size: 16px;
    padding: 8px 16px;
  }
  
  /* Services */
  .services {
    padding: 30px 15px;
  }
  
  .services h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .services-links {
    font-size: 15px;
    margin-bottom: 20px;
    flex-direction: row;
  }
  
  .cards {
    gap: 25px;
  }
  
  .card {
    width: 100%;
    max-width: 280px;
  }
  
  .card img {
    width: 100%;
    height: 280px;
  }
  
  .card-text {
    padding-top: 20px;
    padding-bottom: 10px;
  }
  
  /* About */
  .about {
    margin-top: 15px;
    margin-bottom: 40px;
  }
  
  .about-text h2 {
    font-size: 30px;
  }
  
  .about-text h3 {
    font-size: 22px;
  }
  
  .about-text p {
    font-size: 16px;
  }
  
  /* Choose */
  .choose {
    padding: 40px 15px;
  }
  
  .choose h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  
  .choose-items {
    font-size: 15px;
    gap: 10px 20px;
  }
  
  .choose-items div {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  /* Contact */
  .contact {
    padding: 50px 15px;
  }

  .contact-column{
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
  
  .contact h2 {
    font-size: 30px;
  }
  
  .slogan {
    font-size: 18px;
    padding: 0 10px;
  }
  
  .contact-data {
    padding: 15px;
  }
  
  .contact-data h3 {
    font-size: 20px;
  }
  
  .contact-data h4 {
    font-size: 16px;
  }
  
  .info-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 10px 5px;
  }
  
  .data {
    margin-left: 28px;
    margin-top: -25px;
  }
  
  /* Form - Media queries existentes integradas */
  .form-content {
    padding: 20px;
  }
  
  .form-title {
    font-size: 20px;
    margin-bottom: 25px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
    margin-bottom: 15px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  /* Servicios Limpieza */
  .servicios-limpieza {
    padding: 60px 15px;
  }
  
  .servicios-limpieza h2 {
    font-size: 30px;
  }
  
  .servicios-limpieza p {
    font-size: 16px;
  }
  
  .cards-limpieza {
    gap: 30px;
  }
  
  .card-limpieza {
    max-width: 200px;
  }
  
  .card-limpieza img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }
  
  .card-limpieza p {
    font-size: 18px;
  }
  
  /* Tareas Limpieza */
  .tareas-limpieza {
    padding: 60px 15px;
  }
  
  .tareas-limpieza h2 {
    font-size: 30px;
  }
  
  .tareas-limpieza > div > p {
    font-size: 18px;
  }
  
  .tareas-limpieza li {
    font-size: 16px;
  }
  
  /* Locaciones */
  .locaciones {
    padding: 60px 15px;
  }
  
  .locaciones h2 {
    font-size: 30px;
  }
  
  .limpieza-supermercado {
    width: 280px;
  }
  
  .locaciones li {
    font-size: 16px;
  }
  
  .icono-locaciones-limpieza {
    width: 35px;
  }
}

/* Mobile Small */
@media (max-width: 360px) {
  /* Mobile menu - Media query existente integrada */
  .mobile-menu {
    width: 260px;
    right: -260px;
  }
  
  .hero-content h1 {
    font-size: 28px;
  }
  
  .services h2,
  .about-text h2,
  .choose h2,
  .contact h2,
  .servicios-limpieza h2,
  .tareas-limpieza h2,
  .locaciones h2 {
    font-size: 26px;
  }
  
  .subtext {
    font-size: 16px;
  }
  
  .slogan {
    font-size: 16px;
  }
  
  .choose-items div,
  .choose-items {
    font-size: 16px;
  }
  
  .card {
    width: 100%;
  }
  
  .limpieza-supermercado {
    width: 250px;
  }
}

/* ========== CORRECCIONES RESPONSIVE ========== */

/* 1. CENTRADO VERTICAL DEL TÍTULO DEL HEADER */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Distribuye navbar arriba y contenido centrado */
}

.hero-content-container {
  flex: 1;
  display: flex;
  align-items: center; /* Centra verticalmente el contenido */
}

.hero-content {
  text-align: left;
  color: #fff;
  margin-top: 0; /* Quita el margin-top para que el centrado funcione */
}

/* 2. FORMULARIO MÁS COMPACTO EN MOBILE */
@media (max-width: 768px) {
  /* Form container más compacto */
  .form-container {
    max-width: 100%;
    margin: 0;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
  }
  
  .form-content {
    padding: 20px 15px;
  }
  
  .form-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  /* Reducir espaciado entre elementos */
  .form-row {
    margin-bottom: 12px;
  }
  
  .form-group {
    margin-bottom: 8px;
  }
  
  /* Campos de formulario más compactos */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    padding: 8px 10px;
    font-size: 14px;
  }
  
  /* Textarea más pequeño */
  textarea {
    min-height: 70px;
  }
  
  /* Labels más pequeños */
  label {
    font-size: 13px;
    margin-bottom: 4px;
  }
  
  /* Botón submit más compacto */
  .submit-btn {
    padding: 12px 20px;
    font-size: 14px;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .form-container {
    display: flex;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
  }
  
  .form-content {
    padding: 10px 6px;
  }
  
  .form-title {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .form-row {
    margin-bottom: 10px;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    padding: 7px 8px;
    font-size: 13px;
  }
  
  textarea {
    min-height: 60px;
  }
  
  .submit-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* 3. FOOTER MÁS COMPACTO EN MOBILE */
@media (max-width: 768px) {
  .footer {
    padding-top: 30px;
    font-size: 13px;
  }
  
  .footer-container {
    padding: 0 20px 25px 20px;
    gap: 20px;
  }
  
  /* Logo más pequeño */
  .footer-col img {
    width: 120px;
    height: auto;
  }
  
  .footer-col h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .footer-col p,
  .footer-col a {
    font-size: 13px;
    margin-bottom: 6px;
  }
  
  .footer-bottom {
    padding: 12px 0;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding-top: 25px;
  }
  
  .footer-container {
    padding: 0 15px 20px 15px;
    gap: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dos columnas en mobile */
    grid-template-areas: 
      "logo logo"
      "contacto servicios"
      "empresa empresa";
  }
  
  /* Organización del footer en grid */
  .footer-col:nth-child(1) { /* Logo */
    grid-area: logo;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .footer-col:nth-child(2) { /* Contacto */
    grid-area: contacto;
  }
  
  .footer-col:nth-child(3) { /* Servicios */
    grid-area: servicios;
  }
  
  .footer-col:nth-child(4) { /* Empresa */
    grid-area: empresa;
    text-align: center;
  }
  
  /* Logo aún más pequeño */
  .footer-col img {
    width: 100px;
    height: auto;
  }
  
  .footer-col h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .footer-col p,
  .footer-col a {
    font-size: 12px;
    margin-bottom: 4px;
  }
  
  /* Iconos más pequeños */
  .footer-col i {
    margin-right: 6px;
    font-size: 12px;
  }
  
  .footer-bottom {
    padding: 10px 0;
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  .footer-container {
    padding: 0 10px 15px 10px;
    gap: 12px;
  }
  
  .footer-col img {
    width: 90px;
  }
  
  .footer-col h3 {
    font-size: 13px;
    margin-bottom: 6px;
  }
  
  .footer-col p,
  .footer-col a {
    font-size: 11px;
    margin-bottom: 3px;
  }
}

/* 4. AJUSTES ADICIONALES PARA MEJOR UX MOBILE */
@media (max-width: 768px) {
  /* Contact section más compacta */
  .contact {
    padding: 50px 15px;
  }
  
  .contact-container {
    gap: 25px;
  }
  
  .contact-data {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  /* Info items más compactos */
  .info-item {
    padding: 8px 5px;
    flex-direction: row; /* Mantener horizontal en lugar de vertical */
    align-items: flex-start;
  }
  
  .data {
    margin-left: 12px;
    margin-top: 0;
  }
  
  .contact-icon {
    font-size: 16px;
    margin-top: 2px;
  }
  
  .contact-data h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .contact-data h4 {
    font-size: 14px;
    margin-bottom: 4px;
  }
  
  .data p {
    font-size: 13px;
    line-height: 1.3;
  }
}

/* 5. MEJORAS GENERALES PARA LA CONSISTENCIA VISUAL */
@media (max-width: 480px) {
  /* Slogan más compacto */
  .slogan {
    font-size: 16px;
    padding: 0 5px;
    margin-bottom: 20px;
  }
  
  /* Contact data más eficiente */
  .contact-data {
    padding: 12px;
  }
  
  .contact-data h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .info-item {
    padding: 6px 3px;
  }
  
  .data h4 {
    font-size: 13px;
    margin-bottom: 2px;
  }
  
  .data p {
    font-size: 12px;
  }
}

