@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
body{
    font-family: "Barlow", sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
  .navbar {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #ff0000;
    padding: 10px 60px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
  }

  /* Pestañas centradas */
  .tabs {
    display: flex;
    justify-content: center ; 
    gap: 20px;
    position: relative; 
  }

  .tabs .tab-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    z-index: 2;
    text-decoration: none; /* importante para enlaces */
    font-family: "Barlow", sans-serif;
  }

  .tabs .tab-btn:hover,
  .tabs .tab-btn.active {
    border-color: #ffffff;
    color: #ffffff;
  }

    .tabs-container {
      position: relative;
    }

  .tab-content {
    display: none;
    position: absolute;
    top: 100%; 
    left: 0;
    width: 100vw; 
    background: rgba(255,255,255,0.98);
    padding: 20px 60px;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    z-index: 1;
  }

  .tabs-container:hover .tab-content {
    display: grid;
  }

  .tab-content:not(.active) {
    display: none !important;
  }

  .tab-content a {
    background: #f9f9f9;
    padding: 12px 15px;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: background-color 0.2s;
    white-space: nowrap;
  }

  .tab-content a:hover {
    background: #e0e0e0;
  }
  #megaOverlay {
  width: 100vw;
  padding: 40px 60px;
  box-sizing: border-box;
  overflow-x: hidden; 
}
/* header top */
.barra-contacto {
  background-color: #f1f1f1;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.contenedor-contacto {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.contacto-izquierda span {
  margin-right: 20px;
}

.barra-contacto i {
  color: #BE1704;
  margin-right: 6px;
}

.menu-derecha a {
  margin-left: 20px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu-derecha a:hover {
  color: #BE1704;
}
/* header */
