@charset "utf-8";
/* CSS Document */

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
  padding:0; 
  margin:0; 
}

/* Titulares */
h1, h2 {
  font-family: 'Playfair Display', serif;
  color: #111;
  margin-bottom: 1rem;
}


.contenedor { width:100%; max-width:980px; margin:auto; }


.topLogo {
	display:grid;	
	grid-template-columns: repeat(3, 1fr);
}

.logo { text-align:lef; padding:20px 15px; } 

.redes { padding:35px 15px; text-align:center; }

.carruselPromo img {
	border-radius: 12px;
	display: block;
}

.menu-prinZone {
	background-color:#fbeb00;
	color:#000;
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;	
}

h1, h2, h3, h4 {
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
}

p { font-family: "Oswald", sans-serif; font-weight:lighter; }


.separador { height:33px; margin:10px 0; background-image:url(../imagenes/separador.jpg); background-position:top left; background-repeat:repeat-x; }


/* Navbar base */
.navbar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #fbeb00;
  color: #000;
  padding: 1rem;
  font-weight: bold;
}

/* En desktop */
.nav-links {
  list-style: none;
  display: flex;
  gap: 3rem;
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

.nav-links li a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #001b7a;
}

.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
}

/* ------------- */ 

.pieZone { 	background-color:#001489;
	color:#FFF;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px; 
}

.redesPie { padding:20px; text-align:center; }
.piePagina {

	grid-template-columns: 2fr 1fr 1fr;	
	display:grid;
	
}
.piePagina h1, .piePagina h2{
	color:#ffff00;
}

.piePagina h1 { font-size:2 rem; }

.piePagina div { padding:15px; }

.piePagina ul { list-style:circle; margin:0 0 0 20px; } 

.footer-link {
  color: #ffffff; /* Blanco */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffeb80; /* Amarillo claro */
}




/* Responsive */
@media (max-width: 768px) {
  .navbar {
    align-items: stretch;
  }

  .nav-links {
    flex-direction: column;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    width: 100%;
    margin-top: 0;
  }

  .nav-links.show {
    max-height: 500px; /* lo suficiente para mostrar todos los enlaces */
  }

  .hamburger {
    display: block;
    align-self: flex-end;
  }

  .hero-content.two-columns {
    flex-direction: column-reverse;
    text-align: center;
  }
  .topLogo {
	grid-template-columns: repeat(1, 1fr);	  
  }
  
  .logo { text-align:center; } 

	.piePagina { grid-template-columns: 1fr }
  
}


/* Mapa ubicación */ 

.mapa-sucursales {
  padding: 2rem;
  background-color: #f5f5f5;
  text-align: center;
}

.mapa-sucursales h2 {
  color: #003366; /* Azul corporativo */
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.mapa-contenedor {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Relación 16:9 para responsive */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mapa-contenedor iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* /Mapa ubicacion */

/*Btn ver más promocs */


.btn-ver-masPromos {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background-color: #001b7a; /* Azul corporativo */
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-ver-masPromos:hover {
  background-color: #fbeb00; /* Amarillo corporativo */
  color: #001b7a;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
