@font-face {
  font-family: m_r;
  src: url(../../recursos/fonts/Montserrat-Regular.otf);
}
@font-face {
  font-family: m_b;
  src: url(../../recursos/fonts/Montserrat-Bold.otf);
}
@font-face {
  font-family: m_e;
  src: url(../../recursos/fonts/Montserrat-ExtraBold.otf);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: m_r;
  line-height: 1.6;
}
html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}
::-webkit-scrollbar {
  display: none;
}

.sitioweb {
  display: flex;
  flex-direction: column;
  max-width: 1480px;
  margin: auto;
  padding: 0 30px;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}

/* MENU MÓVIL */
.menu-movil {
  display: none;
}

.menu-checkbox {
  display: none;
}

/* FUNCIONALIDAD DEL MENÚ MÓVIL */
.menu-checkbox:checked ~ .menu-bg {
  transform: scale(80);
}

.menu-checkbox:checked ~ .menu-nav {
  opacity: 1;
  width: 100%;
  pointer-events: visible;
}

.menu-btn {
  background-color: #fff;
  height: 70px;
  width: 70px;
  position: fixed;
  top: 60px;
  right: 60px;
  border-radius: 50%;
  z-index: 2000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
}

.menu-btn:hover .menu-icon::before {
  top: -10px;
}

.menu-btn:hover .menu-icon::after {
  top: 10px;
}

.menu-checkbox:checked + .menu-btn .menu-icon {
  background-color: transparent;
}

.menu-checkbox:checked + .menu-btn .menu-icon::before {
  top: 0;
  transform: rotate(135deg);
}

.menu-checkbox:checked + .menu-btn .menu-icon::after {
  top: 0;
  transform: rotate(-135deg);
}

.menu-icon {
  width: 30px;
  height: 2px;
  background-color: #333;
  display: inline-block;
  position: relative;
  margin-top: 35px;
}

.menu-icon::before {
  width: 30px;
  height: 2px;
  background-color: #333;
  display: inline-block;
  content: "";
  position: absolute;
  left: 0;
  transition: 0.2s;
  top: -8px;
}

.menu-icon::after {
  width: 30px;
  height: 2px;
  background-color: #333;
  display: inline-block;
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  transition: 0.2s;
}

.menu-bg {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  position: fixed;
  top: 65px;
  right: 65px;
  background-color: #22a7dd;
  z-index: 1000;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}

.menu-nav {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  opacity: 0;
  width: 0;
  pointer-events: none;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.menu-list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  width: 100%;
}

.menu-item {
  margin: 10px;
  display: flex;
}

.menu-link:link,
.menu-link:visited {
  font-size: 30px;
  font-weight: 300;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(110deg, transparent 0%, transparent 50%, #fff 50%);
  background-size: 220%;
  transition: all 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  gap: 14px;
}

.menu-link:hover,
.menu-link:active {
  background-position: 100%;
  color: #22a7dd;
  transform: translateX(10px);
}

.menu-item:first-child .menu-link:hover img {
  content: url("../../recursos/icons/inicio.svg");
}

.menu-item:nth-child(2) .menu-link:hover img {
  content: url("../../recursos/icons/nosotros.svg");
}

.menu-item:nth-child(3) .menu-link:hover img {
  content: url("../../recursos/icons/servicios.svg");
}

.menu-item:last-child .menu-link:hover img {
  content: url("../../recursos/icons/contacto.svg");
}

/* SECCIÓN ENCABEZADO */
.encabezado {
  display: flex;
  width: 100%;
  padding: 40px 0 0;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.m-espacio-1 {
  width: 10%;
  height: 80px;
  background-color: #30afdf;
}

.m-espacio-2 {
  width: 10%;
  height: 80px;
  background-color: #3283b0;
}

.m-espacio-3 {
  width: 10%;
  height: 80px;
  background-color: #2578aa;
}

.m-espacio-4 {
  width: 10%;
  height: 80px;
  background-color: #196e9e;
}

.logo a {
  display: block;
}

.logo img {
  display: block;
  width: 500px;
}

.menu {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.menu nav {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
  text-transform: uppercase;
  font-family: m_r;
}

.menu nav a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  gap: 8px;
  padding: 0 20px;
}

.menu nav a:nth-child(2) {
  background-color: #1a6d9f;
}

.menu nav a:nth-child(2) img {
  content: url("../../recursos/icons/nosotros_blanco.svg");
}

.menu nav a:nth-child(2) h3 {
  color: #fff;
}

.menu nav a:hover {
  background-color: #1a6d9f;
}

.menu nav a:hover h3 {
  color: #fff;
}

.menu nav a:first-child:hover img {
  content: url("../../recursos/icons/inicio_blanco.svg");
}

.menu nav a:nth-child(3):hover img {
  content: url("../../recursos/icons/servicios_blanco.svg");
}

.menu nav a:last-child:hover img {
  content: url("../../recursos/icons/contacto_blanco.svg");
}

.menu img {
  transition: all 0.2s;
  width: 80px;
}

.menu h3 {
  margin: -5px 0 0 0;
  font-size: 20px;
  color: #1a6d9f;
  transition: all 0.2s;
}

/* SECCIÓN PORTADA */
.portada {
  position: relative;
  display: flex;
  margin-bottom: 100px;
  width: 100%;
}

.bg {
  width: 100%;
}

.bg a {
  display: block;
  width: 100%;
}

.bg img {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.titulo_bg {
  position: absolute;
  top: 90%;
  left: 37%;
  transform: translate(-50%, -50%);
}

.titulo_bg h3 {
  width: 800px;
  font-size: 22px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.boton_bg {
  position: absolute;
  top: 67%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* SECCIÓN ACERCA DE */
.nos-acer {
  padding: 0 0 100px;
  display: flex;
  gap: 30px;
}

.acer-ti {
  flex: 0 0 35%;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #1a6d9f;
  font-family: m_b;
  font-size: 40px;
}

.acer-icon {
  width: 120px;
}

.acer-des {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #1a6d9f;
}

.acer-des p {
  font-size: 18px;
}

.acer-des p strong {
  font-family: m_b;
}

/* SECCIÓN MISIÓN Y VISIÓN */
.mi-vi {
  display: flex;
  background-image: url("../../recursos/bg/bg13.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  margin: 0 0 100px;
}

.mi {
  width: 50%;
  display: grid;
  gap: 50px;
  place-content: center;
  padding: 0 50px;
}

.vi {
  width: 50%;
  display: grid;
  gap: 50px;
  place-content: center;
  padding: 0 50px;
}

.mv-ti {
  color: #fff;
  font-family: m_b;
  font-size: 40px;
  border-bottom: 4px solid #fff;
  width: fit-content;
}

.mv-des {
  font-weight: 700;
  color: #fff;
  font-size: 18px;
}

/* SECCIÓN CARACTERÍSTICAS */
.caracte {
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 70px;
  align-items: center;
}

.cara-ti {
  color: #1a6d9f;
  font-family: m_b;
  font-size: 40px;
}

.cara-list {
  display: flex;
  gap: 50px;
}

.cara-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.i-subitem {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

/* .i-text {
  display: flex;
  flex-direction: column;
}

.i-des-list {
  display: flex;
  flex-direction: column;
} */

.ci-img {
  display: block;
  width: 100%;
  height: 100px;
  object-fit: contain;
}

.ci-ti {
  font-family: m_b;
  font-size: 24px;
}

.ci-des {
  font-size: 18px;
  text-align: justify;
}

.ci-text {
  text-align: justify;
}

/* SECCIÓN PIE DE PÁGINA */
.pie-pagina {
  display: flex;
  width: 100%;
}

.pp-con-bg {
  flex: 0 0 60%;
  background-image: url("../../recursos/bg/bg11.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 40px 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pp-con-text {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: auto;
}

.pp-c-t-ti {
  width: 42%;
  font-family: m_b;
  font-size: 40px;
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 4px solid #fff;
}

.pp-c-t-des {
  font-size: 18px;
  width: 66%;
}

.pp-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pp-btn {
  text-decoration: none;
  color: white;
  font-size: 18px;
  padding: 6px 45px;
  border-radius: 12px 0 12px 0;
  background-color: #22a7dd;
  margin-left: 30px;
}

.pp-red-soc-list {
  display: flex;
  gap: 10px;
}

.pp-rs-link {
  text-decoration: none;
  color: white;
}

.pp-rs-item {
  display: block;
  width: 35px;
}

.pp-info {
  background-color: #22a7dd;
  color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 40px;
  margin: auto 0;
}

.pp-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pp-ti {
  font-size: 26px;
  color: black;
  font-family: m_b;
}

.pp-ubi {
  display: flex;
  gap: 10px;
}

.pp-ubi-img {
  display: block;
  width: 30px;
}

.pp-ubi-text {
  display: flex;
  flex-direction: column;
}

.pp-ubi-ti {
  font-family: m_b;
}

.pp-ubi-dir {
  color: black;
  font-size: 16px;
}

.pp-ubi-ofi-dir {
  color: black;
}

.pp-list-tel {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pp-tel {
  display: flex;
  gap: 10px;
}

.pp-tel p:first-child {
  text-transform: uppercase;
  font-family: m_b;
}

.pp-tel p:last-child {
  color: black;
}

/* MEDIA QUERIES */
@media (min-width: 1025px) and (max-width: 1280px) {
  /* SECCIÓN ENCABEZADO */
  .logo img {
    width: 400px;
  }

  /* SECCIÓN PORTADA */
  .portada {
    width: 100%;
    margin-bottom: 50px;
  }

  .titulo_bg {
    left: 50%;
  }

  /* SECCIÓN ACERCA DE */
  .nos-acer {
    gap: 40px;
    padding: 0;
    margin-bottom: 50px;
  }

  .acer-ti {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 18px;
  }

  .acer-icon {
    width: 80px;
  }

  /* SECCIÓN MISIÓN Y VISIÓN */
  .mi-vi {
    margin-bottom: 50px;
  }

  /* SECCIÓN CARACTERÍSTICAS */
  .caracte {
    margin-bottom: 50px;
  }

  /* SECCIÓN PIE DE PÁGINA */
  .pp-btn {
    margin-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  /* SECCIÓN ENCABEZADO */
  .logo img {
    width: 300px;
  }

  .m-espacio-1 {
    display: none;
  }

  .m-espacio-2 {
    display: none;
  }

  .m-espacio-3 {
    display: none;
  }

  .m-espacio-4 {
    display: none;
  }

  .menu nav {
    width: 100%;
  }

  .menu nav a {
    flex-direction: column;
  }

  /* SECCIÓN PORTADA */
  .portada {
    width: 100%;
    margin-bottom: 50px;
  }

  .titulo_bg {
    left: 50%;
  }

  .titulo_bg h3 {
    font-size: 20px;
  }

  /* SECCIÓN ACERCA DE */
  .nos-acer {
    gap: 40px;
    padding: 0;
    margin: 0 20px 50px;
  }

  .acer-ti {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 18px;
    font-size: 32px;
  }

  .acer-des p {
    font-size: 16px;
  }

  .acer-icon {
    width: 80px;
  }

  /* SECCIÓN MISIÓN Y VISIÓN */
  .mi-vi {
    margin-bottom: 50px;
  }

  /* SECCIÓN CARACTERÍSTICAS */
  .caracte {
    margin: 0 20px 50px;
  }

  .cara-ti {
    font-size: 32px;
  }

  .ci-ti {
    font-size: 20px;
  }

  .ci-des {
    font-size: 16px;
  }

  /* SECCIÓN PIE DE PÁGINA */
  .pie-pagina {
    flex-direction: column;
  }

  .pp-con-bg {
    flex: 0 0 auto;
    height: 400px;
    padding: 0 40px;
    justify-content: space-around;
  }

  .pp-con-text {
    margin: 0;
  }

  .pp-btn {
    margin-left: 0;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  /* SECCIÓN MENÚ MÓVIL */
  .menu-movil {
    display: block;
  }

  .menu-btn {
    top: 3%;
    right: 7%;
  }

  .menu-bg {
    top: 4%;
    right: 8%;
  }

  /* SECCIÓN ENCABEZADO */
  .encabezado {
    padding: 20px 0;
    align-items: start;
  }

  .menu {
    display: none;
  }

  .logo img {
    width: 200px;
  }

  /* SECCIÓN PORTADA */
  .portada {
    width: 100%;
    margin-bottom: 50px;
  }

  .titulo_bg {
    display: none;
  }

  /* SECCIÓN ACERCA DE */
  .nos-acer {
    gap: 40px;
    padding: 0;
    margin: 0 20px 50px;
    flex-direction: column;
  }

  .acer-ti {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 18px;
    font-size: 32px;
  }

  .acer-des {
    text-align: center;
  }

  .acer-des p {
    font-size: 16px;
  }

  .acer-icon {
    width: 80px;
  }

  /* SECCIÓN MISIÓN Y VISIÓN */
  .mi-vi {
    flex-direction: column;
    margin-bottom: 50px;
    height: 100%;
    gap: 50px;
    padding: 30px 0;
  }

  .mi {
    width: 100%;
    gap: 30px;
  }

  .vi {
    gap: 30px;
    width: 100%;
  }

  /* SECCIÓN CARACTERÍSTICAS */
  .caracte {
    margin: 0 20px 50px;
  }

  .cara-list {
    flex-direction: column;
  }

  .cara-ti {
    font-size: 32px;
  }

  .ci-ti {
    font-size: 20px;
  }

  .ci-des {
    font-size: 16px;
  }

  /* SECCIÓN PIE DE PÁGINA */
  .pie-pagina {
    flex-direction: column;
  }

  .pp-con-bg {
    flex: 0 0 auto;
    height: 400px;
    padding: 0 40px;
    justify-content: space-around;
  }

  .pp-con-text {
    margin: 0;
  }

  .pp-btn {
    margin-left: 0;
  }
}

@media (min-width: 320px) and (max-width: 480px) {
  /* SECCIÓN MENÚ MÓVIL */
  .menu-movil {
    display: block;
  }

  .menu-list {
    top: 55%;
    left: 48%;
  }

  .menu-btn {
    top: 2%;
    right: 13%;
  }

  .menu-bg {
    top: 3%;
    right: 14%;
  }

  /* SECCIÓN ENCABEZADO */
  .encabezado {
    padding: 20px 0;
    align-items: start;
  }

  .menu {
    display: none;
  }

  .logo img {
    width: 150px;
  }

  /* SECCIÓN PORTADA */
  .portada {
    width: 100%;
    margin-bottom: 50px;
  }

  .titulo_bg {
    top: 50%;
    left: 50%;
  }

  .titulo_bg {
    display: none;
  }

  /* SECCIÓN ACERCA DE */
  .nos-acer {
    gap: 40px;
    padding: 0;
    margin: 0 0 50px;
    flex-direction: column;
  }

  .acer-ti {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 18px;
    font-size: 32px;
  }

  .acer-des {
    text-align: center;
  }

  .acer-des p {
    font-size: 16px;
  }

  .acer-icon {
    width: 60px;
  }

  /* SECCIÓN MISIÓN Y VISIÓN */
  .mi-vi {
    flex-direction: column;
    margin-bottom: 50px;
    height: 100%;
    gap: 50px;
    padding: 30px 0;
  }

  .mi {
    width: 100%;
    gap: 30px;
    padding: 0 20px;
  }

  .mv-ti {
    font-size: 30px;
  }

  .mv-des {
    font-size: 16px;
  }

  .vi {
    gap: 30px;
    width: 100%;
    padding: 0 20px;
  }

  /* SECCIÓN CARACTERÍSTICAS */
  .caracte {
    margin: 0 20px 50px;
    gap: 30px;
  }

  .cara-list {
    flex-direction: column;
  }

  .cara-ti {
    font-size: 30px;
    text-align: center;
  }

  .ci-ti {
    font-size: 20px;
  }

  .ci-des {
    font-size: 16px;
  }

  /* SECCIÓN PIE DE PÁGINA */
  .pie-pagina {
    flex-direction: column;
  }

  .pp-con-bg {
    flex: 0 0 auto;
    height: 400px;
    padding: 0 20px;
    justify-content: space-around;
  }

  .pp-c-t-ti {
    width: 80%;
    font-size: 28px;
  }

  .pp-c-t-des {
    width: 100%;
  }

  .pp-links {
    flex-direction: column;
    gap: 20px;
  }

  .pp-tel p:first-child {
    width: 50%;
  }

  .pp-info {
    padding: 30px 20px;
  }

  .pp-con-text {
    margin: 0;
  }

  .pp-btn {
    margin-left: 0;
  }
}
