@charset "UTF-8";
/*
@include displays.fullDesktop {

}*/
/*VARIABLE COLORES*/
@font-face {
  font-family: "CenturyGothic-Bold";
  src: url("../fonts/CenturyGothic-Bold.eot") format("eot"), url("../fonts/CenturyGothic-Bold.svg") format("svg"), url("../fonts/CenturyGothic-Bold.ttf") format("ttf"), url("../fonts/CenturyGothic-Bold.woff") format("woff"), url("../fonts/CenturyGothic-Bold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CenturyGothic";
  src: url("../fonts/CenturyGothic.eot") format("eot"), url("../fonts/CenturyGothic.svg") format("svg"), url("../fonts/CenturyGothic.ttf") format("ttf"), url("../fonts/CenturyGothic.woff") format("woff"), url("../fonts/CenturyGothic.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "CenturyGothic-Bold" sans-serif;
}

p {
  font-family: "CenturyGothic-Bold" sans-serif;
}

h1 {
  font-size: 100px;
}

h2 {
  font-size: 50px;
}

h4, p {
  font-size: 18px;
}

h3 {
  font-size: 35px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, li, ol {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

body {
  font-family: "CenturyGothic", sans-serif;
  color: #000;
  font-size: 16px;
  line-height: 1.5;
}

@media only screen and (max-width: 1024px) {
  .display_desktop img {
    display: none;
  }
}

.display_mobile img {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .display_mobile img {
    display: block;
  }
}

.dis_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.title_section {
  width: max-content;
  margin: 0 auto;
}
.title_section h4 {
  background-color: #E8E8E8;
  line-height: 38px;
  margin-left: 20px;
  width: 190px;
  text-align: center;
  border-radius: 10px;
}

/*HEADER*/
header {
  position: absolute;
  height: 110px;
  width: 100%;
  top: 0;
  z-index: 10;
}
header .dis_flex {
  height: 100%;
}
header nav {
  height: 100%;
}
header nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
header nav ul li a {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: white;
}
header nav ul li a:hover {
  color: #0079D1;
}

.footer {
  background: #1a1a1a;
  color: #ccc;
  padding-top: 3rem;
}
.footer__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .footer__wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.footer__logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0079D1;
  margin-bottom: 1rem;
}
.footer__col h4 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.1rem;
}
.footer__col ul {
  list-style: none;
  padding: 0;
}
.footer__col ul li {
  margin-bottom: 0.5rem;
}
.footer__col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}
.footer__col ul li a:hover {
  color: #0079D1;
}
.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2a2a2a;
  color: #ccc;
  font-size: 1.2rem;
  transition: all 0.3s;
}
.footer__social a:hover {
  background: #0079D1;
  color: #fff;
  transform: translateY(-3px);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  color: #aaa;
}

main#page-home section.banner {
  background: #000000;
  background: linear-gradient(91deg, rgb(0, 0, 0) 1%, rgb(0, 0, 0) 38%, rgba(0, 0, 0, 0.63) 69%, rgb(255, 255, 255) 100%);
  height: 100dvh;
}
main#page-home section.banner img.nodes_banner {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0;
}
main#page-home section.banner img.efecto_banner {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  left: 0;
}
main#page-home section.banner .container {
  align-items: center;
  height: 100%;
}
main#page-home section.banner .container img.fondo_banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: zoomInOut 8s ease-in-out infinite;
  transform-origin: center;
  z-index: 3;
}
@keyframes zoomInOut {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
main#page-home section.banner .container .banner_content {
  z-index: 10;
  position: relative;
  /* si ya tienes .text_blue en tu HTML generado por PHP, los .char dentro heredarán el color */
}
main#page-home section.banner .container .banner_content h1 {
  color: white;
  line-height: 89px;
  z-index: 10;
  position: relative;
}
main#page-home section.banner .container .banner_content h1 .text_blue {
  color: #0079D1;
}
main#page-home section.banner .container .banner_content a {
  z-index: 10;
  position: relative;
  background-color: #0079D1;
  padding: 5px 10px;
  border-radius: 5px;
  color: #fff;
}
main#page-home section.banner .container .banner_content #titulo-animado {
  display: inline-block;
  white-space: pre-wrap;
  font-weight: 700;
}
main#page-home section.banner .container .banner_content #titulo-animado .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  animation: letraIn 0.45s forwards;
  will-change: transform, opacity;
}
main#page-home section.banner .container .banner_content .text_blue {
  color: #007bff;
}
@keyframes letraIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
main#page-home section.banner .container .banner_content p {
  color: #E4E4E4;
  max-width: 660px;
  margin-top: 25px;
}
main#page-home section.banner .container .banner_image {
  z-index: 10;
  position: relative;
}
main#page-home section.banner .container .banner_image img {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
main#page-home section.banner .container .arrow_down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
main#page-home section.banner .container .arrow_down img {
  width: 40px;
  height: auto;
  animation: flecha-move 1.5s infinite ease-in-out;
}
@keyframes flecha-move {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0);
  }
}
main#page-home section.nosotros {
  padding: 50px 0;
}
main#page-home section.nosotros .title_section {
  margin-bottom: 20px;
}
main#page-home section.nosotros .nosotros_content {
  max-width: 800px;
  margin: 0 auto;
}
main#page-home section.nosotros .nosotros_image {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}
main#page-home section.nosotros .nosotros_image img {
  width: 500px;
}
main#page-home section.nosotros .nosotros_image p {
  margin-top: 10px;
}
main#page-home section.nosotros .clientes_logos {
  position: relative;
}
main#page-home section.nosotros .clientes_logos .swiper-pagination {
  bottom: -50px !important;
}
main#page-home section.servicios {
  padding: 50px 0;
}
main#page-home section.servicios .servicios_content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
main#page-home section.servicios .servicios_list {
  margin-top: 40px;
}
main#page-home section.servicios .servicios_list .servicio_item {
  max-width: 438px;
  padding: 40px;
  background-color: #F1ECFE;
  box-shadow: 20px 20px 26px -11px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 20px 20px 26px -11px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 20px 20px 26px -11px rgba(0, 0, 0, 0.75);
  border-radius: 30px;
}
main#page-home section.servicios .servicios_list .servicio_item img {
  width: 70%;
  margin: 50px auto;
}
main#page-home section.servicios .servicios_list .servicio_item h3 {
  margin-bottom: 30px;
}
main#page-home .contact {
  padding: 6rem 2rem;
  background: #f9fafc;
}
main#page-home .contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  main#page-home .contact__wrapper {
    grid-template-columns: 1fr;
  }
}
main#page-home .contact__title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #0079D1;
}
main#page-home .contact__desc {
  margin-bottom: 2rem;
  color: #555;
  line-height: 1.6;
}
main#page-home .contact__details {
  list-style: none;
  padding: 0;
}
main#page-home .contact__details li {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
}
main#page-home .contact__details li i {
  margin-right: 0.8rem;
  color: #0079D1;
}
main#page-home .contact__form {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
main#page-home .contact__form .form-group {
  margin-bottom: 1.5rem;
}
main#page-home .contact__form .form-group input,
main#page-home .contact__form .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}
main#page-home .contact__form .form-group input:focus,
main#page-home .contact__form .form-group textarea:focus {
  border-color: #0079D1;
}
main#page-home .contact__form .btn {
  width: 100%;
  background: #0079D1;
  color: #fff;
  font-weight: 600;
  padding: 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s;
}
main#page-home .contact__form .btn:hover {
  background: rgb(0, 97.3789473684, 168.2);
}

/*# sourceMappingURL=home.css.map */
