@import url("./carousel.css");
@import url("./modal.css");
@import url("./form.css");

/*
* v-cloak directiva de vue
* Oculta el contenido de la vista hasta que Vue haya terminado de compilarlo. (evita el parpadeo)
*/
[v-cloak] {
  display: none;
}

.msn-attempts {
  display: none;
}

:root {
  --color-footer-1: #001f4f;
  --color-footer-2: #001135;
  --color-principal-1: #042354;
  --color-principal-2: #2841dd;
  --color-principal-2-opacity: rgba(40, 65, 221, 0.4);
  --color-principal-3: #5064f7;
  --color-gris: #797979;
}

body {
  background-color: #eeeeee;
}

a:hover {
  color: #042354 !important;
}

.main-content {
  background: url("../img/fondo.svg");
  max-width: 1084px;
  padding: 35px 30px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.161);
}

.custom-header {
  background-color: var(--color-principal-1);
  max-width: 1084px;
  height: 110px;
  margin: 0 auto;
  padding-left: 30px;
  align-items: center;
  display: flex;

  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.161);
  position: relative;
}

/* ********** Columna Info ***********/
.col-info {
  font-family: "Roboto", sans-serif;
  margin-top: 32px;
  padding-right: 53px;
}

/* Link */
.main-content .custom-link {
  margin-top: 88px;
  font-family: "Roboto", sans-serif;
  color: var(--color-principal-2);
  font-weight: 400;
  font-size: 14px;
}

.main-content .arrow-link {
  width: 9px;
  height: 10px;
}

/* ********** Footer ***********/
.footer-main {
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.161);
  max-width: 1084px;
  align-content: center;
  margin: 0 auto;
}
.footer-1 {
  background-color: var(--color-footer-1);
  font-family: "Roboto", serif;
  font-weight: 400;
  font-size: 14px;
  color: #8395b2;

  max-width: 1084px;
  height: 170px;
  align-content: center;
  margin: 0 auto;
}

.footer-1 .footer-address {
  margin-left: 18px;
}

.footer-2 {
  background-color: var(--color-footer-2);
  font-family: "Roboto", serif;
  font-weight: 400;
  font-size: 12px;
  color: #566179;

  max-width: 1084px;
  height: 40px;
  align-content: center;
  margin: 0 auto;
  text-align: center;
}

/* Estilo por defecto (pantallas de escritorio) */
.desktop-only {
  display: inline;
}

.mobile-only {
  display: none;
}

.social-icons a {
  margin-right: 8px;
}

@media (max-width: 768px) {
  .col-info {
    display: none;
  }

  .main-content {
    background: url("../img/fondo-mb.svg");
    max-width: 1084px;
    padding: 35px 30px;
  }
  .msn-attempts {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    display: block;
    padding-bottom: 7px;
    color: var(--color-principal-2);
  }
  .footer-1 {
    height: 100%;
  }
  .footer-1 .footer-address {
    display: none;
    margin-left: 18px;
  }

  .footer-1 .col-auto {
    width: 1080px;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .footer-1 .footer-follow p {
    color: white;
    text-align: center;
    margin-bottom: 19px;
    font-weight: 300;
  }
  .footer-1 .footer-follow .social-icons {
    text-align: center;
  }

  .footer-2 {
    background-color: var(--color-footer-1);
    font-size: 11px;
    padding-bottom: 50px;
    color: white;
    font-weight: 300;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline;
  }

  a:active {
    color: #042354 !important;
  }
}
