/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
}
.text-orange {
  color: #ff6f00; /* naranja */
  text-shadow: -1px -1px 0 #000,  
               1px -1px 0 #000,
              -1px  1px 0 #000,
               1px  1px 0 #000; /* borde negro */
}

/* Barra informativa superior *//* Barra informativa superior */
.barra-info {
  background-color: #222;
  padding: 10px 0;
  font-size: 1rem;
  position: fixed;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
}

.barra-info a {
  color: #ff6f00;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.barra-info a:hover {
  color: #fff;
}
/* Franja naranja superior */
.franja-naranja {
  background-color: #ff6f00;
  height: 60px;
  width: 100%;
}

/* Hero con fondo personalizado */
.hero {
  background-image: url('../images/fondo.webp'); 
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
}

/* Capa oscura para contraste */
.hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  max-width: 600px;
  padding: 40px;
  border-radius: 12px;
}

/* Botón tipo banner */
.btn-banner {
  display: inline-block;
  background-color: #111;
  color: #ff6f00;
  border: 2px solid #ff6f00;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-banner:hover {
  background-color: #ff6f00;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

.btn-banner:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Títulos y texto en hero */
.hero-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero-overlay .btn-banner {
  margin-bottom: 16px; /* Ajustá según lo que necesites */
}

.hero-overlay p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 30px;
}

/* Responsivo */
@media (max-width: 576px) {
  .barra-info {
    flex-direction: row;
    padding: 8px 0;
  }


 /* barra de iconos */
.barra-info {
  display: flex;
  flex-wrap: wrap;        /* permite varias filas */
  justify-content: center;/* centra los ítems en cada fila */
}

.barra-info a {
  flex: 0 0 calc(33.333% - 10px); /* tres ítems por fila */
  text-align: center;
  margin: 5px;
  font-size: 0.8rem;
  padding: 1px;
  white-space: normal;
  word-wrap: break-word;
}

.barra-info a.doble {
  flex: 0 0 35%;          /* cada uno ocupa 40% del ancho */
  margin: 5px;            /* margen uniforme */
}


  .hero-overlay h1 {
    font-size: 2rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }

  .btn-banner {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}
