/* =========================
   RESET BÁSICO
========================= */
body,header,main {
  margin: 0;
  padding: 0;
  background-color: #dad1d1;
}

/* =========================
   FUENTES
========================= */

@font-face {
  font-family: 'Glacial Indifference';
  src: url('https://raw.githubusercontent.com/google/fonts/main/ofl/glacialindifference/GlacialIndifference-Regular.ttf')
    format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* =========================
   BARRA SUPERIOR
========================= */
.barra-superior {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  gap: 15px;
}

/* Logo */
.logo {
  font-family: 'Marcellus', serif;
  display: flex;
  align-items: center;
  color: rgb(0, 0, 0);
  gap: 10px;
  font-size: 18px;
}

/* =========================
   MENÚ
========================= */
.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu a {
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
  padding: 12px 20px;
  color: rgb(0, 0, 0);
  border: 1px solid rgb(93, 55, 55);
  border-radius: 12px;
  font-size: 14px;
  display: inline-block;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.menu a:hover {
  transform: scale(1.1);
  background-color: rgba(156, 82, 82, 0.46);
  color: #000000;
  border-color: #ab2a2a;
}

/* =========================
   SECCIÓN PRINCIPAL
========================= */
.principal {
  margin: 0;
  padding: 0 40px;
  max-width: 800px;
}

.principal h1 {
  font-weight: normal;
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.principal p {
  font-family: 'Glacial Indifference', sans-serif;
  margin-top: 30px;
  margin-bottom: 30px;
  line-height: 1.6;
  font-size: 22px;
}

.principal ul {
  margin: 10px 0 30px 20px;
  line-height: 1.6;
  font-size: 23px;
}

.principal a {
  font-family: 'Arimo', sans-serif;
  text-decoration: none;
  display: inline-block;
  padding: 18px 20px;
  background-color: #2e5984;
  color: rgb(255, 255, 255);
  border-color: rgb(0, 0, 0);
  border-radius: 12px;
  font-size: 20px;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.principal a:hover {
  transform: scale(1.1);
  background-color: #4c5aa6aa;
  color: rgb(4, 0, 0);
  border-color: rgb(0, 0, 0);
}

/* =========================
   BOTÓN HAMBURGUESA
========================= */
.hamburguesa {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: rgb(0, 0, 0);
  cursor: pointer;
  z-index: 3;
}
/* =========================
    FOOTER
  ========================= */
  .footer {
  padding: 10px 20px;
  text-align: left;
}

.footer-icons {
  display: inline-flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
}

.footer-icons .icon-link img {
  width: 30px;
  height: 30px;
  filter: grayscale(100%); /* Los deja en escala de grises */
  transition: filter 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.footer-icons .icon-link:hover img {
  filter: none; /* Color original al pasar el mouse */
  transform: scale(1.1);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
  }

  .menu.show {
    display: flex;
  }

  .menu a {
    padding: 10px;
    border-radius: 8px;
    display: block;
    text-align: center;
  }

  .hamburguesa {
    display: block;
  }
}
