@font-face {
  font-family: "SkModernist";
  src: url("fonts/Sk-Modernist-Regular_1.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "SkModernist";
  src: url("fonts/Sk-Modernist-Bold_1.woff") format("woff");
  font-weight: 700;
  font-style: bold;
}

@font-face {
  font-family: "SkModernistMono";
  src: url("fonts/Sk-Modernist-Mono_1.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "SkModernist";
}

code,
pre {
  font-family: "SkModernistMono";
}

h1,
h2,
h3 {
  font-family: "SkModernist";
  font-weight: 700;
}



/* Variables de paleta de colores */

:root {
  --celeste-color: #019dcb;
  --verde-color: #26b094;
  --azulrey-color: #0963ae;
  --morado-color: #6a458e;
}

html {
  scroll-behavior: smooth;
}

.img-logo {
  width: 30px;
}

.img-logo:hover {
  cursor: pointer;
  transform: scale(1.1);
}

.logo-container {
  display: flex;
  gap: 20px;
}

.header-container {
  background: url(images/Banner-Landing-Page.png) no-repeat center fixed;
  width: 100%;
  height: 100vh;
  background-size: cover;
}

.navbar {
  background: transparent;
  width: 100%;
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  font-size: 1.2rem;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.navbar img {
  width: 50%;
  height: 50%;
  cursor: pointer;
  transition: transform 0.2s linear;
}

.navbar img:hover {
  transform: scale(1.2);
}
.navbar-content ul li {
  list-style: none;
}

.navbar-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#abrir-menu,
#cerrar-menu {
  display: none;
}

.navbar a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

.navbar-content a {
  color: #ffffff;
  border: none;
  padding: 8px 10px;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s linear;
}

.navbar-content a:hover {
  color: #fff;
  transform: scale(1.2);
  border-radius: 5px;
  background: var(--verde-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 10px rgba(255, 255, 255, 0.1);
}

.navbar-content {
  display: flex;
  flex-direction: row;
  /* gap: 50px; */
  text-align: center;
  height: 40px;
}

.navbar-content ul {
  display: flex;
  gap: 30px;
}

.navbar.scrolled {
  background: #ffffffce;
  color: #000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  & a {
    color: #000;
  }
}

.header-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  text-align: center;
  color: white;
}

.header-title h1 {
  font-size: 1.5rem;
  font-weight: bolder;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.message-icon {
  position: fixed;
  z-index: 1;
  right: 0;
  bottom: 0;
  margin: 20px 15px;
  filter: drop-shadow(
    0 4px 12px rgba(0, 0, 0, 0.15),
    0 0 10px rgba(255, 255, 255, 0.1)
  );
}

.message-icon img {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  padding: 10px;
  transition: transform 0.3s;
}

.message-icon img:hover {
  transform: scale(1.2);
  background: #25d366;
}

.nosotros-container {
  width: 100%;
  height: auto;
}

.nosotros-header {
  background: url(images/regio.webp) center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.nosotros-header h2 {
  font-size: 3rem;
  font-weight: bolder;
  color: white;
  /* background: #000000a1; */
  padding: 10px;
}

.nosotros-header p {
  font-size: 1.5rem;
  color: white;
  /* background: #000000a1; */
  padding: 10px;
  margin-top: 20px;
}

.nosotros-text {
  width: 50%;
  height: auto;
}

.tecnologia-container {
  width: 100%;
  height: auto;
  background: var(--morado-color);
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}

.tecnologia-text-container {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  padding: 10px;
}

.tecnologia-text-container h2 {
  font-size: 2rem;
  font-weight: bolder;
  color: black;
}

.tecnologia-text-container p {
  font-size: 1.2rem;
  color: black;
  line-height: 1.5;
}

.tecnologia-text-container h2,
.tecnologia-text-container p {
  color: #fff;
}

.nosotros-img {
  width: 50%;
  height: 100%;
}

.nosotros-img img {
  display: block;
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 10px rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.transparencia-container {
  width: 100%;
  height: auto;
  background: var(--celeste-color);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.transparencia-text-container {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  padding: 10px;
  color: white;
}

.transparencia-text-container h2 {
  font-size: 2rem;
  font-weight: bolder;
  color: white;
}

.transparencia-text-container p {
  font-size: 1.2rem;
  color: white;
  line-height: 1.5;
}

.colaboracion-container {
  width: 100%;
  height: auto;
  background: var(--verde-color);
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}

.colaboracion-text-container {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  padding: 10px;
  color: black;
}

.colaboracion-text-container h2 {
  font-size: 2rem;
  font-weight: bolder;
  color: black;
}

.colaboracion-text-container p {
  font-size: 1.2rem;
  color: black;
  line-height: 1.5;
}

.colaboracion-text-container h2,
.colaboracion-text-container p {
  color: #fff;
}

/* INICIO DE LA SECCION SERVICIOS */
.servicios-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
}

.servicios-title {
  text-align: center;
}

.servicios-container h2 {
  font-size: 2em;
  padding: 20px 10px;
}

.servicios-container p {
  font-size: 1.2em;
  padding: 15px 20px;
}

.cards-container {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 10px;
  gap: 50px;
  margin-bottom: 50px;
}

.img {
  width: 100%;
  height: 100%;
  margin: 10px 0;
  overflow: hidden;
}

.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.cards-content-container {
  width: 40%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 10px rgba(255, 255, 255, 0.1);
  border-top: solid 5px var(--morado-color);
  border-bottom: solid 5px var(--morado-color);
  border-radius: 10px;
  padding: 5px 10px;
  transition: transform 0.3s linear;
}

.cards-content-container:hover {
  transform: translateY(-10px);
}

.cards-content-container h2 {
  background: var(--morado-color);
  color: #fff;
  border: solid 2px var(--morado-color);
  border-radius: 10px;
  font-size: 1em;
  padding: 10px;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.cards-text-container ul li {
  list-style: inside disc;
  text-align: left;
  padding-left: 5px;
  line-height: 1.5;
}

.cards-text-container {
  text-align: center;
  font-size: 1rem;
  justify-content: center;
}

.cards-new-container {
  width: 100%;
  height: 100vh;
  background: linear-gradient(
    to left,
    var(--verde-color),
    var(--celeste-color),
    var(--azulrey-color)
  );
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}

.nuevos-negocios-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin: 0 auto;
}

.nuevos-negocios-container h2 {
  font-size: 3rem;
  color: white;
  font-weight: bolder;
  text-align: left;
  margin-bottom: 20px;
}

.nuevos-negocios-container p {
  font-size: 1.5rem;
  color: white;
  text-align: right;
  margin-bottom: 20px;
}

.list-negocios-container {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.list-negocios-container ul li {
  list-style: inside disc;
  line-height: 2;
  font-size: 1.5rem;
  color: white;
}

.nuevos-negocios-container h2,
.nuevos-negocios-container p,
.list-negocios-container ul li {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* FIN DE LA SECCION SERVICIOS */

.contact-container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.contact-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 2;
}

.contact-title h2 {
  font-size: 2rem;
  color: white;
  font-weight: bolder;
  text-align: center;
  margin-bottom: 20px;
  background: var(--verde-color);
  padding: 10px;
  border-radius: 10px;
  margin-top: 20px;
}

.contact-title p {
  font-size: 1.5rem;
  color: white;
  text-align: center;
  margin-bottom: 20px;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--verde-color) url(images/ICG_Cuadro\ Textura\ Azul.svg)
    repeat;
  background-size: 150px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 20px;
}

.contact-form p {
  background: var(--verde-color);
  color: white;
  width: auto;
  text-align: center;
  font-size: 1rem;
  padding: 5px;
  border-radius: 10px;
  font-weight: bold;
}
.contact-form input {
  width: 50%;
  height: 30px;
  text-align: center;
}

.contact-form textarea {
  width: 50%;
  height: 100px;
  resize: none;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  border: none;
  outline: solid 1px black;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: solid 2px rgb(25, 55, 75);
}

.contact-form button {
  width: 100px;
  height: 50px;
  background-color: var(--verde-color);
  color: white;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.5s ease;
}

.contact-form button:hover {
  background-color: white;
  color: black;
}

.footer-container {
  width: 100%;
  height: auto;
  text-align: center;
  background: var(--morado-color);
  color: white;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.footer-container a {
  color: white;
  
  font-weight: bold;
}

.logo-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.list-logo {
  display: flex;
  flex-direction: row;
  gap: 15px;
  list-style: none;
  padding: 5px 10px;
}

/* MOBILE RESPONSIVE RULES */
@media screen and (max-width: 600px) {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* .abrir-menu,
    .cerrar-menu {
        display: block;
    } */

  #abrir-menu,
  #cerrar-menu {
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
  }

  .navbar.scrolled #abrir-menu {
    color: black;
  }

  .navbar article div img {
    width: 100%;
    height: 100%;
  }

  .header-container {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background-position: center left;
  }

  .navbar {
    flex-direction: row;
    width: 100%;
    height: auto;
    padding: 12px;
    gap: 10px;
    top: 0;
  }

  .navbar-content ul {
    flex-direction: column;
    align-items: end;
    gap: 30px;
  }

  .navbar-content {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 12px;
    background: var(--verde-color);
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: end;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  .navbar-content.visible {
    visibility: visible;
    opacity: 1;
  }

  .header-title {
    font-size: 1.5rem;
    padding: 12px;
    text-align: center;
    color: white;
    position: relative;
    top: 0;
    left: 0;
    transform: none;
  }

  .nosotros-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .nosotros-text {
    width: 100%;
    font-size: 1rem;
    padding: 12px;
    text-align: center;
  }

  .nosotros-images-container {
    gap: 6%;
    flex-wrap: wrap;
    padding: 12px 6px;
  }

  .nosotros-images-content {
    width: 45%;
    margin-bottom: 14px;
  }

  .nosotros-images-container img {
    width: 80px;
    height: 80px;
  }

  .tecnologia-container,
  .transparencia-container,
  .colaboracion-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column-reverse;
  }

  .tecnologia-text-container,
  .transparencia-text-container,
  .colaboracion-text-container {
    width: 100%;
    height: auto;
  }

  .nosotros-img {
    width: 100%;
    height: auto;
  }

  .servicios-section {
    padding: 16px 8px;
  }

  .servicios-container {
    width: 100%;
    height: auto;
  }

  .cards-container {
    flex-direction: column;
    gap: 30px;
    padding: 12px;
    align-items: center;
    width: 100%;
  }

  .cards-content-container {
    width: 80%;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: solid 5px var(--morado-color);
    border-top: solid 5px var(--morado-color);
  }

  .cards-new-container {
    flex-direction: column;
    height: auto;
    padding: 20px 12px;
  }

  .list-negocios-container,
  .nuevos-negocios-container {
    text-align: center;
    width: 100%;
    height: auto;
  }

  .list-negocios-container ul li {
    font-size: 1.2rem;
    line-height: 2;
  }

  .img-servicios {
    width: 140px;
    height: 140px;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-title,
  .contact-form {
    width: 100%;
    height: auto;
  }

  .contact-title {
    padding: 24px 12px;
    background-size: cover;
    background-position: center;
    height: 40vh;
    width: 100%;
  }

  .contact-form {
    padding: 20px 12px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 90%;
    height: auto;
  }

  .contact-form input {
    height: 30px;
  }

  .contact-form p {
    width: auto;
    font-size: 0.9rem;
    background-size: auto;
  }

  .contact-form textarea {
    height: 80px;
  }

  .footer-container {
    height: auto;
    padding: 20px 12px;
  }
}
