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

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #2c3e3f;
      background-color: #a6c7bb;
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    /* Contenedor central */
    .container {
      width: 90%;
      max-width: 1100px;
      margin: 0 auto;
    }

    /* ================= */
    /* NAVEGACIÓN RESPONSIVE */
    /* ================= */
    header {
      background: rgba(209, 213, 219, 0.9);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 1px 6px rgb(0 0 0 / 0.12);
      padding: 0.1rem 0;
      backdrop-filter: blur(5px);
    }

    nav {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      padding: 0 1rem;
      gap: 0.5rem;
    }

    .logo {
      height: 80px;
      width: auto;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .logo:hover {
      transform: scale(1.05);
    }

    .menu {
      list-style: none;
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin: 0 auto;
    }

    .menu li a {
      color: #6b7280;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.05rem;
      padding: 0.25rem 0.5rem;
      position: relative;
      transition: color 0.3s ease;
    }

    .menu li a:hover,
    .menu li a:focus {
      color: #336667;
      background-color: transparent;
      outline: none;
    }

    .menu li a.active {
      color: #336667;
    }

    .menu li a.active::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 50%;
      transform: translateX(-50%);
      width: 60%;
      height: 2px;
      background-color: #336667;
      animation: underline 0.3s ease-out forwards;
    }

    @keyframes underline {
      from {
        width: 0;
      }
      to {
        width: 60%;
      }
    }

    .btn-vendedor {
      padding: 0.1rem 1rem;
      background-color: #336667;
      color: white;
      text-decoration: none;
      border-radius: 30px;
      font-weight: 700;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      box-shadow: 0 3px 6px rgba(10, 74, 140, 0.3);
      white-space: nowrap;
      border: 2px solid #336667;
      text-align: center;
    }

    .btn-vendedor:hover {
      background-color: transparent;
      color: #336667;
      transform: translateY(-2px);
    }

    /* MENÚ HAMBURGUESA PARA MÓVILES */
    .menu-toggle {
      display: none;
      background: transparent;
      border: none;
      font-size: 1.8rem;
      color: #336667;
      cursor: pointer;
      padding: 10px;
    }

    /* BOTON FLOTANTE WHATSAPP*/
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25d366;
      color: white;
      border-radius: 50%;
      width: 55px;
      height: 55px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.3);
      font-size: 28px;
      z-index: 1000;
      transition: background-color 0.3s ease;
      text-decoration: none;
    }

    .whatsapp-float:hover {
      background-color: #1ebe57;
    }
    
    @media (max-width: 768px) {
  .whatsapp-float {
    display: none !important;   /* ocultar visualmente */
    visibility: hidden !important;  /* invisible */
    opacity: 0 !important;           /* transparente */
    pointer-events: none !important; /* no clickeable */
  }
}
    /* BOTON FLOTANTE CATALOGO */
    .btn-flotante-catalogo {
      position: fixed;
      top: 50px;
      right: 20px;
      background-color: #007bff;
      color: white;
      padding: 12px 18px;
      border-radius: 30px;
      font-weight: 600;
      font-family: 'Montserrat', sans-serif;
      font-size: 16px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      z-index: 1000;
      transition: background-color 0.3s ease;
    }

@media (max-width: 768px) {
  .btn-flotante-catalogo {
    display: none !important;   /* ocultar visualmente */
    visibility: hidden !important;  /* invisible */
    opacity: 0 !important;           /* transparente */
    pointer-events: none !important; /* no clickeable */
  }
}

    
    .btn-flotante-catalogo:hover {
      background-color: #0056b3;
    }
    
    .btn-flotante-catalogo i {
      font-size: 20px;
    }

    /* ================= */
    /* HERO SECTION */
    /* ================= */
    .hero {
      position: relative;
      height: 100vh;
      margin-bottom: 3rem;
      overflow: hidden;
      color: #dbe6e4;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .carousel {
      position: absolute;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100%;
      z-index: 1;
      overflow: hidden;
    }

    .carousel-slide {
      position: absolute;
      width: 100vw;
      height: 100%;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .carousel-slide.active {
      opacity: 1;
      z-index: 2;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: #fff;
      font-size: 2.5rem;
      font-weight: 700;
      cursor: pointer;
      user-select: none;
      z-index: 3;
      padding: 0 0.3rem;
      transition: color 0.3s ease;
    }

    .carousel-btn:hover {
      color: #79a3a1;
    }

    .carousel-btn.prev {
      left: 20px;
    }

    .carousel-btn.next {
      right: 20px;
    }

    .hero-content {
      position: relative;
      z-index: 4;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      padding: 0 1rem;
    }

    .hero-content h1 {
      font-size: 3.5rem;
      margin-bottom: 1rem;
      font-weight: 900;
      letter-spacing: 3px;
      text-transform: uppercase;
    }

    .hero-content p {
      font-size: 1.3rem;
      font-weight: 600;
      max-width: 800px;
      margin: 0 auto;
    }

    /* ================= */
    /* SECCIONES GENERALES */
    /* ================= */
    section {
      padding: 3rem 0;
    }

    h2 {
      text-align: center;
      margin-bottom: 2rem;
      color: #336667;
      font-size: 2.2rem;
      font-weight: 700;
      letter-spacing: 1px;
    }

    /*BOTON CATALOGO SECTION*/
    .section-boton-flotante {
  position: relative; /* para que el botón pueda posicionarse respecto a esta sección si querés */
  height: 100px; /* ajustá la altura que necesites */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5; /* un fondo suave para diferenciar la sección */
}

.btn-flotante {
  background-color: #007bff;
  color: white;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}

.btn-flotante:hover {
  background-color: #0056b3;
}

    /* ================= */
    /* SECCIÓN DE MARCAS */
    /* ================= */
    #marcas {
      padding: 0;
      background-color: #f4f7f6;
      width: 100%;
      margin: 0;
    }

    #marcas img {
      display: block;
      width: 100%;
      height: auto;
      margin: 0 auto;
    }

    /* ================= */
    /* SECCIÓN DE NEGOCIOS */
    /* ================= */
    .negocios {
      max-width: 1100px;
      margin: 0 auto 1.7rem auto;
      padding: 0 1rem;
    }

    .negocios h2 {
      text-align: center;
      font-size: 2.4rem;
      font-weight: 900;
      color: #336667;
      margin-bottom: 2.5rem;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .negocios-lista {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .negocio-item {
      position: relative;
      flex: 1 1 45%;
      height: 320px;
      background-size: cover;
      background-position: center;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
    }

    .negocio-item:hover {
      transform: scale(1.02);
    }

    .negocio-overlay {
      position: absolute;
      inset: 0;
      background-color: rgba(0,0,0,0.45);
      transition: background-color 0.3s ease;
    }

    .negocio-item:hover .negocio-overlay {
      background-color: rgba(0,0,0,0.25);
    }

    .negocio-texto {
      position: relative;
      color: white;
      text-align: center;
      padding: 1rem 2rem;
      max-width: 90%;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .negocio-logo {
      height: 60px;
      margin-bottom: 0.5rem;
      object-fit: contain;
    }

    .negocio-logo-buhl {
      height: 120px;
      margin-bottom: 0.5rem;
      object-fit: contain;
    }

    .negocio-logo-baggio {
      height: 90px;
      margin-bottom: 0.5rem;
      object-fit: contain;
    }

    .negocio-logo-penon {
      height: 90px;
      margin-bottom: 0.5rem;
      object-fit: contain;
    }

    .negocio-logo-espert {
      height: 165px;
      margin-bottom: 0.5rem;
      object-fit: contain;
    }

    .negocio-texto p {
      font-size: 1.1rem;
      font-weight: 600;
      line-height: 1.4;
    }

    .btn-negocio {
      padding: 0.6rem 2rem;
      background-color: #336667;
      color: white;
      text-decoration: none;
      border-radius: 30px;
      font-weight: 700;
      font-size: 1rem;
      transition: all 0.3s ease;
      box-shadow: 0 3px 6px rgba(10, 74, 140, 0.5);
    }

    .btn-negocio:hover {
      background-color: #294f4e;
      transform: translateY(-2px);
      box-shadow: 0 5px 10px rgba(10, 74, 140, 0.6);
    }

    /* ======================= */
    /* SECCIÓN SOBRE NOSOTROS  */
    /* ======================= */
    #sobre-nosotros {
      width: 100%;
      padding: 80px 0;
      background: #1a3a5f;
      color: #ffffff;
      position: relative;
      overflow: hidden;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    #sobre-nosotros .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 2;
    }

    #sobre-nosotros h2 {
      font-size: 2.8rem;
      font-weight: 700;
      text-transform: uppercase;
      color: #ffffff;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 15px;
      text-align: center;
      letter-spacing: 2px;
    }

    #sobre-nosotros h2::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      height: 4px;
      background: linear-gradient(to right, #00cc66, #009933);
      border-radius: 2px;
    }

    #sobre-nosotros p {
      font-size: 1.15rem;
      color: #e0e7ff;
      margin-bottom: 25px;
      line-height: 1.8;
      text-align: center;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    #sobre-nosotros .features-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin: 50px 0;
    }

    #sobre-nosotros .feature-box {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 30px;
      width: 300px;
      text-align: center;
      transition: all 0.3s ease;
      backdrop-filter: blur(5px);
    }

    #sobre-nosotros .feature-box:hover {
      transform: translateY(-10px);
      background: rgba(0, 204, 102, 0.15);
      border-color: rgba(0, 204, 102, 0.3);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

    #sobre-nosotros .feature-icon {
      font-size: 3rem;
      margin-bottom: 20px;
      color: #00cc66;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    #sobre-nosotros .feature-title {
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 15px;
      color: #ffffff;
    }

    #sobre-nosotros .feature-desc {
      font-size: 1rem;
      color: #cbd5e1;
    }

    #sobre-nosotros .stats-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
      margin: 40px 0 30px;
    }

    #sobre-nosotros .stat-item {
      text-align: center;
    }

    #sobre-nosotros .stat-value {
      font-size: 3.5rem;
      font-weight: 700;
      color: #00cc66;
      margin-bottom: 10px;
      line-height: 1;
      text-shadow: 0 5px 15px rgba(0, 204, 102, 0.3);
    }

    #sobre-nosotros .stat-label {
      font-size: 1.1rem;
      color: #e0e7ff;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
    }

    #sobre-nosotros .btn-container {
      text-align: center;
      margin-top: 40px;
    }

    #sobre-nosotros .btn-productos {
      display: inline-block;
      background: linear-gradient(135deg, #00cc66 0%, #009933 100%);
      color: white;
      padding: 18px 45px;
      font-size: 1.2rem;
      font-weight: 600;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 5px 20px rgba(0, 204, 102, 0.4);
      letter-spacing: 1.5px;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    #sobre-nosotros .btn-productos::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0%;
      height: 100%;
      background: linear-gradient(135deg, #00e673 0%, #00b33c 100%);
      transition: all 0.5s ease;
      z-index: -1;
    }

    #sobre-nosotros .btn-productos:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 204, 102, 0.6);
    }

    #sobre-nosotros .btn-productos:hover::before {
      width: 100%;
    }

    #sobre-nosotros .btn-productos i {
      margin-left: 10px;
      transition: transform 0.3s ease;
    }

    #sobre-nosotros .btn-productos:hover i {
      transform: translateX(8px);
    }

    /* ======================= */
    /* SECCIÓN ZONAS DE COBERTURA */
    /* ======================= */
    #zonas {
      width: 100%;
      padding: 80px 0;
      background: #1a3a5f;
      color: #ffffff;
      position: relative;
      overflow: hidden;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    #zonas .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 2;
    }

    #zonas h2 {
      font-size: 2.8rem;
      font-weight: 700;
      text-transform: uppercase;
      color: #ffffff;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 15px;
      text-align: center;
      letter-spacing: 2px;
    }

    #zonas h2::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      height: 4px;
      background: linear-gradient(to right, #00cc66, #009933);
      border-radius: 2px;
    }

    #zonas p {
      font-size: 1.15rem;
      color: #e0e7ff;
      margin-bottom: 25px;
      line-height: 1.8;
      text-align: center;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .zonas-columns {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .zona-col {
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 16px;
      padding: 30px;
      text-align: center;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
      position:relative;
      overflow: hidden;
      cursor: default;
    }

    .zona-col:hover {
      transform: translateY(-10px);
      background: rgba(0, 204, 102, 0.20);
      border-color: rgba(0, 204, 102, 0.4);
      box-shadow: 0 20px 40px rgba(0, 204, 102, 0.3);
      cursor: pointer;
    }
    
    .zona-col ul {
      list-style: none;
      text-align: center;
    }
    
    .zona-col li {
      padding: 10px 0;
      font-size: 1.1rem;
      color: #cbd5e1;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
    }
    
    .zona-col li:last-child {
      border-bottom: none;
    }
    
    .zona-col li:hover {
      color: #00cc66;
      transform: translateX(5px);
    }

    .cobertura-info {
      background: linear-gradient(135deg, #00cc66 0%, #009933 100%);
      color: white;
      padding: 3rem;
      border-radius: 15px;
      max-width: 800px;
      margin: 50px auto 0;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      position: relative;
      overflow: hidden;
    }

    .cobertura-info h3 {
      font-size: 1.8rem;
      margin-bottom: 1.2rem;
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .cobertura-info p {
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto 1.5rem;
      opacity: 0.9;
      line-height: 1.6;
      position: relative;
      z-index: 2;
      text-align: center;
    }

.map-container {
  /* Establece la posición relativa para que el iframe se posicione dentro de este div */
  position: relative;
  /* Ancho 100% para ocupar todo el espacio disponible */
  width: 100%;
  /* Usa padding-bottom para crear un espacio que mantiene la proporción del mapa. 
  Calcula esto dividiendo la altura original (480) entre el ancho original (640) = 0.75 */
 
  /* Oculta cualquier contenido que se desborde */
  overflow: hidden;
}

.map-container iframe {
  /* Posición absoluta para ocupar todo el contenedor */
  position: absolute;
  /* El iframe ocupa todo el espacio del contenedor */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ======================= */
    /* SECCIÓN CONTACTO */
    /* ======================= */
    .contact {
      padding: 5rem 0;
      background: #a6c7bb;
      width: 100%;
      max-width: 100vw;
      overflow: hidden;
    }

    .contact .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    /* Título */
    .contact h2 {
      text-align: center;
      font-size: 2.8rem;
      font-weight: 800;
      color: #294f4e;
      margin-bottom: 3rem;
      position: relative;
      letter-spacing: 1px;
    }

    .contact h2::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 5px;
      background: linear-gradient(to right, #336667, #79a3a1);
      border-radius: 3px;
    }

    /* Contenedor del formulario */
    #contact-form {
      max-width: 800px;
      margin: 0 auto;
      background: white;
      padding: 3rem;
      border-radius: 20px;
      box-shadow: 0 20px 50px rgba(41, 79, 78, 0.2);
      position: relative;
      overflow: hidden;
    }

    /* Grupos de campos */
    .form-group {
      margin-bottom: 2.5rem;
      position: relative;
    }

    /* Etiquetas */
    #contact-form label {
      display: block;
      margin-bottom: 0.8rem;
      font-weight: 600;
      color: #294f4e;
      font-size: 1.15rem;
      padding-left: 1.5rem;
      position: relative;
    }

    /* Campos de entrada */
    #contact-form input,
    #contact-form textarea {
      width: 100%;
      padding: 1.2rem 1.5rem;
      border: 2px solid #d1e0e0;
      border-radius: 12px;
      font-size: 1.05rem;
      resize: vertical;
      color: #294f4e;
      transition: all 0.4s ease;
      background-color: #f8fbfb;
      font-weight: 500;
      box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    #contact-form input:focus,
    #contact-form textarea:focus {
      outline: none;
      border-color: #79a3a1;
      background-color: white;
      box-shadow: 0 0 0 4px rgba(121, 163, 161, 0.3);
    }

    #contact-form textarea {
      min-height: 180px;
    }

    /* Botón de envío */
    .btn-primary {
      display: block;
      width: 100%;
      padding: 1.3rem;
      background: linear-gradient(to right, #336667, #294f4e);
      color: white;
      border: none;
      border-radius: 12px;
      font-size: 1.2rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.4s ease;
      box-shadow: 0 5px 20px rgba(51, 102, 103, 0.4);
      position: relative;
      overflow: hidden;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    /* ================= */
    /* FOOTER */
    /* ================= */
    footer {
      background: linear-gradient(to right, #1f3d3c, #294f4e);
      color: #d1e0e0;
      padding: 4rem 0 1.5rem;
      font-size: 0.95rem;
      position: relative;
      overflow: hidden;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 2;
    }

    .footer-col {
      padding: 0 15px;
      display: flex;
      flex-direction: column;
    }

    .logo-col {
      align-items: center;
      justify-content: center;
    }

    .footer-logo {
      height: 100px;
      width: auto;
      filter: brightness(0) invert(1);
      transition: transform 0.3s ease;
      margin-bottom: 1.5rem;
    }

    .footer-col h3 {
      color: #fff;
      margin-bottom: 1.5rem;
      font-size: 1.3rem;
      position: relative;
      padding-bottom: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    .footer-col h3::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 50px;
      height: 3px;
      background-color: #79a3a1;
      border-radius: 2px;
    }

    .footer-col p {
      margin-bottom: 1rem;
      line-height: 1.7;
      display: flex;
      align-items: flex-start;
    }

    .footer-col i {
      margin-right: 12px;
      color: #79a3a1;
      width: 20px;
      text-align: center;
      font-size: 1.1rem;
      min-width: 20px;
      margin-top: 4px;
    }

    /* Estilos para la tabla de horarios */
    .schedule-container {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 10px;
    }

    .schedule-days {
      font-weight: 600;
      color: #79a3a1;
    }

    /* Estilos para los enlaces de redes sociales */
    .social-links {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      margin-top: 1rem;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      text-decoration: none;
    }

    .social-links a i {
      color: #d1e0e0;
      font-size: 1.3rem;
      transition: all 0.3s ease;
      position: relative;
      z-index: 2;
      margin: 0;
    }

    /* Footer inferior */
    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      margin-top: 1rem;
      grid-column: 1 / -1;
    }

    /* ================= */
    /* RESPONSIVE GENERAL */
    /* ================= */
    @media (max-width: 1200px) {
      .negocio-item {
        height: 280px;
      }
      
      .hero-content h1 {
        font-size: 3rem;
      }
    }

    @media (max-width: 992px) {
      nav {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
      }
      
      .menu {
        display: none;
        grid-column: 1 / -1;
        order: 3;
        padding: 1rem 0;
        justify-content: space-around;
        gap: 1rem;
        flex-direction: column;
        width: 100%;
      }
      
      .menu.active {
        display: flex;
      }
      
      .btn-vendedor {
        justify-self: end;
      }
      
      .menu-toggle {
        display: block;
        justify-self: end;
      }
      
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .logo-col {
        grid-column: 1 / -1;
        text-align: center;
      }
      
      .footer-logo {
        margin: 0 auto 1.5rem;
      }
      
      .social-links {
        justify-content: center;
      }
      
      .zonas-columns {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .negocios-lista {
        flex-direction: column;
      }
      
      .negocio-item {
        flex: 1 1 100%;
        height: 280px;
      }
    }

    @media (max-width: 768px) {
      .hero {
        height: 70vh;
      }
      
      .hero-content h1 {
        font-size: 2.4rem;
      }
      
      .hero-content p {
        font-size: 1rem;
      }
      
      #marcas {
        padding: 1rem 0;
      }
      
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .footer-col {
        text-align: center;
        padding: 0 10px;
        align-items: center;
      }
      
      .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
      }
      
      .footer-col p {
        justify-content: center;
      }
      
      .social-links {
        justify-content: center;
      }
      
      .footer-bottom {
        padding-top: 1.5rem;
      }
      
      #contact-form {
        padding: 2rem;
      }
      
      .form-group {
        margin-bottom: 2rem;
      }
      
      .btn-primary {
        padding: 1.1rem;
      }
      
      .zonas-columns {
        grid-template-columns: 1fr;
      }
      
      .cobertura-info {
        padding: 2rem;
      }
      
      .negocio-logo-espert {
        height: 120px;
      }
    }

    @media (max-width: 576px) {
      .menu li {
        text-align: center;
        padding: 10px 0;
      }
      
      .btn-vendedor {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
      }
      
      .hero-content h1 {
        font-size: 2rem;
      }
      
      .hero {
        height: 60vh;
      }
      
      .contact h2 {
        font-size: 2rem;
      }
      
      #contact-form {
        padding: 1.8rem 1.5rem;
      }
      
      #contact-form label {
        font-size: 1.05rem;
      }
      
      #contact-form input,
      #contact-form textarea {
        padding: 1rem;
        font-size: 1rem;
      }
      
      .btn-primary {
        padding: 1rem;
        font-size: 1.1rem;
      }
      
      .cobertura-info {
        padding: 1.5rem;
      }
      
      .cobertura-info h3 {
        font-size: 1.5rem;
      }
      
      footer {
        padding: 3rem 0 1rem;
      }
      
      .footer-col h3 {
        font-size: 1.2rem;
      }
      
      .footer-logo {
        height: 85px;
      }
      
      .social-links a {
        width: 42px;
        height: 42px;
      }
      
      .social-links a i {
        font-size: 1.2rem;
      }
    }

    @media (max-width: 480px) {
      #contact-form {
        padding: 1.5rem;
      }
      
      #contact-form input,
      #contact-form textarea {
        padding: 0.9rem;
      }
      
      .btn-primary {
        padding: 1rem;
        font-size: 1rem;
      }
      
      .hero-content h1 {
        font-size: 1.8rem;
      }
      
      .hero-content p {
        font-size: 0.95rem;
      }
    }