* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', sans-serif;
  background-color: #ffffff;
  color: #110B11;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #ffffff;
  display: flex;
  justify-content: center; /* Centramos el contenido principal */
  align-items: center;
  padding: 0 2rem;
  z-index: 1000;
}

.logo {
  position: absolute; /* Lo sacamos del flujo para que no afecte el centrado */
  left: 2rem;
}

.logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #0E3166;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link.active {
  color: #E06D06;
}


/* BOTON CAMBIO DE IDIOMA ES */

.lang-selector {
  position: absolute;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 500;
  color: #0E3166;
  transition: opacity 0.3s;
}

.lang-selector img {
  height: 20px;
  width: 20px;
}

.lang-selector:hover {
  opacity: 0.7;
}

/* SECCION 1 Y 2 */

.about-banner {
  background-color: #0E3166;
  color: #ffffff;
  padding: 5rem 2rem;
  text-align: center;
}

.about-banner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-banner-content p {
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto;
}

/* SECCION 1 */
.about-banner {
  background-color: #0E3166;
  color: #ffffff;
  padding: 5rem 2rem;
  text-align: center;
}

.about-banner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-banner-content p {
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto;
}

/* Sección galería de productos */
.product-gallery {
  padding: 4rem 2rem;
  background-color: #ffffff;
  text-align: center;
}

.product-gallery h2 {
  font-size: 2rem;
  color: #003D73;
  margin-bottom: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-item {
  background-color: #F5F9FC;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.product-item:hover {
  transform: translateY(-5px);
}

.product-item img {
  width: 100%;
  max-width: 180px;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.product-item p {
  font-size: 1rem;
  color: #0E3166;
  font-weight: 500;
}



/* FOOTER */

.custom-footer {
  background-color: #0E3166;
  color: #ffffff;
  padding: 4rem 2rem;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand,
.footer-links,
.footer-contact {
  flex: 1 1 28%;
  min-width: 250px;
}

.footer-brand h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.footer-brand p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.social-icons a {
  display: inline-block;
  margin-right: 1rem;
}

.social-icons img {
  height: 28px;
  width: 28px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.footer-links h4,
.footer-contact h4 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: text-decoration 0.3s ease;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.enlace {
  color: white;
}