/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");

/* Noway */
@font-face {
  font-family: "nowayregular";
  src: url("../fonts/noway-regular-webfont.eot");
  src: url("../fonts/noway-regular-webfont.eot?#iefix") format("embedded-opentype"),
    url("../fonts/noway-regular-webfont.woff2") format("woff2"),
    url("../fonts/noway-regular-webfont.woff") format("woff"),
    url("../fonts/noway-regular-webfont.ttf") format("truetype"),
    url("../fonts/noway-regular-webfont.svg#nowayregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Gotham Light */
@font-face {
  font-family: "gothamlight";
  src: url("../fonts/gotham-light-webfont.eot");
  src: url("../fonts/gotham-light-webfont.eot?#iefix") format("embedded-opentype"),
    url("../fonts/gotham-light-webfont.woff2") format("woff2"),
    url("../fonts/gotham-light-webfont.woff") format("woff"),
    url("../fonts/gotham-light-webfont.ttf") format("truetype"),
    url("../fonts/gotham-light-webfont.svg#gothamlight") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Gotham Bold */
@font-face {
  font-family: "gothambold";
  src: url("../fonts/gotham-bold-webfont.eot");
  src: url("../fonts/gotham-bold-webfont.eot?#iefix") format("embedded-opentype"),
    url("../fonts/gotham-bold-webfont.woff2") format("woff2"),
    url("../fonts/gotham-bold-webfont.woff") format("woff"),
    url("../fonts/gotham-bold-webfont.ttf") format("truetype"),
    url("../fonts/gotham-bold-webfont.svg#gothambold") format("svg");
  font-weight: normal;
  font-style: normal;
}

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

.font-noway {
  font-family: "nowayregular" !important;
}

/* Variables */
:root {
  --var-font-noway: "nowayregular";
  --var-font-parrafos: "gothamlight";
  --var-font-bold: "gothambold";
  --var-font-oswald: "Oswald", sans-serif;

  --var-color-dark: rgba(0, 0, 0, 1);
  --var-color-grey: rgb(184, 184, 184);
  --var-color-light: rgb(255, 255, 255);
  --var-color-azul: #193568;

  --var-text-small: 14px;
  --var-text-medium: 17px;
  --var-text-large: 20px;

  --bg-dark: rgba(11, 31, 60, 1);
  --bg-light: #fff;

  --text-dark: #000;
  --text-light: #fff;
  --text-grey: rgb(246, 246, 246);
  --text-color: #e15d0f;
}

/* Estilos Generales */
body {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.container-fluid {
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

a {
  text-decoration: none;
}

a.activo,
a.link-footer.activo {
  color: var(--text-color) !important;
}

a:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--var-font-noway);
  text-transform: uppercase;
  letter-spacing: 5px;
}

h1 {
  font-family: var(--var-font-noway);
  font-weight: normal;
  font-style: normal;
  margin-bottom: 10px;
  color: var(--text-dark);
}

h2 {
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 10px;
  color: var(--text-color);
}

.nosotros {
  font-size: 3rem !important;
}

.hero h5 {
  text-transform: uppercase;
}

p {
  font-family: var(--var-font-parrafos);
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0px;
  line-height: 1.5rem;
  margin-bottom: 15px;
  font-size: var(--var-text-large);
  color: var(--text-dark);
}

p small {
  color: var(--var-color-light);
}

.bg-gris {
  background-color: var(--bg-dark);
}

.bg-gris-claro {
  background-color: var(--text-grey);
  padding: 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.bg-naranja {
  background-color: var(--text-color);
}

.bg-contacto {
  background-color: var(--bg-dark);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Imagen de fondo */
.bg-contacto::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../imagenes/bg-contacto.webp") center center / cover no-repeat;
  z-index: 0;
}

/* Capa de color con opacidad */
.bg-contacto::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 60, 0.85);
  /* Ajusta la opacidad y color */
  z-index: 1;
}

/* Para que el contenido se vea arriba */
.bg-contacto>* {
  position: relative;
  z-index: 2;
}

.bg-white {
  background-color: var(--bg-light);
}

.numero {
  font-family: var(--var-font-noway);
  font-size: 2rem;
  width: 100px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-top: -50px;
  padding: 20px;
  color: var(--bg-light);
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  border: 4px solid var(--bg-light);
  background-color: var(--bg-dark);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.info {
  position: relative;
  padding-left: 25px;
}

.contacto-iconos {
  font-family: var(--var-font-noway);
  width: 70px;
  height: 70px;
  position: absolute;
  margin-left: -50px;
  padding: 15px;
  color: var(--bg-light);
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  border: 5px solid var(--bg-light);
  background-color: var(--bg-dark);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.info a {
  color: var(--bg-dark);
  text-decoration: none;
  transition: color 0.35s ease;
  -webkit-transition: color 0.35s ease;
  -moz-transition: color 0.35s ease;
  -ms-transition: color 0.35s ease;
  -o-transition: color 0.35s ease;
}

.info a:hover {
  color: var(--text-color);
}

.titulo-azul {
  max-width: 350px;
}

.titulo-azul p {
  font-family: var(--var-font-bold) !important;
  background-color: var(--bg-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  padding: 15px 35px;
  font-size: 1rem;
  text-align: center;
}

#servicios p {
  color: var(--bg-light);
}

#servicios a {
  font-family: var(--var-font-noway);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Split text */
.split,
.split-lines {
  overflow: hidden;
  will-change: transform;
}

.line {
  overflow: hidden;
  display: block;
}

.hero {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
      rgba(11, 31, 60, 0.8) 100%,
      rgba(11, 31, 60, 0.1) 0%,
      rgba(11, 31, 60, 0.1) 100%);
  background-size: 2px 5px;
  z-index: 1;
}

.hero-content {
  position: absolute;
  z-index: 3;
  color: var(--color-beige);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.encabezado {
  width: 100%;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 90px;
}

.encabezado h1 {
  color: var(--bg-light);
  font-size: 3rem;
  letter-spacing: 3px;
  font-weight: normal;
  font-style: normal;
}

.encabezado h2 {
  font-weight: normal;
  font-style: normal;
  font-size: clamp(1.5rem, 4vw, 2vw);
}

.encabezado p {
  color: var(--bg-light);
  font-size: 1.3rem;
  letter-spacing: 0px;
  font-weight: normal;
  font-style: normal;
}

.btn-encabezados {
  font-family: var(--var-font-noway);
  text-transform: uppercase;
  letter-spacing: 5px !important;
  font-weight: normal;
  font-style: normal;
  margin-top: 30px;
}

/* Parallax secciones */
.parallax-mask-secciones {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 500px;
}

.parallax-img-secciones {
  position: absolute;
  top: -50px;
  width: 100%;
  height: 150%;
  /* un poco más alto para mover */
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.container-parallax-secciones {
  position: relative;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-blanco);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 20px 0;
}

.container-parallax-secciones h1 {
  font-family: var(--var-font-noway);
  font-size: 2.15rem;
  color: var(--bg-light);
  font-weight: normal;
  font-style: normal;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 150px !important;
}

.container-parallax-secciones h2 {
  font-weight: normal;
  font-style: normal;
  font-size: 1.4rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.grid-item {
  margin-bottom: 20px;
}

.grid-item h3 {
  color: var(--text-color);
  text-transform: uppercase;
  font-size: 1.75rem;
  font-weight: normal;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.titulo-servicios {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  padding: 30px 0px;
  width: 100%;
}

.titulo-servicios::before {
  content: "";
  position: absolute;
  width: 100%;
  inset: 0;
  z-index: -1;
  background-image: url("../imagenes/fondo-titulo-servicios.svg");
  /* Cambiá el path */
  background-size: contain;
  /* o cover si querés que ocupe todo */
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}

/* Hide scroll */
#navbar {
  background-color: var(--bg-dark);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--bg-dark);
  z-index: 9999;
  transition: top 0.8s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-transition: top 0.8s ease;
  -moz-transition: top 0.8s ease;
  -ms-transition: top 0.8s ease;
  -o-transition: top 0.8s ease;
}

/* Cabecera */
.logo {
  width: 130px;
  height: auto;
  transition: opacity 0.75s ease;
  -webkit-transition: opacity 0.75s ease;
  -moz-transition: opacity 0.75s ease;
  -ms-transition: opacity 0.75s ease;
  -o-transition: opacity 0.75s ease;
}

.logo:hover {
  cursor: pointer;
  opacity: 0.7;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 10px;
}

.menu ul li a {
  font-family: var(--var-font-noway);
  color: var(--text-light);
  text-decoration: none;
  font-size: 15px;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  display: initial;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.menu ul li a:hover {
  cursor: pointer;
  color: var(--text-color);
}

.menu ul li a.activo {
  cursor: pointer;
  color: var(--text-color);
}

@media screen and (max-width: 1000px) {
  .menu {
    display: none;
  }
}

nav#navbar {
  width: 100%;
  max-width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
}

/* Overlay negro */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(11, 31, 60, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.75s ease;
  z-index: 998;
  -webkit-transition: opacity 0.7s ease;
  -moz-transition: opacity 0.7s ease;
  -ms-transition: opacity 0.7s ease;
  -o-transition: opacity 0.7s ease;
}

/* Mostrar overlay */
#overlay.active {
  opacity: 1;
  visibility: visible;
}

/* SUBMENÚ DESKTOP */
.menu ul li a.activo {
  cursor: pointer;
  color: var(--text-color);
}

.menu ul li.has-submenu {
  position: relative;
}

.submenu li {
  margin-bottom: 6px;
  margin-top: 7px;
}

.menu ul li.has-submenu:hover .submenu,
.menu ul li.has-submenu .submenu {
  display: block;
  padding: 20px 30px;
}

/* Estado inicial de la flecha */
.flecha-submenu {
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

/* Cuando el ítem está en hover, giramos la flecha */
.menu ul li.has-submenu:hover .flecha-submenu {
  transform: rotate(180deg);
}

.flecha-submenu.rotada {
  transform: rotate(180deg);
  color: var(--text-color);
}

.flecha-submenu.rotada.activo {
  transform: rotate(180deg);
  color: var(--text-color) !important;
}

/* Oculta el menú mobile en escritorio */
.btn-submenu {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
  display: block;
  margin-bottom: 5px !important;
}

a.btn-submenu.activo {
  color: var(--text-color) !important;
}

/* Icono hamburguesa */
.menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 1000;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: var(--bg-light);
  transition: 0.35s;
}

/* Estilos para la cruz */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: var(--text-color);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background-color: var(--text-color);
}

/* Mostrar botón hamburguesa en mobile */
@media (max-width: 1000px) {
  #menu {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-top: -14px;
  }
}

/* Delay de aparicion Menú Mobile */
.menu-mobile.active li:nth-child(1) {
  transition-delay: 0.075s;
  margin-top: 5px;
}

.menu-mobile.active li:nth-child(2) {
  transition-delay: 0.15s;
}

.menu-mobile.active li:nth-child(3) {
  transition-delay: 0.225s;
}

.menu-mobile.active li:nth-child(4) {
  transition-delay: 0.3s;
}

.menu-mobile.active li:nth-child(5) {
  transition-delay: 0.375s;
}

.menu-mobile.active li:nth-child(6) {
  transition-delay: 0.45s;
}

.menu-mobile.active li:nth-child(7) {
  transition-delay: 0.5225s;
}

.menu-mobile.active li:nth-child(8) {
  transition-delay: 0.6s;
}

/* Menú Mobile */
.menu-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 230px;
  height: 100vh;
  background-color: rgba(11, 31, 60, 0.9);
  padding: 120px 30px;
  z-index: 999;
  transition: right 0.35s ease;
  -webkit-transition: right 0.35s ease;
  -moz-transition: right 0.35s ease;
  -ms-transition: right 0.35s ease;
  -o-transition: right 0.35s ease;
}

.menu-mobile ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 20px;
}

.menu-mobile li {
  font-family: var(--var-font-noway);
  opacity: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
  transform: translateY(12px);
  -webkit-transform: translateY(12px);
  -moz-transform: translateY(12px);
  -ms-transform: translateY(12px);
  -o-transform: translateY(12px);
  transition: all 0.75s ease;
  -webkit-transition: all 0.75s ease;
  -moz-transition: all 0.75s ease;
  -ms-transition: all 0.75s ease;
  -o-transition: all 0.75s ease;
}

/* Mostrar menú */
.menu-mobile.active {
  right: 0;
}

.menu-mobile.active li {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

/* SUBMENÚ MOBILE */
.menu-mobile li.has-submenu-mobile>a::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-size: contain;
  margin-left: 5px;
  vertical-align: middle;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  background: url("../imagenes/flecha-abajo.svg") no-repeat center;
}

.menu-mobile li.has-submenu-mobile.open>a::after {
  transform: rotate(180deg);
  /* Rota la flecha 180 grados */
}

.menu-mobile li.has-submenu-mobile ul.submenu-mobile {
  max-height: 0;
  overflow: hidden;
  padding-left: 0px;
  margin-top: 0px;
  transition: max-height 0.4s ease;
  -webkit-transition: max-height 0.4s ease;
  -moz-transition: max-height 0.4s ease;
  -ms-transition: max-height 0.4s ease;
  -o-transition: max-height 0.4s ease;
}

/* Cuando está abierto */
.menu-mobile li.has-submenu-mobile.open ul.submenu-mobile {
  max-height: 500px !important;
}

/* === SUBMENÚ DESKTOP === */
.has-submenu {
  position: relative;
}

.has-submenu>.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  background: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.25);
  list-style: none;
  padding: 15px 0;
  opacity: 0;
  transform-origin: top;
  pointer-events: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  width: max-content;
  z-index: 1000;
  transition: transform 0.5s ease, opacity 0.5s ease;
  -webkit-transition: transform 0.5s ease, opacity 0.5s ease;
  -moz-transition: transform 0.5s ease, opacity 0.5s ease;
  -ms-transition: transform 0.5s ease, opacity 0.5s ease;
  -o-transition: transform 0.5s ease, opacity 0.5s ease;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transform: translateX(-50%) translateY(10px);
  -webkit-transform: translateX(-50%) translateY(10px);
  -moz-transform: translateX(-50%) translateY(10px);
  -ms-transform: translateX(-50%) translateY(10px);
  -o-transform: translateX(-50%) translateY(10px);
}

.has-submenu:hover>.submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0px);
  -webkit-transform: translateX(-50%) translateY(0px);
  -moz-transform: translateX(-50%) translateY(0px);
  -ms-transform: translateX(-50%) translateY(0px);
  -o-transform: translateX(-50%) translateY(0px);
}

/* Links activos en modo Mobile */
.menu-mobile a.btn-gral-underline.activo {
  color: var(--text-color);
  /* Asegura que tome el color activo */
}

.menu-mobile a.btn-gral-underline.activo::after {
  transform-origin: left;
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
}

nav {
  display: flex;
  justify-content: center;
}

/* Parallax */
.grid-parallax {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
}

/* Máscara fija que oculta el overflow */
.parallax-mask {
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  /* opcional, para bordes redondeados */
}

/* Imagen que se mueve dentro de la máscara */
.parallax-img {
  position: absolute;
  width: 100%;
  height: 150%;
  /* un poco más alto para mover */
  background-size: cover;
  background-position: center;
  will-change: transform;
}

a.btn-gral {
  font-family: var(--var-font-noway);
  background-color: var(--bg-dark);
  border: 1px solid var(--bg-dark);
  padding: 20px 30px;
  color: var(--text-light);
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  font-size: 1rem;
  letter-spacing: 2px;
  font-weight: normal;
  font-style: normal;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

a.btn-gral:hover {
  cursor: pointer;
  background-color: var(--text-color);
  color: var(--text-dark);
  border: 1px solid var(--text-color);
}

/* Efecto underline para los items del menu */
a.btn-gral-underline {
  color: var(--text-light);
  text-decoration: none;
  display: initial;
  position: relative;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
  font-weight: 300;
  overflow: hidden;
}

a.btn-gral-underline:hover {
  cursor: pointer;
  color: var(--text-color);
}

a.btn-gral-underline::after {
  content: "";
  position: absolute;
  height: 1.5px;
  background-color: var(--text-color);
  bottom: 0;
  left: 0;
  right: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.15s ease-in-out;
  -webkit-transition: transform 0.15s ease-in-out;
  -moz-transition: transform 0.15s ease-in-out;
  -ms-transition: transform 0.15s ease-in-out;
  -o-transition: transform 0.15s ease-in-out;
}

a.btn-gral-underline:hover::after {
  transform-origin: left;
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
}

a.btn-gral-underline:not(:hover)::after {
  transform-origin: right;
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
}

a.btn-gral-underline.activo {
  color: var(--text-color);
}

a.btn-gral-underline.activo::after,
.submenu a.btn-gral-underline.activo::after {
  transform-origin: left;
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
}

/* Formulario de contacto */
#formulario {
  width: 90%;
  margin: auto;
  gap: 10px;
  color: var(--color-blanco);
  font-family: var(--var-font-oswald);
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 3px;
}

#formulario label {
  font-family: var(--var-font-noway);
  color: var(--bg-light);
  display: block;
  margin-bottom: 5px;
}

#formulario input:focus,
#formulario textarea:focus {
  font-family: var(--var-font-parrafos);
  outline: none;
  box-shadow: none;
  border-color: var(--text-color);
  transition: box-shadow 0.35s ease, border 0.35s ease;
  -webkit-transition: box-shadow 0.35s ease, border 0.35s ease;
  -moz-transition: box-shadow 0.35s ease, border 0.35s ease;
  -ms-transition: box-shadow 0.35s ease, border 0.35s ease;
  -o-transition: box-shadow 0.35s ease, border 0.35s ease;
}

#formulario input:focus,
#formulario textarea:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--text-color);
  transition: box-shadow 0.35s ease, border 0.35s ease;
  -webkit-transition: box-shadow 0.35s ease, border 0.35s ease;
  -moz-transition: box-shadow 0.35s ease, border 0.35s ease;
  -ms-transition: box-shadow 0.35s ease, border 0.35s ease;
  -o-transition: box-shadow 0.35s ease, border 0.35s ease;
}

#formulario input,
#formulario textarea {
  font-family: var(--var-font-parrafos);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.3px;
  width: 100%;
  padding: 10px;
  background: var(--bg-dark);
  color: var(--text-light);
  font-weight: 200;
  border: 1px solid rgba(255, 255, 255, 0.15);
  resize: vertical;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

#contactForm button {
  font-family: var(--var-font-noway);
  text-transform: uppercase;
  width: 100%;
  padding: 15px;
  background: var(--bg-light);
  color: var(--text-color);
  font-size: 1.2rem;
  font-weight: normal;
  font-size: normal;
  letter-spacing: 3px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.35s, color 0.35s;
  -webkit-transition: background-color 0.35s, color 0.35s;
  -moz-transition: background-color 0.35s, color 0.35s;
  -ms-transition: background-color 0.35s, color 0.35s;
  -o-transition: background-color 0.35s, color 0.35s;
}

#contactForm button:hover {
  background: var(--text-color);
  color: var(--bg-dark);
}

/* Pie */
footer {
  background-color: var(--text-grey);
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 50px;
}

footer h4 {
  font-family: var(--var-font-noway);
  font-size: 1rem;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 2px;
  color: var(--text-color);
}

footer p {
  font-size: 0.85rem;
  color: var(--text-dark);
  letter-spacing: 0.175px;
  font-weight: 300;
  line-height: 1.15rem;
}

footer ul li {
  font-family: var(--var-font-bold);
  font-size: 0.9rem;
  text-transform: capitalize;
  list-style: none;
  text-decoration: none;
  list-style: none;
}

.link-footer {
  position: relative;
  letter-spacing: 0.2px !important;
  font-size: 1.15em !important;
  color: var(--text-dark);
  display: inline-block;
}

.link-footer:hover {
  color: var(--text-color);
  transition: all 0.25s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0s;
  cursor: pointer;
}

.link-footer::before,
.link-footer.activo::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--text-color);
  visibility: visible;
  transition: all 0.25s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0s;
  cursor: pointer;
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
}

.link-footer:hover::before,
.link-footer:hover.activo::before {
  visibility: hidden;
  -webkit-transition: all 0.25s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0s;
  transition: all 0.25s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0s;
  -moz-transition: all 0.25s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0s;
  -ms-transition: all 0.25s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0s;
  -o-transition: all 0.25s cubic-bezier(0.79, 0.14, 0.15, 0.86) 0s;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
}

footer a {
  font-family: var(--var-font-parrafos);
  color: var(--text-light);
  list-style: none;
  text-decoration: none;
  font-weight: normal;
  display: initial;
  line-height: 2.5rem;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

footer a:hover {
  cursor: pointer;
  color: var(--text-color);
}

footer img {
  width: 30px;
  margin-bottom: 20px;
}

.logo-footer {
  width: 120px;
}

/* Transicion entre paginas */
.transition {
  animation: fade 1.25s backwards;
  -webkit-animation: fade 1.25s backwards;
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Boton top */
button.btn-scroll {
  margin-top: 15px;
}

#btn-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 45px;
  height: 45px;
  padding: 5px;
  font-size: var(--font-medium);
  color: var(--text-color);
  border: 1px solid var(--bg-dark);
  background-color: var(--bg-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--text-light);
  transition: opacity 0.5s ease, transform 0.5s ease, color 0.5s ease,
    border 0.5s ease, background-color 0.5s ease;
  -webkit-transition: opacity 0.5s ease, transform 0.5s ease, color 0.5s ease,
    border 0.5s ease, background-color 0.5s ease;
  -moz-transition: opacity 0.5s ease, transform 0.5s ease, color 0.5s ease,
    border 0.5s ease, background-color 0.5s ease;
  -ms-transition: opacity 0.5s ease, transform 0.5s ease, color 0.5s ease,
    border 0.5s ease, background-color 0.5s ease;
  -o-transition: opacity 0.5s ease, transform 0.5s ease, color 0.5s ease,
    border 0.5s ease, background-color 0.5s ease;
  border-radius: 50%;
  border-radius: 5px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

#btn-top:hover {
  color: var(--text-dark);
  border: 1px solid var(--text-color);
  background-color: var(--text-color);
}

/* Estado inicial (oculto) */
.btn-top-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%) scale(0);
  -webkit-transform: translateY(100%) scale(0);
  -moz-transform: translateY(100%) scale(0);
  -ms-transform: translateY(100%) scale(0);
  -o-transform: translateY(100%) scale(0);
}

/* Estado visible con animación */
.btn-top-visible {
  opacity: 1;
  pointer-events: auto;
  padding: 5px;
  transform: translateY(0%) scale(1);
  -webkit-transform: translateY(0%) scale(1);
  -moz-transform: translateY(0%) scale(1);
  -ms-transform: translateY(0%) scale(1);
  -o-transform: translateY(0%) scale(1);
}

/* Utilidades */
.w-70 {
  width: 70%;
  margin: auto;
}

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

.text-justify {
  text-align: justify;
}

.text-right {
  text-align: right !important;
}

.m-auto {
  margin: auto;
}

.mr-5 {
  margin-right: 10px;
}

.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.my-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.my-100 {
  margin-top: 100px;
  margin-bottom: 100px;
}

.p-20 {
  padding: 20px;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.d-flex {
  display: flex;
}

.align-content-center {
  align-content: center;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

img {
  max-width: 100%;
  object-fit: cover;
}

.text-white {
  color: var(--text-light);
  text-transform: none;
  font-style: normal;
  font-weight: normal;
}

.pr-10 {
  padding-right: 10px;
}