/* ====== PÁGINA CONTACTO ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

/* Centrar el contenido debajo del header */
.contenido-contacto {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 20px 60px; /* deja espacio al header */
  background-color: #fff;
}

/* Tarjeta con el texto de contacto */
.card-contacto {
  max-width: 600px;
  width: 100%;
  background: #f0f0f0;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.459);
  text-align: center;
}

/* Lista de métodos de contacto */
.lista-contacto {
  list-style: none;
  margin: 30px 0 20px;
  padding: 0;
  font-size: 15px;
  line-height: 1.8;
}

/* Subtexto con opacidad baja */
.subtexto-contacto {
  font-size: 13px;
  color: #000;
  opacity: 0.55;  /* ← ajusta para más/menos transparencia */
}

/* HEADER FIJO */
.encabezado {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: red;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.contenido-encabezado {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo {
  height: 50px;
}

/* BOTÓN HAMBURGUESA */
.hamburguesa {
  position: absolute;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: white;
}

/* MENÚ LATERAL DESPLEGABLE */
.menu-lateral {
  font-family:  sans-serif;
  height: 100%;
  width: 250px;
  background-color: #000000; /* CAMBIA EL COLOR DE FONDO ACÁ */
  position: fixed;
  top: 0;
  right: -250px;
  transition: right 0.3s ease;
  z-index: 9999;
  padding-top: 60px;
}

.menu-lateral a {
  padding: 15px 25px;
  display: block;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.menu-lateral a:hover {
  background-color: #850000; /* COLOR AL PASAR EL MOUSE */
}

.menu-lateral .cerrar {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: white;
}