/* Estilos globales */
* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Header con overlay */
.index-header {
  position: relative;
  background: url("../img/header.webp") center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.index-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* overlay oscuro */
  z-index: 1;
}

.index-header h1,
.index-header p {
  position: relative;
  z-index: 2;
}

/* Logotipo */
.logotipo {
  width: 8rem;
  height: auto;
}

/* Secciones principales */
.nuestra-empresa {
  font-size: 1.3rem;
  text-align: center;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
}

.somos {
  background-color: rgba(144, 143, 143, 0.35);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

/* Imágenes */
.fotos {
  width: 100%;
  height: 25rem;
  object-fit: cover;
  border-radius: 10px;
}

/* Footer */
footer {
  background-color: #212529; /* gris oscuro de Bootstrap */
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}

.logo-enlace {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  margin: 0 0.5rem;
  transition: transform 0.2s ease-in-out;
}

.logo-enlace:hover {
  transform: scale(1.1);
}

