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

:root {
  --white: #ffffff;
  --black-rgb: rgba(22, 22, 22, 1);
  --accent: #a6a6a6;
  --black: #000000;
  --gray: #;
  --light-white: #fffefe;
  --ff-ss: "Montserrat", sans-serif;
  --ff-s: "Roboto Slab", serif;
  --sec-pad: 14rem 0;
}

html {
  height: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 70%;
}

body {
  background: radial-gradient(circle, rgb(0, 0, 0) 0%, rgb(11, 11, 11) 100%);
  font-family: var(--ff-ss);
  position: relative;
  line-height: 1.3;
  box-sizing: border-box;
  color: var(--black);
}

.btn {
  margin: 1rem 0;
  border-radius: 0.25rem;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 600;
  padding: 8px 25px;
  text-decoration: none;
  color: var(--black-rgb);
  font-size: 1.15rem;
  line-height: 14px;
  letter-spacing: 1.2px;
  transition: 0.2s 0.1s;
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgb(242, 242, 242) 50%);
  border: 1px solid;
  overflow: hidden;
}

.btn:hover,
.btn:focus {
  cursor: pointer;
  font-size: 120%;
  transition: all 0.3s cubic-bezier(0.6, -0.28, 0.47, 1.57);
  padding-right: 100px;
  padding-left: 30px;
}

.btn-center {
  margin: 1rem 0;
  border-radius: 0.25rem;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  padding: 8px 25px;
  text-decoration: none;
  color: var(--black-rgb);
  height: 33px;
  font-size: 1.15rem;
  line-height: 14px;
  letter-spacing: 1.2px;
  transition: 0.2s 0.1s;
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgb(242, 242, 242) 50%);
  border: 1px solid;
  border-color: transparent;
  overflow: hidden;
}

.btn-center:hover,
.btn-center:focus {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.6, -0.28, 0.47, 1.57);
  font-size: 1.19rem;
  padding-right: 50px;
  padding-left: 50px;
}

.section-title {
  width: fit-content;
  place-self: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 7vw, 2.7rem);
  font-weight: 500;
  text-align: center;
  position: relative;
  color: var(--white);
}

.section-title::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.158) 5%, rgb(255, 255, 255) 45%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 55%, rgba(255, 255, 255, 0.158) 95%);
  display: block;
  left: -50%;
  top: 130%;
  height: 1px;
  width: 200%;
  place-self: center;
}

.nav {
  position: fixed;
  z-index: 100;
  height: 90px;
  top: 0;
  left: 0;
  width: 100%;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.nav .navbar {
  height: 90px;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: auto auto;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-template-areas: "logo nav";
  justify-content: space-between;
  align-content: center;
  width: 100%;
  margin: 0 auto;
  max-width: 1480px;
  background-color: var(--grey);
}
.nav .navbar .logo-scrolled {
  margin-left: 2.5rem;
  height: 50px;
  justify-self: start;
  align-self: center;
  grid-area: logo;
}
.nav .navbar .menu {
  justify-self: right;
  align-self: center;
  cursor: pointer;
  margin: 2rem 2.5rem 0 0;
  padding-left: 1.25em;
  position: relative;
  width: 40px;
  height: 40px;
}
.nav .navbar .menu .menu-global {
  backface-visibility: hidden;
  position: absolute;
  left: 0;
  border-top: 2px solid rgb(255, 255, 255);
  width: 90%;
  transition: 0.55s;
}
.nav .navbar .menu .menu-top {
  top: 0;
}
.nav .navbar .menu .menu-middle {
  top: 10px;
}
.nav .navbar .menu .menu-bottom {
  top: 20px;
}
.nav .navbar .menu .menu-top-click {
  backface-visibility: hidden;
  top: 15px;
  transform: rotate(40deg);
  transition: 0.55s 0.5s;
}
.nav .navbar .menu .menu-middle-click {
  opacity: 0;
}
.nav .navbar .menu .menu-bottom-click {
  backface-visibility: hidden;
  top: 15px;
  transform: rotate(-400deg);
  transition: 0.55s 0.5s;
}
.nav .navbar .navbar-nav {
  grid-area: nav;
  display: flex;
  justify-content: right;
  margin-right: 2.5rem;
  list-style: none;
  transition: 0.4s;
}
.nav .navbar .navbar-nav .nav-item {
  font-size: 1.3rem;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0 10px;
  line-height: 90px;
  width: max-content;
  text-shadow: 0px 1px 2px #000;
  transition: 0.1ms;
}
.nav .navbar .navbar-nav .nav-item .nav-link {
  opacity: 0.6;
  color: var(--white);
  border-bottom: 1px solid transparent;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.nav .navbar .navbar-nav .nav-item .nav-link:hover,
.nav .navbar .navbar-nav .nav-item .nav-link:focus {
  border-bottom: 1px solid #fff;
  opacity: 1;
}
.nav .navbar .col-btn {
  position: relative;
  z-index: 30;
  color: var(--white);
  background: none;
  border: none;
  font-size: 35px;
  padding: 0 20px;
  line-height: 80px;
  display: none;
  cursor: pointer;
}

.navbar-scrolled {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(56, 56, 56, 0.75);
  border: 1px solid rgba(29, 29, 29, 0.125);
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

@media (max-width: 600px) {
  .nav .navbar {
    transition: left 1.5s;
  }
  .nav .navbar .navbar-nav {
    margin-right: 0;
    flex-direction: column;
    position: fixed;
    opacity: 0;
    top: -100%;
    transition: opacity 1.5s cubic-bezier(0.47, 0.84, 0.26, 1.57) 0.1s, top 0.5s, background 1s ease-in 0.1s;
    width: 100%;
    padding: 4.5rem 0 4.5rem 0;
    align-items: center;
    background: transparent;
  }
  .nav .navbar .navbar-nav .nav-item {
    opacity: 1;
    font-weight: 300;
    line-height: 30px;
    margin: 1rem 0;
  }
  .nav .navbar .navbar-nav .nav-item .nav-link {
    position: relative;
    margin: 10px;
  }
  .nav .navbar .navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.158) 5%, rgb(255, 255, 255) 45%, rgb(144, 209, 250) 50%, rgb(255, 255, 255) 55%, rgba(255, 255, 255, 0.158) 95%);
    display: block;
    left: -50%;
    top: 140%;
    height: 1px;
    width: 200%;
    place-self: center;
    transition: width 0.2s, left 0.2s;
  }
  .nav .navbar .navbar-nav .nav-item .nav-link:hover {
    border-bottom: 0px solid transparent;
    text-shadow: 0px 1px 4px #d1d1d1;
    font-weight: 400;
  }
  .nav .navbar .navbar-nav .nav-item .nav-link:hover::after {
    width: 250%;
    left: -75%;
  }
  .nav .navbar .navbar-nav::after {
    display: none;
  }
  .nav .navbar .navbar-nav_visible {
    opacity: 1;
    top: 0%;
    background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(2, 6, 13) 58%, rgba(2, 6, 13, 0.9640231092) 70%, rgba(2, 6, 13, 0.9332107843) 75%, rgba(2, 6, 13, 0.8967962185) 80%, rgba(2, 6, 13, 0.8351715686) 85%, rgba(2, 6, 13, 0.6530987395) 90%, rgba(2, 6, 13, 0) 100%);
  }
  .nav .navbar .logo {
    transition: 0.3s;
    font-size: 20px;
    line-height: 90px;
    margin-left: 15px;
  }
  .nav .navbar .logo .logo-img {
    width: 63px;
    height: 80px;
  }
  .nav .navbar .col-btn {
    display: block;
  }
  .navbar-visible {
    background: transparent;
  }
  .navbar-nav_visible {
    opacity: 1;
  }
  .nav-toggle:focus:not(:focus-visible) {
    outline: none;
  }
}
.main-grid {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(5, 7, 8, 0.1), rgba(5, 7, 12, 0.1)), url(/assets/background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0px 1px 38px 2px rgba(0, 0, 0, 0.75) inset;
  -webkit-box-shadow: 0px 1px 38px 2px rgba(0, 0, 0, 0.75) inset;
  -moz-box-shadow: 0px 1px 38px 2px rgba(0, 0, 0, 0.75) inset;
}
.main-grid .grid-img {
  position: relative;
  height: clamp(400px, 60vh, 400px);
}
.main-grid .grid-content {
  margin: 0 3rem;
}
.main-grid .grid-content .title {
  text-align: left;
  font-size: clamp(4.5rem, 8vw, 6rem);
  text-shadow: 1px 1.5px 1px #000;
  line-height: 1;
  font-weight: 700;
  color: var(--white);
}
.main-grid .grid-content .sub-title {
  margin-top: 0.8rem;
  margin-bottom: 2rem;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  text-transform: uppercase;
  text-shadow: 0px 1px 2px #000;
  font-weight: 300;
  color: var(--white);
}
.main-grid .grid-content .sub-title b {
  color: var(--grey);
}
.main-grid .grid-content .sub-title .salto2 {
  display: none;
}

@media (max-width: 1150px) {
  .main-grid .grid-img {
    margin-left: 3rem;
    top: 0;
    height: clamp(300px, 40vw, 400px);
  }
  .main-grid .grid-content {
    margin-left: 1rem;
  }
  .main-grid .grid-content .title {
    font-size: clamp(4rem, 6vw, 6rem);
  }
  .main-grid .grid-content .sub-title {
    font-size: clamp(1.3rem, 3.5vw, 1.5rem);
  }
  .main-grid .grid-content .sub-title .salto2 {
    display: block;
  }
}
@media (max-width: 576px) {
  .main-grid {
    flex-direction: column;
  }
  .main-grid .grid-img {
    margin: 0 0 0.5rem;
    height: clamp(350px, 80vw, 450px);
    top: 0;
  }
  .main-grid .grid-content {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    margin: 0 1rem;
  }
  .main-grid .grid-content .title {
    font-size: clamp(3rem, 8vw, 4.5rem);
    text-align: center;
    margin-top: 1rem;
  }
  .main-grid .grid-content .title br {
    display: none;
  }
  .main-grid .grid-content .sub-title {
    text-align: center;
    margin-bottom: 1rem;
  }
  .main-grid .grid-content .sub-title .salto2 {
    display: block;
  }
  .main-grid .grid-content .btn-center {
    margin-top: 0.5rem;
  }
}
.ser {
  padding: var(--sec-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.ser .title {
  margin-bottom: 4rem;
}
.ser .ser-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
}
.ser .ser-container .ser-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.ser .ser-container .ser-content .ser-card {
  display: flex;
  position: relative;
  margin-top: 6rem;
}
.ser .ser-container .ser-content .ser-card .ser-box {
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgb(242, 242, 242) 50%);
  color: var(--black);
  padding: 2rem 2rem;
  width: clamp(300px, 50vw, 500px);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  z-index: 10;
  height: clamp(200px, 30vw, 300px);
  display: flex;
  flex-direction: column;
}
.ser .ser-container .ser-content .ser-card .ser-box .ser-text-content .ser-tittle {
  font-size: clamp(1.2rem, 5vw, 2rem);
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.ser .ser-container .ser-content .ser-card .ser-box .ser-text-content .ser-text {
  text-align: left;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
}
.ser .ser-container .ser-content .ser-card .ser-box .metricas {
  display: grid;
  place-items: center;
  margin-top: auto;
}
.ser .ser-container .ser-content .ser-card .ser-box .metricas .metricas-element {
  margin-top: 5px;
  height: 100px;
  aspect-ratio: 16/9;
}
.ser .ser-container .ser-content .ser-card .ser-img {
  height: clamp(200px, 30vw, 300px);
  aspect-ratio: 4/3;
  margin: auto 0;
  z-index: 9;
}
.ser .ser-container .ser-content .ser-top-card {
  margin-top: 0;
}
.ser .btn-center {
  margin-top: 3rem;
  padding: 12px 25px;
  font-size: 1.5rem;
  height: auto;
}
.ser .btn-center:hover,
.ser .btn-center:focus {
  padding: 12px 50px;
}

@media (max-width: 830px) {
  .ser .ser-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    height: unset;
  }
  .ser .ser-container .ser-content .ser-card {
    flex-direction: column;
    height: auto;
    align-items: center;
  }
  .ser .ser-container .ser-content .ser-card .ser-box {
    height: auto;
    width: clamp(250px, 90vw, 500px);
  }
  .ser .ser-container .ser-content .ser-card .ser-img {
    height: auto;
    width: clamp(250px, 85vw, 400px);
  }
}

.portfolio {
  padding: var(--sec-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  max-width: 1080px;
}
.portfolio .title .section-title::after {
  width: 100%;
  left: 0%;
}
.portfolio .content .text {
  text-align: center;
  color: var(--white);
  margin: 3rem 0;
  font-size: medium;
  font-weight: 300;
}






/* 
.prod {
  padding: var(--sec-pad);
}
.prod .prod-container {
  display: grid;
  place-content: center;
  margin: 0 15%;
}
.prod .prod-container .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 6rem;
  margin-top: 5rem;
}
.prod .prod-container .grid .grid-item {
  width: 270px;
  height: 420px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: none;
  transition: clip-path cubic-bezier(0.075, 0.82, 0.165, 1) 1s, transform cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
  -webkit-clip-path: polygon(15% 0, 100% 0, 100% 90%, 85% 100%, 0 100%, 0% 60%, 0 10%);
  clip-path: polygon(15% 0, 100% 0, 100% 90%, 85% 100%, 0 100%, 0% 60%, 0 10%);
  cursor: pointer;
  box-shadow: 0 5px 10px rgb(0, 0, 0);
}
.prod .prod-container .grid .grid-item .card-img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.prod .prod-container .grid .grid-item .card-content {
  position: relative;
  top: -420px;
  height: 420px;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 20%, #000000 100%);
}
.prod .prod-container .grid .grid-item .card-content .contenido {
  margin-top: auto;
  margin-bottom: 2.2rem;
}
.prod .prod-container .grid .grid-item .card-content .contenido .card-header {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
}
.prod .prod-container .grid .grid-item .card-content .contenido .card-header::after {
  content: " ";
  position: absolute;
  height: 3px;
  width: 100%;
  left: -1rem;
  bottom: -0.5rem;
  background: var(--white);
}
.prod .prod-container .grid .grid-item .card-content .contenido .card-text {
  font-size: 1rem;
  letter-spacing: 0.1rem;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.prod .prod-container .grid .grid-item .card-content .contenido .btn-card {
  border-radius: 0.25rem;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  padding: 8px 25px;
  text-decoration: none;
  color: var(--black-rgb);
  -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 60%, 90% 100%, 0 100%, 0% 60%, 0 0);
  clip-path: polygon(50% 0%, 100% 0, 100% 60%, 90% 100%, 0 100%, 0% 60%, 0 0);
  font-size: 1.15rem;
  letter-spacing: 1.2px;
  transition: 0.2s 0.1s;
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgb(242, 242, 242) 50%);
  margin-bottom: 5px;
}
.prod .prod-container .grid .grid-item .card-content .contenido .btn-card:hover,
.prod .prod-container .grid .grid-item .card-content .contenido .btn-card:focus {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.6, -0.28, 0.47, 1.57);
  padding-right: 80px;
  padding-left: 30px;
}
.prod .prod-container .grid .grid-item:hover,
.prod .prod-container .grid .grid-item:active {
  transition: 0.2s;
  transform: scale(1.05);
}

@media (max-width: 1050px) {
  .prod .prod-container .grid {
    grid-gap: 30px;
  }
}
@media (max-width: 980px) {
  .prod .prod-container .grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
  }
}
@media (max-width: 660px) {
  .prod .prod-container .grid {
    grid-template-columns: 1fr;
  }
} */





.clientes {
  padding-top: 14rem;
  display: grid;
  place-items: center;
}
.clientes .title {
  margin: 0 20px;
}
.clientes .title .section-title {
  margin-bottom: 50px;
}
.clientes .title .section-title::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.158) 5%, rgb(255, 255, 255) 45%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 55%, rgba(255, 255, 255, 0.158) 95%);
  display: block;
  left: 0;
  top: 130%;
  height: 1px;
  width: 100%;
  place-self: center;
}
.clientes .client-grid {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  align-content: center;
  width: 100%;
}
.clientes .client-grid .client-card {
  position: relative;
  overflow: hidden;
}
.clientes .client-grid .client-card .client-img {
  width: 100%;
  display: block;
  transition: transform 0.5;
}
.clientes .client-grid .client-card .client-info {
  height: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 20px;
  font-size: 18px;
  transition: height 0.5s;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
}
.clientes .client-grid .client-card .client-info .client-name {
  color: var(--white);
}
.clientes .client-grid .client-card .client-info .client-service {
  color: var(--white);
}
.clientes .client-grid .client-card:hover .client-info,
.clientes .client-grid .client-card:focus .client-info {
  height: 100%;
}

@media (max-width: 1080px) {
  .clientes .client-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 660px) {
  .clientes .client-grid {
    grid-template-columns: 1fr;
  }
}
.contacto {
  padding: 8rem 0 6rem 0;
  background: #060606;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.contacto .section-title {
  color: var(--white);
}
.contacto .section-title::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.158) 5%, rgb(255, 255, 255) 45%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 55%, rgba(255, 255, 255, 0.158) 95%);
}
.contacto .contacto-contenido {
  display: grid;
  place-items: center;
  grid-template-columns: 1fr 1fr;
  margin-top: 5rem;
  align-self: center;
  grid-column-gap: 5vw;
  max-width: 1240px;
}
.contacto .contacto-contenido .contacto-form {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto auto auto auto auto auto;
  justify-content: center;
}
.contacto .contacto-contenido .contacto-form .wave-group {
  position: relative;
  margin-bottom: 25px;
}
.contacto .contacto-contenido .contacto-form .wave-group .input {
  color: #ffffff;
  font-size: 16px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 250px;
  border: none;
  border-bottom: 1px solid #515151;
  background: transparent;
}
.contacto .contacto-contenido .contacto-form .wave-group .input:focus {
  outline: none;
}
.contacto .contacto-contenido .contacto-form .wave-group .label {
  color: #999;
  font-size: 18px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  display: flex;
  background: transparent;
}
.contacto .contacto-contenido .contacto-form .wave-group .label .label-char {
  transition: 0.2s ease all;
  transition-delay: calc(var(--index) * 0.05s);
}
.contacto .contacto-contenido .contacto-form .wave-group .error-message {
  display: block;
  margin: 0.5rem 0;
  width: 250px;
  padding: 5px;
  outline: 1px solid #ffffff;
  background: #620e0e;
  border-radius: 2px;
}
.contacto .contacto-contenido .contacto-form .wave-group .required-color {
  color: var(--accent);
}
.contacto .contacto-contenido .contacto-form .wave-group .hide {
  display: none;
}
.contacto .contacto-contenido .contacto-form .wave-group .bar {
  position: relative;
  display: block;
  width: 250px;
}
.contacto .contacto-contenido .contacto-form .wave-group .bar::before,
.contacto .contacto-contenido .contacto-form .wave-group .bar::after {
  content: "";
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #ffffff;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
.contacto .contacto-contenido .contacto-form .wave-group .bar:before {
  left: 50%;
}
.contacto .contacto-contenido .contacto-form .wave-group .bar:after {
  right: 50%;
}
.contacto .contacto-contenido .contacto-form .wave-group .consulta {
  color: #ffffff;
  font-size: 16px;
  padding: 5px 5px 10px 5px;
  margin-top: 10px;
  display: block;
  width: 250px;
  border: none;
  background: transparent;
  border-bottom: 1px solid #515151;
  height: 125px;
  border-left: 1px solid #515151;
  resize: none;
}
.contacto .contacto-contenido .contacto-form .wave-group .consulta:focus {
  outline: none;
}
.contacto .contacto-contenido .contacto-form .wave-group .consulta:focus ~ label .label-char,
.contacto .contacto-contenido .contacto-form .wave-group .consulta:valid ~ label .label-char {
  transform: translateY(-26px);
  font-size: 14px;
  color: #ffffff;
  position: relative;
}
.contacto .contacto-contenido .contacto-form .wave-group .input:focus ~ label .label-char,
.contacto .contacto-contenido .contacto-form .wave-group .input:valid ~ label .label-char {
  transform: translateY(-26px);
  font-size: 14px;
  color: #ffffff;
  position: relative;
}
.contacto .contacto-contenido .contacto-form .wave-group .input:focus ~ .bar:before,
.contacto .contacto-contenido .contacto-form .wave-group .input:focus ~ .bar:after {
  width: 50%;
}
.contacto .contacto-contenido .contacto-form .valid {
  color: var(--accent);
  background: #127824;
  outline: 1px solid #ffffff;
  color: #fff;
  padding: 5px;
  border-radius: 2px;
}
.contacto .contacto-contenido .contacto-form .error {
  color: var(--white);
  outline: 1px solid #ffffff;
  background: #620e0e;
  padding: 5px;
  border-radius: 2px;
}
.contacto .contacto-contenido .contacto-info {
  display: grid;
  place-items: center;
}
.contacto .contacto-contenido .contacto-info .contacto-box {
  width: clamp(290px, 90%, 500px);
  padding: 20px;
  color: var(--white);
}
.contacto .contacto-contenido .contacto-info .contacto-box .box-socialMedia {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 0.8rem;
}
.contacto .contacto-contenido .contacto-info .contacto-box .box-socialMedia .social-media {
  display: grid;
  list-style: none;
}
.contacto .contacto-contenido .contacto-info .contacto-box .box-socialMedia .social-media .social-media-icon {
  margin-top: 0.6rem;
}
.contacto .contacto-contenido .contacto-info .contacto-box .box-socialMedia .social-media .social-media-icon .social-media-icon-link {
  color: var(--white);
  font-size: 1.2rem;
  text-decoration: none;
}
.contacto .contacto-contenido .contacto-info .contacto-box .box-socialMedia .social-media .social-media-icon .social-media-icon-link .fa-brands {
  color: var(--white);
  font-size: 2.2rem;
  margin-right: 5px;
  opacity: 0.7;
}
.contacto .contacto-contenido .contacto-info .contacto-box .box-socialMedia .social-media .social-media-icon .social-media-icon-link .fa-brands:hover,
.contacto .contacto-contenido .contacto-info .contacto-box .box-socialMedia .social-media .social-media-icon .social-media-icon-link .fa-brands:focus {
  opacity: 1;
}
.contacto .contacto-contenido .contacto-info .contacto-box .box-title {
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 600;
  margin: 1rem auto;
}
.contacto .contacto-contenido .contacto-info .contacto-box .box-text {
  font-size: 1.3rem;
  font-weight: 500;
}

.altura {
  margin: 20px auto 0;
}

@media (max-width: 989px) {
  .contacto .contacto-contenido {
    display: block;
  }
  .contacto .contacto-contenido .contacto-info .contacto-box .box-content .box-title {
    text-align: center;
  }
  .contacto .contacto-contenido .contacto-info .contacto-box .box-content .box-text {
    text-align: center;
  }
}
.footer {
  position: relative;
  bottom: 0;
  left: 0;
  height: fit-content;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, #060606 100%);
}
.footer .footer-container {
  height: fit-content;
  width: 100%;
  padding: 3rem 6rem 1rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.footer .footer-container .footer-start {
  width: clamp(290px, 100%, 1080px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 20%;
  border-bottom: 1px solid #fff;
  padding: 2rem 2rem 4rem;
}
.footer .footer-container .footer-start .footer-empezemos .pregunta {
  font-size: 1.2rem;
  color: #fff;
}
.footer .footer-container .footer-start .footer-empezemos .empezemos-div {
  display: flex;
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: #fff;
}
.footer .footer-container .footer-start .footer-empezemos .empezemos-div .empezemos {
  width: clamp(150px, 80%, 315px);
}
.footer .footer-container .footer-start .footer-empezemos .empezemos-div .material-symbols-outlined {
  display: block;
  font-size: clamp(40px, 10vw, 80px);
  line-height: 117px;
}
.footer .footer-container .footer-start .footer-frase {
  font-size: 1.25rem;
  color: var(--white);
}
.footer .footer-container .footer-start .footer-frase .frase-autor {
  color: var(--white);
  text-align: right;
  font-weight: 500;
  font-size: 1.2rem;
}
.footer .footer-container .footer-end {
  width: clamp(290px, 80%, 1080px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  padding: 0 1rem;
}
.footer .footer-container .footer-end .bemanagement-logo {
  width: 200px;
  height: 50px;
}
.footer .footer-container .footer-end .footer-menu {
  justify-content: right;
  display: flex;
  list-style: none;
  transition: 0.4s;
}
.footer .footer-container .footer-end .footer-menu .menu-item-footer {
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: capitalize;
  margin: 0 10px;
  line-height: 50px;
  opacity: 0.8;
  width: max-content;
  text-shadow: 0px 1px 2px #000;
  transition: 0.1ms;
  color: var(--white);
  text-decoration: none;
}
.footer .footer-container .footer-end .footer-menu .menu-item-footer:hover,
.footer .footer-container .footer-end .footer-menu .menu-item-footer:focus {
  opacity: 1;
}
.footer .footer-container .footer-end .social-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .footer-container .footer-end .social-container .social-link {
  width: 35px;
  height: 35px;
  clip-path: polygon(15% 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0% 60%, 0 15%);
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgb(242, 242, 242) 50%);
  color: #fff;
  text-align: center;
  line-height: 35px;
  transition: 0.3s;
}
.footer .footer-container .footer-end .social-container .facebook {
  color: var(--black-rgb);
  margin-right: 1rem;
  font-size: 1.9rem;
}
.footer .footer-container .footer-end .social-container .instagram {
  color: var(--black-rgb);
  font-size: 2.2rem;
}
.footer .footer-container .footer-end .social-container .social-link:hover {
  opacity: 0.7;
  transform: scale(1.05);
}
.footer .copyright-container {
  color: var(--white);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  background-color: #000;
}
.footer .copyright-container .copyright {
  text-align: center;
  font-size: 12px;
  opacity: 0.7;
  font-weight: 400;
  padding: 10px 0;
}

@media (max-width: 900px) {
  .footer .footer-container .footer-start {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: center;
  }
  .footer .footer-container .footer-start .footer-frase {
    width: 80%;
    margin: 0 auto;
  }
  .footer .footer-container .footer-end {
    flex-direction: column;
  }
  .footer .footer-container .footer-end .footer-menu {
    flex-direction: column;
  }
  .footer .copyright-container .copyright {
    font-size: 10px;
  }
}
