body {
  font-family: Arial, sans-serif;
  background-color: #005799;
  color: #333;
}

/**header***/
/***
body {
  margin: 0;
  font-family: Arial, sans-serif;
}
**/
header {
  background-color: yellow;
  padding: 10px 20px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px; /* Ajusta el tamaño del logo según sea necesario */
  margin-right: 10px;
}

.company-name {
  font-size: 1.5em;
  font-weight: bold;
  color: #005799;
}

nav {
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  font-weight: bold;
}

.nav-links a {
  text-decoration: none;
  color: #005799;
}

.menu-icon {
  display: none;
  font-size: 1.5em;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: yellow;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}

/*****/

section {
  background-color: #fff;
  margin: 20px;
  padding: 20px;
}

.contact-button {
  background-color: #005799;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px;
}
.productos {
  background-color: #fff;
  margin: 20px;
  padding: 20px;
}

.productos h2 {
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

.productos-scroll {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
}

.productos-scroll img {
  width: 200px;
  height: 200px;
  margin-right: 10px;
  scroll-snap-align: start;
}
/*seccion emprende con nosotros**/
#emprendamos {
  text-align: center;
  padding: 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.column {
  flex: 1 1 30%;
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 5px;
  margin: 10px;
  box-sizing: border-box;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #005799;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
  .column {
    flex: 1 1 45%;
  }
}

@media (max-width: 480px) {
  .column {
    flex: 1 1 100%;
  }
}

/*seccion mapa**/
#locales {
  text-align: center;
  padding: 20px;
}

#mapa {
  width: 100%;
  max-width: 640px;
  height: 0;
  padding-bottom: 75%;
  position: relative;
  margin: 20px auto; /* Centrar el mapa */
}

#mapa iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#locales p {
  margin-top: 10px;
}

/*Redes sosciales**/
.redes-Sociales {
  text-align: center;
}

.redes {
  margin-top: 20px;
}

.redes a {
  display: inline-block;
  margin: 0 10px;
}

.redes a img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s;
}

.redes a img:hover {
  transform: scale(1.2);
}
