/* === CONTACT PAGE === */
body.contact {
  background-color: #670627;
  color: #E6D1D0;
  font-family: 'League Spartan', sans-serif;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: block;
}

/* HEADER */
header {
  position: relative;
  padding: 24px 40px 10px;
}

header nav ul {
  list-style: none;
  display: flex;               
  justify-content: space-between; 
  align-items: center;
  margin: 0 0 10px 0;
  padding: 0;
  width: 100%;
}

header nav li {
  display: inline-block;       
  text-align: center;
}

header nav a {
  text-decoration: none;
  color: #E6D1D0;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 8px 6px;
}

header .line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 1px;
  background-color: #E6D1D0;
}

/* CONTENEDOR PRINCIPAL */
.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 200px;
  max-width: 1400px;
  margin: 120px auto 0 auto;
  padding: 0 80px;
  box-sizing: border-box;
}

/* COLUMNA IZQUIERDA */
.contact-left {
  flex: 1;
  font-size: 16px;
  line-height: 1.7;
}

.contact-left a {
  color: #E6D1D0;
  text-decoration: underline;
  font-style: italic;
  transition: opacity 0.3s ease;
}

.contact-left a:hover {
  opacity: 0.7;
}

/* COLUMNA DERECHA */
.contact-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}

.contact-right a {
  color: #E6D1D0;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.contact-right a:hover {
  opacity: 0.7;
}

/* SUBTÍTULOS */
.contact-right h4 {
  font-weight: 400;
  margin-bottom: 4px;
  font-size: 14px;
}

/* REDES SOCIALES */
.contact-socials {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 60px;
    padding: 40px;
  }

  .contact-right {
    align-items: flex-start;
  }
}






