body {
  background: linear-gradient(to bottom, #ffffff 0%, #d6e2ee 20%, #030c24 70%);
  min-height: 100vh;
  margin: 0;
  font-family: "Open Sauce One", sans-serif;
  color: #ffffff;

  display: flex;
  flex-direction: column;
}

.main-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5% 0 5%;
  padding-top: 2rem;

  flex-grow: 1;
}

.text-column {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.7rem;
  margin-top: 0;
  margin-bottom: 6rem;
  color: #05206a;
  align-self: flex-start;
}

.logo {
  max-width: 75%;
  height: auto;
}

.exp-text {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.8;
  color: #fcfcfc;

  margin-top: 3rem;
  margin-bottom: 3rem;
}

.contact-icons {
  margin-top: 3rem;
}

.icon-container {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.contact-icon {
  width: 90px;
  height: 90px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.contact-icon:hover {
  transform: scale(1.1);
}

.contact-icons p {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #fcfcfc;
  margin: 0;
}

.image-column {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-column img {
  max-width: 90%;
  height: auto;
}

.footer {
  text-align: right;
  font-size: 0.9rem;
  margin-top: auto;
}

.footer p {
  font-size: 1rem;
  letter-spacing: 0.6rem;
  line-height: 1.8;
  color: #fcfcfc;

  margin-bottom: 2rem;
  margin-right: 5rem;
}

/* --- Media Query para Dispositivos Móviles (pantallas de hasta 768px de ancho) --- */
@media screen and (max-width: 768px) {
  .main-container {
    flex-direction: column;
    padding: 0 5%;
    justify-content: flex-start;
    align-items: center;
    min-height: auto;
  }

  .text-column {
    flex-basis: auto;
    max-width: 100%;
    padding-right: 0;
    margin-top: 2rem;
    align-items: center;
    text-align: center;
  }

  h1 {
    font-size: 1.8rem;
    letter-spacing: 0.05rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    color: #fcfcfc;
    align-self: center;
  }

  .logo {
    max-width: 70%;
    margin-bottom: 1rem;
  }

  .exp-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }

  .exp-text br {
    display: none;
  }

  .contact-icons {
    margin-top: 2rem;
    margin-bottom: 2rem;
    align-items: center;
  }

  .contact-icons p {
    font-size: 1.1rem;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
  }

  .image-column {
    flex-basis: auto;
    max-width: 90%;
    margin-top: 0;
    margin-bottom: 3rem;
  }

  .image-column img {
    max-width: 100%;
    height: auto;
  }

  .footer {
    margin-right: 0;
    text-align: center;
    padding-bottom: 1rem;
  }
}
