@import url('https://fonts.googleapis.com/css2?family=Fredericka+the+Great&family=IM+Fell+French+Canon:ital@0;1&family=Libre+Franklin:wght@100;200;300;400;500;600;800;900&family=Rubik+Distressed&display=swap');
@import url("https://p.typekit.net/p.css?s=1&k=vlr8cdt&ht=tk&f=37638.45141&a=74630121&app=typekit&e=css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
  --black--: #000;
  --grey--: #444;
  --white--: #fff;
  --red--: #ff003c;
  --blue--: #00c5db;
  --blue2--:rgb(0, 152, 172);
  --hfs: 16;
  --clr-main: #1fbfac;
  --clr-gray: #3a3a3a;
  --clr-yellow: #FDC162;
  --redDark--: #C63D46;
  --blueDark--: #003f45;
  --family-one--: 'Libre Franklin', sans-serif;
  --family-rock--: "battery-park", sans-serif;
  --fontsize-nav--: 10px;
  --fontsize-1--: 11px;
  --fontsize-2--: 1rem;
  --fontsize-3--: 1.3rem;
  --fontsize-4--: 2.5vw;
  --fontsize-5--: 3vw;
  --fontsize-6--: 5vw;
  --fontsize-p--: 14px;
  --fontsize-small--: 13px;
  text-decoration: none;
  list-style-type: none;
}

a{
  text-decoration: none;
}
li {
  list-style-type: none;

}

html {
  width: 100%;
  scroll-behavior: smooth;

}

body,
main {
  width: 100%;
  background-color: var(--black--);
  font-family: var(--family-one--);
}

header {
  width: 100%;
  margin: 0 auto;
  background-color: transparent;
  position: relative;
  z-index: 99999999;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;

}

header.fixed {
  backdrop-filter: blur(10px);
  /* Ajusta el valor de difuminado según tu preferencia */
  -webkit-backdrop-filter: blur(10px);
  /* Soporte para navegadores basados en WebKit */
  position: fixed;
  width: 100%;
  padding: 0px !important;
  background: rgba(20, 102, 118, 0.8);
  background: linear-gradient(12deg, rgba(8, 38, 44, 0.85) 0%, rgba(0, 0, 0, 0.75) 20%);
}

header.fixed .logo img {
  margin-top: 6px;
  height: 40px;
}

header.fixed .logo svg {
  margin-top: 5px;
  height: 32px
}
.br{
  display: none;
}
.logo {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  z-index: 9999999999999999999;
}

.logo img {
  height: 48px;
}

.logo svg {
  margin-top: 0px;
  height: 38px;
  position: relative;
}

.logo-text {
  position: relative;
  left: -1px;
  top: -5px;
}
.loginLink a{
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: var(--fontsize-nav--);
  padding: 3px 10px;

}
.loginLink a:hover{
  color: white;
  background-color: var(--red--);
  padding: 3px 10px;
}
.loginLink i{
  font-size: var(--fontsize-2--);
  position: relative;
  top: 1px;
}
.loginLink {
  position: relative;
  top: -3px;
  z-index: 9999999999999999999999;
}

nav {
  position: relative;
  z-index: 22;
  padding-top: 0px !important;
  margin-top: 0px !important;
}

nav a {
  font-family: var(--family-one--);
  font-weight: 500 !important;
  text-transform: uppercase;
  font-size: var(--fontsize-nav--) !important;
  ;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 5px 10px;
  padding-top: 0px;
  border: none;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  text-align: center;
  text-decoration: none;
  margin: 0px 1px;
}

nav a:hover {
  background-color: transparent;
  color: var(--red--) !important;
}

nav span {
  position: relative;
  z-index: 1;
  line-height: 14px;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  padding-top: 5px;
}

.btnBefore,
.btnAfter {
  content: '';
  position: absolute;
  height: 0;
  width: 0;
  border: solid #000;
  border-width: 0;
  border-radius: 0;
  transition: 0;
  -webkit-transition: 0;
  -moz-transition: 0;
  -o-transition: 0;
  -ms-transition: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  border-color: var(--blue--);
  border-radius: 1px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
}

nav a .btnBefore {
  right: 0;
  bottom: 0;
}

nav a .btnAfter {
  left: 0;
  top: 0;
}

nav a:hover .btnBefore {
  border-width: 0 0 1px 1px;
}

nav a:hover .btnAfter {
  border-width: 1px 1px 0 0;
}

nav a:hover .btnAfter,
nav a:hover .btnBefore {
  height: 20%;
  width: 100%;
  transition: width 0.5s ease, height 0.5s ease 0s, border-top-right-radius 0.1s ease 0.4s, border-bottom-left-radius 0.1s ease 0.4s, border-bottom-right-radius 0.1s ease 0.9s, border-top-left-radius 0.1s ease 0.9s;
  -webkit-transition: width 0.5s ease, height 0.5s ease 0s, border-top-right-radius 0.1s ease 0.4s, border-bottom-left-radius 0.1s ease 0.4s, border-bottom-right-radius 0.1s ease 0.9s, border-top-left-radius 0.1s ease 0.9s;
  -moz-transition: width 0.5s ease, height 0.5s ease 0s, border-top-right-radius 0.1s ease 0.4s, border-bottom-left-radius 0.1s ease 0.4s, border-bottom-right-radius 0.1s ease 0.9s, border-top-left-radius 0.1s ease 0.9s;
  -o-transition: width 0.5s ease, height 0.5s ease 0s, border-top-right-radius 0.1s ease 0.4s, border-bottom-left-radius 0.1s ease 0.4s, border-bottom-right-radius 0.1s ease 0.9s, border-top-left-radius 0.1s ease 0.9s;
  -ms-transition: width 0.5s ease, height 0.5s ease 0s, border-top-right-radius 0.1s ease 0.4s, border-bottom-left-radius 0.1s ease 0.4s, border-bottom-right-radius 0.1s ease 0.9s, border-top-left-radius 0.1s ease 0.9s;
}

#rayo {
  filter: drop-shadow(1px 1px 13px rgb(0, 0, 0));
  -webkit-filter: drop-shadow(1px 1px 13px rgb(0, 0, 0));
  animation: rayoAnima 3s linear 3s;
  -webkit-animation: rayoAnima 2s linear infinite;
  
}
#rayo g{
  filter: url(#glowFilter); /* Aplicar el filtro por defecto */

}

.st0 {
  fill: var(--red--);
  stroke: url(#neonGradientBlue);
  stroke-width: 31;
  stroke-dasharray: 1800;
  stroke-dashoffset: 6500;
  animation: neonBlue 3s linear 3s reverse;
  -webkit-animation: neonBlue 2s linear infinite reverse;
}

.st1 {
  fill: #fff;
  stroke: url(#neonGradientRed);
  stroke-width: 0;
  stroke-dasharray: 1500;
  stroke-dashoffset: 2800;
  animation: neonRed 2s linear infinite;
  -webkit-animation: neonRed 2s linear infinite;
}

.container {
  max-width: 85% !important;
}

section {
  text-align: center;

}

.p {
  font-size: var(--fontsize-p--);
  line-height: 28px;
  margin-top: 20px;
  font-weight: 500 !important;
  font-family: var(--family-one--);
  text-align: left;
}
.p p{
  font-size: var(--fontsize-p--);
  line-height: 28px;
  font-weight: 500 !important;
  font-family: var(--family-one--);
  text-align: left;
}

.p a{
  color: var(--red--);
  text-decoration: none;
}

.p a:hover{
  color: var(--blue--);
  text-decoration: none;
}


h3 {
  font-weight: 600;
}

button {
  background-color: var(--red--);
  color: var(--white--);
  border-radius: 5px;
  padding: 10px 15px;
  font-size: var(--fontsize-1--);
  border: 0px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  border: 1px solid var(--red--);
  cursor: pointer;
}

button:hover {
  background-color: var(--white--);
  color: var(--red--);
}

.bg-hero {
  background: rgb(20, 102, 118);
  background: linear-gradient(62deg, rgb(33, 171, 199) 0%, rgba(0, 0, 0, 1) 36%);
  background-size: 100%;
  width: 100%;
  min-height: 80vh;
}

.hero {
  width: 100%;
  min-height: 100vh;
  text-align: left;

}

.hero video {
  width: 55vw;
  position: relative;
  top: -4vw !important;
  left: 0%;
  z-index: 1;
  border-radius: 10%;
  -webkit-border-radius: 10%;
  -moz-border-radius: 10%;
  -ms-border-radius: 10%;
  -o-border-radius: 10%;
}

.hero h2 {
  font-family: var(--family-rock--);
  font-weight: 400;
  font-style: normal;
  color: #fff;
  text-align: left;
  font-size: var(--fontsize-6--);
  padding-top: 10%;
  position: relative;
  z-index: 21;
  width: 30vw;
}

.hero .tobottom::after {
  position: absolute;
  top: 0px;
  left: 0px;
  color: red;
  padding-top: 5%;
  padding-left: 5%;
  animation: top-to-bottom 1s forwards;
  -webkit-animation: top-to-bottom 1s forwards;
  z-index: 99999;
}

.hero .toup::before {
  position: absolute;
  top: 0px;
  left: 0px;
  color: #fff;
  padding-top: 5%;
  padding-left: 5%;
  animation: top-to-top 1s forwards;
  -webkit-animation: top-to-top 1s forwards;
  z-index: 99;
}

#section2 {
  top: -3vw;
  position: relative;
  width: 100%;
  min-height: 90vh;
  background: url('../img/noise.png');
  text-align: center;
  /* background: rgb(20,102,118);
  background: linear-gradient(122deg, rgb(18, 95, 110) 0%, rgba(0,0,0,1) 22%); */
}

.confiaron {
  width: 100%;
  color: #222;
  position: relative;
  z-index: 30;
  margin: 0 auto;
  text-align: center;
  font-weight: 300 !important;

  padding: 0px 0px;
  top: -70px
}

/* .linkNav {
  transition: color 3s ease;
  -webkit-transition: color 3s ease;
  -moz-transition: color 3s ease;
  -ms-transition: color 3s ease;
  -o-transition: color 3s ease;
} */
#corte {
  position: relative;
  z-index: 9;
  top: -4.7vw;
  width: 100%;

}

#corte2 {
  position: relative;
  z-index: 9999;
  top: 2vw;
  width: 100%;

}

#corte3 {
  position: relative;
  z-index: 9;
  width: 100%;
  transform: rotate(180deg);
  top: -1vw;
}

.as {
  fill: #fff;
}

.cls-1 {
  fill: #fff;
  stroke-width: 0px;
}

.cls-1-i {
  fill: #000;

}

.cls-3-i {
  fill: #000;

}

.cls-2 {
  fill: var(--blue--);
}

.cls-3 {
  fill: var(--black--);
}

.llamadoAccion {
  width: 100%;
}

.llamadoAccion-text {
  width: 100%;
}
.llamadoAccion-text p{
  font-size: var(--fontsize-p--);
  line-height: 31px;
  margin-top: 20px;
  font-weight: 500 !important;
  font-family: var(--family-one--);
  text-align: left;
}
.llamadoAccion-iconos img {
  width: 150px;
}

.llamadoAccion-iconos img:nth-child(1) {
  width: 150px;
  margin-top: 120px;
  margin-left: 20px;
}

.llamadoAccion-iconos img:nth-child(2) {
  width: 150px;
  margin-top: -90px;
}

.llamadoAccion-iconos img:nth-child(5) {
  width: 150px;
  margin-top: -10px;
  margin-left: 50px;
}

.llamadoAccion-iconos img:nth-child(3) {
  width: 150px;
  margin-left: -20px;
  margin-top: 130px;
}

.llamadoAccion-iconos img:nth-child(4) {
  width: 150px;
  margin-left: 20px;
  margin-top: -10px;
}

.word {
  background-image: url('../img/bgtext.png');
  background-size: 100%;
  padding-top: 5px;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
  background-repeat: no-repeat;
  background-position: 0px 0px;
  position: relative;
  z-index: -1;
  color: #fff;

}

.llamadoAccion-text p {
  margin-top: 1.5vw;
  margin-bottom: 1vw;
}

.llamadoAccion-text h3 {
  line-height: 29px;

}

.titleStart {
  width: 1.5vw;
  color: var(--red--);
  float: left;
  position: relative;
  top: -6px;
  margin-right: 20px;
}

.bi-lightning {
  color: var(--blue--);
  font-size: 3rem;
}

/* input tipo range */
.consola {
  width: 100%;
  overflow: hidden;
}

.botonera {
  background: rgba(102, 102, 102, 1);
  background: -moz-radial-gradient(center, ellipse cover, rgba(102, 102, 102, 1) 0%, rgba(19, 19, 19, 1) 100%);
  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(102, 102, 102, 1)), color-stop(100%, rgba(19, 19, 19, 1)));
  background: -webkit-radial-gradient(center, ellipse cover, rgba(102, 102, 102, 1) 0%, rgba(19, 19, 19, 1) 100%);
  background: -o-radial-gradient(center, ellipse cover, rgba(102, 102, 102, 1) 0%, rgba(19, 19, 19, 1) 100%);
  background: -ms-radial-gradient(center, ellipse cover, rgba(102, 102, 102, 1) 0%, rgba(19, 19, 19, 1) 100%);
  background: radial-gradient(ellipse at center, rgba(102, 102, 102, 1) 0%, rgba(19, 19, 19, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#666666', endColorstr='#131313', GradientType=1);
  width: 70%;
  text-align: center;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  margin-right: 12%;
  padding-right: 2%;
}

.palabras {
  width: 100%;
  justify-content: center;
  margin-bottom: 30px;
  margin-top: 20px;

}

.palabras p {
  display: none;
  position: relative;
  top: 15px;
  left: calc(0.6vw + 0.5vh + 0.5vmin);
  font-family: var(--family-one--);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  padding: 0px 5px;
  text-align: center;
}

.palabras p:nth-child(1) {
  transform: rotate(10deg);
  margin-top: -10px;
}

.palabras p:nth-child(2) {
  transform: rotate(-1deg);
}

.palabras p:nth-child(3) {
  transform: rotate(3deg);
  margin-top: -10px;

}

.palabras p:nth-child(4) {
  transform: rotate(-10deg);
}

.palabras p:nth-child(5) {
  transform: rotate(5deg);
}

.word-consola {
  background-image: url('../img/recorte.png');
  background-size: 100%;
  padding-top: 3px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  background-repeat: no-repeat;
  background-position: 0px 0px;
  position: relative;
  z-index: -1;
  color: #000;

}

.volume-control {
  margin-bottom: 20px;
  position: relative;
  width: 14%;
  height: 230px;
  margin-top: 1.7vw;
  margin-left: 1.5vw;
  font-size: 0.8rem;
  background-image: url('../img/bg-vol.png');
  background-position: 10px 0px;
  background-size: 100%;
  border-left: #000000 1px dotted;
}

.volume-slider {
  width: 250px;
  -webkit-appearance: none;
  appearance: none;
  height: 5px;
  background: #d3d3d3;
  border-radius: 10px;
  outline: none;
  background-image: linear-gradient(to right, #565656, #565656);
  transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  position: relative;
  right: 90px;
  top: 90px;
  z-index: 99999999;
  border: solid 0.125em rgba(205, 224, 230, 0.5);
  box-shadow: 0 .125em .125em #1fdaff;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 40px;
  height: 40px;
  background: var(--white--);
  border-radius: 50%;
  border: solid 0.125em rgba(99, 219, 255, 0.5);
  box-shadow: 0 .125em .125em #1ad9ff;
  border-radius: 50%;
  cursor: pointer;
  margin-top: auto;
  left: 0px;
  position: relative;
}

.wave {
  min-width: 100%;
  margin-left: 1vw;

}

.boxContainer {
  display: flex;
  justify-content: space-between;
  height: 64px;
  --boxSize: 6px;
  --gutter: 4px;
  width: calc((var(--boxSize) + var(--gutter)) * 5);
}

.box {
  transform: scaleY(.4);
  height: 100%;
  width: var(--boxSize);
  background: var(--red--);
  animation-duration: 0s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  border-radius: 8px;
  -webkit-transform: scaleY(.4);
  -moz-transform: scaleY(.4);
  -ms-transform: scaleY(.4);
  -o-transform: scaleY(.4);
}

/* slider logos empresas */


.slider-item img {
  height: 1.9vw;
  padding: 0 30px;
}

.slider-container {
  overflow: hidden;
  padding: 1.5rem;
  margin-bottom: 5vw;
}

.slider-list {
  display: flex;
  transition: transform 0.1s ease-in-out;
  -webkit-transition: transform 0.1s ease-in-out;
  -moz-transition: transform 0.1s ease-in-out;
  -ms-transition: transform 0.1s ease-in-out;
  -o-transition: transform 0.1s ease-in-out;
}

.confiaron h4 {
  font-size: var(--fontsize-3--);
  ;
  font-weight: 500;
  font-family: var(--family-one--);
  color: var(--black--);
}

.logo-empresas {
  height: 40px;
  margin: 10px 20px;
}

#section3 {
  height: 85vh;
  background-image: url('../img/bg-cartel.jpg');
  background-size: 100%;
  background-repeat: no-repeat;
  color: var(--white--);
  align-items: center;
  align-self: center;
  align-content: center;
  vertical-align: center;
  padding-top: 8%;
  position: relative;
  top: -3vw;
  padding-bottom: 5%;
}
.quote  {
  width:100%;
}
.quote img {
  height: 230px;
}
.quote p {
  min-width: 700px;
  width: auto;
  font-size: var(--fontsize-2--)!important;
  text-align: center!important;
  font-family: var(--family-one--)!important;
  font-weight: 400!important;;
  font-style: normal;
  color: #fff!important;
  align-self:center!important;
}
.quote span {
  font-family: var(--family-one--)!important;
  font-weight: 700!important;;
  color: var(--red--)!important;
  align-self:center!important;
  font-size: 21px;
}
#section3 p {
  font-size: var(--fontsize-2--);
  text-align: center;
  padding-top: 5%;
  font-family: var(--family-one--);
  font-weight: 400;
  font-style: normal;
}

.carousel-item {
  padding:0%;
  width: 100%;
}
.carousel-item p {
  width: 70%;
}

.carousel-control-prev:hover, .carousel-control-next:hover{
  background-color: transparent;
}

.comillas {
  position: absolute;
  top: 1vw;
  left: 7vw;
  opacity: 0.6;
  font-size: 8vw;
  font-family: "IM Fell French Canon", serif;
  font-weight: 400;
  font-style: normal;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.comillas-b {
  position: absolute;
  bottom: 2vw;
  right: 10vw;
  opacity: 0.6;
  font-size: 8vw;
  font-family: "IM Fell French Canon", serif;
  font-weight: 400;
  font-style: normal;

}

.comillas img {
  width: 120px;
}

.comillas-b img {
  width: 120px;
}

footer {
  background-color: var(--black--);
  min-height: 10vh;
  position: relative;
  top: -3vw;
  width: 100%;
  color: var(--white--);
  padding-top: 2%;
  background-image: url(../img/fill.svg);
  background-size: auto 80%;
  background-repeat: no-repeat;
  background-position: 95% 40px;
  position: relative;
  z-index: 999999999999;
}

footer .contact {
  font-size: 2rem;
  font-weight: 500;
}

footer .contact p {
  font-size: 1rem;
  line-height: 31px;
}

footer .contact span {
  font-size: 0.8rem;
  line-height: 0vw;
}

footer .contact i {
  background-color: var(--red--);
  color: var(--white--);
  padding: 4px 5px;
  border-radius: 100%;
}

footer .nav-footer {
  max-width: 35%;
}

footer .nav-footer a {
  font-size: 0.8rem;
  line-height: 2vw;
  color: var(--white--);
  border: 0px;
  text-decoration: none;
}

footer .web-dev,
.web-dev a {
  color: #d9d9d9;
  text-decoration: none;
}

footer .web-dev span {
  font-size: 0.7rem;
  font-weight: 500;

}

footer .web-dev a {
  font-size: 0.9rem;
  font-weight: 700;
}

footer a:hover {
  color: var(--red--);
}

footer .suscription {
  width: 20%;
}

footer .suscription form {
  width: 90%;
}

footer .whatsapp {
  width: 10%;
}

footer .suscription label {
  color: var(--white--);
  font-size: 1.1rem;
}

footer .suscription input {
  color: var(--red--);
  border-radius: 3px;
  font-size: 0.6rem;
  padding: 5px;
  border: 0px;
  margin-top: 5px;
  width: 100%;
}

footer .suscription button {
  color: var(--white--);
  padding: 5px;
  margin-top: 10px;
  font-size: 0.6rem !important;
  width: 90%;
  margin: 0px;
  margin-top: 6px;
}

footer .suscription button:hover {
  color: var(--red--);
}

footer .whatsapp button {
  font-size: 1.3rem !important;
  border-radius: 100px;
  background-color: #1fbfac;
  color: var(--white--);
  padding: 5px;
  border: var(--white--);
  width: 40px;
  height: 30px;
  padding-bottom: 35px !important;
}

.whatsapp button:hover {
  color: var(--black--);
  background-color: #3a3a3a;
}

.footer-up {
  font-size: 1rem;
  position: absolute;
  bottom: 15%;
  right: 10px;
  background-color: transparent;
}

.bi-lightning {
  text-shadow: -2px 2px 2px rgba(255, 0, 0, 0.56);
}

#internas section {
  min-height: 20vw;
}

#internas .portada-transformacion {
  padding-top: 6%;
  color: var(--white--);
  font-family: var(--family-one--);
  background-image: url('../img/portada.jpg');
  background-size: 100%;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 5%;
}

#internas .portada h2 {
  font-size: var(--fontsize-4--);
  font-weight: 800;
}

#internas .portada h6 {
  font-size: var(--fontsize-3--);
  font-weight: 500;
  padding-top: 10px;
}

#internas .portada p {
  font-size: var(--fontsize-2--);
  font-weight: 500;
  padding-top: 10px;
  text-align: center;
  max-width: 75%;
  margin: 0 auto;
}

.p-transformacion .bi-lightning {
  text-shadow: -2px 0px 0px rgba(0, 213, 255, 0.56);
}

.word-i {
  background-image: url('../img/bgtext-i.png');
  background-size: 100%;
  padding-top: 5px;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 40px;
  background-repeat: no-repeat;
  background-position: 0px 0px;
  position: relative;
  z-index: 0;
  color: #fff;
}

.word-i2 {
  background-image: url('../img/bgtext.png');
  background-size: 100%;
  padding-top: 0px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  background-repeat: no-repeat;
  background-position: 0px 0px;
  position: relative;
  z-index: 0;
  color: #fff;
}

#internas h6, #internas p {
  position: relative;
  z-index: 999999;
}


.s1 p {
  color: white;
  text-align: left;
  max-width: 50%;
  margin-top: -10px;
  font-size: var(--fontsize-p--);
    line-height: 28px;
    margin-top: 0px;
    font-weight: 500 !important;
    font-family: var(--family-one--);
    text-align: left;
}

.s1 img {
  width: 90%;
  margin-top: -50px;
}

#internas h5 span {
  color: var(--red--);
  font-weight: 700;
}

.p-transformacion p span,
h5 span {
  color: var(--red--);
  font-weight: 700;
}

.s2 {
  color: var(--black--);
  background-color: var(--white--);
  text-align: center;
  margin: 0 auto;
  flex-wrap: wrap;
  min-height: 100vh;
  padding-bottom: 6%;
}

.s2 img {
  width: 150px;
  margin-bottom: 10px;
}
/* 
.s2 h5 {
  line-height: 25px;
  column-count: 2;
  column-gap: 4em;

} */

/* TRANSFORMACION */

.transformacion-card h4 {
  color: var(--redDark--);
  font-size: 28px;
  font-weight: 700;
}

.container-cards {
  flex-wrap: wrap;
}

.container-cards .transformacion-card img,
.transformacion-card-f img {
  width: 90px;
  margin-right: 20px;
}

.container-cards .transformacion-card {
  width: 45%;
  border: 0px;
  padding: 20px 25px;
  text-align: left;
}

.transformacion-card {
  display: flex;
  flex-direction: column;
}

.s3 {
  color: var(--grey--);
  background-color: var(--white--);
  text-align: center;
  min-height: 100vh;
  padding-bottom: 6%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.inicio .s3 img {
  height: 2.3vw;
  padding: 0 30px;
}

/* CARDS */
.transformacion-card {
  perspective: 1000px;
}

.card-front {
  background-color: var(--white--);
  position: relative;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  -webkit-transition: transform 0.8s;
  -moz-transition: transform 0.8s;
  -ms-transition: transform 0.8s;
  -o-transition: transform 0.8s;
  z-index: 2;
  font-family: var(--family-one--);
}

.card-front p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
  /* Número máximo de líneas a mostrar */
  font-size: var(--fontsize-p--);
    line-height: 31px;
    margin-top: 0px;
    font-weight: 500 !important;
    font-family: var(--family-one--);
    text-align: left;

}

.container-cards .transformacion-card.flipped {
  width: 50%;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.transformacion-card.flipped .card-front {
  transform: rotateY(-180deg);
  z-index: 1;
  padding: 1% 5%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.transformacion-card.flipped:nth-child(1) .card-front {
  background-color: #210038;
  color: var(--white--);
}

.transformacion-card.flipped:nth-child(2) .card-front {
  background-color: var(--blueDark--);
  color: var(--white--);
}

.transformacion-card.flipped:nth-child(3) .card-front {
  background-color: #323232;
  color: var(--white--);
}

.transformacion-card.flipped:nth-child(4) .card-front {
  background-color: var(--redDark--);
  color: var(--white--);
}

.transformacion-card.flipped .anima-card {
  animation: cardBg 0.5s linear;
}

.transformacion-card.flipped .card-front p {
  transform: rotateY(-180deg);
  z-index: 1;
  height: auto;
  -webkit-line-clamp: 103;
  color: var(--white--);
  /* Número máximo de líneas a mostrar */

}

.transformacion-card.flipped .card-front .p span {
  color: var(--white--) !important;
  font-weight: 700;
  /* Número máximo de líneas a mostrar */

}

.transformacion-card.flipped .ver-mas {
  position: relative;
  transform: rotateY(-180deg);

  cursor: pointer;
}

.transformacion-card .close {
  display: none;
  margin-top: 5px;
  font-size: 16px;
  padding: 2px 9px;

}

.s4 {
  color: var(--white--);
  background-color: var(--grey--);
  text-align: center;
  margin: 0 auto;
  flex-wrap: wrap;
  min-height: 100vh;
  padding: 6% 0%;
}
 .s4 {
  color: var(--white--);
  background-color: var(--grey--);
  background-image: url(../img/texturerock-01-01.webp);
  background-size: 100%;
  text-align: center;
  margin: 0 auto;
  flex-wrap: wrap;
  min-height: 100vh;
  padding: 6% 0%;
}
.s4 h3 {
  text-align: left;
  max-width: 85%;
}

form {
  width: 70%;
  text-align: left;
}

form label {
  text-align: left;
  font-family: var(--family-one--);
  font-weight: 600;
  font-size: var(--fontsize-1--);
  margin-bottom: 5px;
}

form textarea,
form input {
  width: 100%;
  border-radius: 5px;
  padding: 3px 7px;
  border: 0px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

form textarea {
  max-height: 400px;
}

form .group {
  margin: 6px;
  width: 50%;
}

form .t-area {
  margin: 6px;
  width: 98%;
}

form button {
  max-width: 8vw;
  margin: 6px;
}

#internas .portada-equipo {
  padding-top: 6%;
  color: var(--white--);
  font-family: var(--family-one--);
  background-image: url('../img/portada2.jpg');
  background-size: 100%;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 0%;
  background-position: fixed;
  min-height:16vw;
  height: auto;
}

.p-transformacion .s3 img {
  height: 40px;
  margin-left: 30px;
}

/* EQUIPOS DE TRABAJO */
.equipos .s1 {
  background-image: url('../img/megaboy.webp');
  background-size: 45%;
  background-repeat: no-repeat;
background-position:  -180px -170px;
  min-height: 80vh !important;
}

.equipos #corte4 {
  position: relative;
  width: 100%;
  top: -6.5vw;
}

.equipos .s2 {
  width: 100%;
  position: relative;
  z-index: 99999;
  padding-bottom: 3%;

}
.equipos  .s1 img {
  width: 60px;
  margin-top: -10px;
}
.equipos .s2 p {
  color: var(--black--);
  text-align: left;
  max-width: 100%;
  margin-top: 10px;
  line-height: 28px;
  font-size: var(--fontsize-p--);
}

.equipos .s2 img {
  width: 70%;
  margin-top: -150px;
  position: relative;
  z-index: 999999999999;
  -webkit-filter: drop-shadow(1px 1px 3px #222);
  filter: drop-shadow(1px 1px 3px #222);
}

.equipos p span {
  color: var(--blue2--) !important;
}

.equipos .cardFront .p span {
  color: var(--red--) !important;
}

.equipos .container-cards .transformacion-card img,
.transformacion-card-f img {
  width: 70px;
  margin-right: 20px;
}

.equipos .s2 h2 {
  font-family: var(--family-rock--);
  color: var(--red--);
  margin-top: -50px;
  margin-bottom: 30px;
  font-size: var(--fontsize-5--)
}

.equipos summary {
  display: block;
  margin: 20px 0px;
  background-color: var(--red--);
  padding: 20px 10px;
  border-radius: 7px;
  width: 300px;
  text-align: center;
  margin: 0 auto;
}

.equipos summary span {
  font-size: var(--fontsize-2--);
  font-weight: 600;
}

.equipos summary:hover {
  color: var(--red--);
  background-color: var(--white--);
  border: 1px solid var(--red--);
}

.equipos summary img {
  width: 50px;
}

.equipos summary span:hover svg {
  fill: var(--red--);
}

.equipos details {
  color: var(--white--);
  text-align: center;
  width: 50%;
}

.equipos details p {
  max-width: 98%;
  width: 100%;
  text-align: left;
  background-color: var(--blueDark--);
  color: var(--white--);
  font-size: var(--fontsize-p--);
  padding: 4% 4%;
  margin-top: 10px;
  border-radius: 10px;
  line-height: 28px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.equipos details:nth-of-type(2) p {
  background-color: var(--redDark--);
}

.equipos .card-fotos img {
  width: 350px;

}

.card-content {
  display: flex;
  align-items: end;
  justify-content: flex-start;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  min-height: 300px;
  height: auto;
  margin-bottom: 40px;

}
.slider-fotos {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  height: auto;

}
.card-content::-webkit-scrollbar {
  height: 0px;
}

.btn:hover {
  box-shadow: 0px 17px 15px 0px rgba(0, 0, 0, .07);
}

.btn i {
  color: var(--red--);
  font-size: 1.2rem;
}

.btn i:hover {
  color: var(--black--);
}



/* DESARROLLO EJECUTIVO */

.p-desarrollo .s1 {
  padding-bottom: 4%;

}

.p-desarrollo #corte3 {
  top: -2vw
}

.desarrollo-card h4,
.desarrollo-card-f h4 {
  color: var(--white--);
  font-size: var(--fontsize-3--);
  font-weight: 700;
}

.container-desarrollo-cards {
  flex-wrap: wrap;
  width: 100%;
}

.desarrollo-card img {
  width: 120px;
  margin-right: 20px;
}

.desarrollo-card {
  width: 29%;
  border: 0px;
  text-align: left;
  margin-right: 0px;
}

.desarrollo-card p {
  font-size: var(--fontsize-p--);
  line-height: 31px;
  max-width: 100%;
  margin-top: 20px;
  font-weight: 600 !important;
}

.desarrollo-card span {
  color: var(--blue--);
}

.s5 {
  background-color: var(--white--);
  color: var(--black--);
  padding-bottom: 4%;
}

.s5 img {
  width: 90%;
}

.p-desarrollo .s5 p {
  margin-top: 0px;
  max-width: 50%;
}

.p-desarrollo .s5 .p span {
  color: var(--red--);
  font-weight: 700;
}

.p-desarrollo #corte {
  fill: var(--white--);
}

#internas .portada-desarrollo {
  padding-top: 6%;
  color: var(--white--);
  font-family: var(--family-one--);
  background-image: url('../img/portada3.jpg');
  background-size: 100%;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 6%;
}

/* ARTICULOS */
.cont-articulos {
  min-width: 300px;
  max-width: 350px;
  width: auto;
  display: flex;
  flex-direction: column;
  margin: 5px 10px;
  border-radius: 7px;
  background-color: #fff;
  border: 1px dotted var(--red--);
}

.cont-articulos:hover {
  box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.1);
  border: solid 1px var(--blue--);
}

.s2 .articulos-img {
  width: 100%;
  border-radius: 7px 7px 0px 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  -webkit-border-radius: 7px 7px 0px 0px;
  -moz-border-radius: 7px 7px 0px 0px;
  -ms-border-radius: 7px 7px 0px 0px;
  -o-border-radius: 7px 7px 0px 0px;
}

.cont-articulos-text {
  padding: 25px;
  padding-top: 15px;
  text-align: left;
  
}

.articulos-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5;
  margin-bottom: 10px;  
  
}

.articulos-detalle {
  font-size: 13px
}

#internas .portada-articulos {
  padding-top: 2%;
  color: var(--white--);
  font-family: var(--family-one--);
  background-image: url('../img/bg-cartel.jpg');
  background-size: 100%;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 3%;
  min-height:10vw !important;
  height: auto !important;
  margin-bottom: 0px;

}

.articulos .s2 {
  padding-bottom: 10%;
  top: 3vw;
  padding-top: 3%;
}

.articulos #corte2, .articulos .s2 {
  position: relative;
  width: 100%;
  margin-top:-3.7vw;
  z-index: 999999999;
}

.articulos b {
  color: var(--red--);
}

.articulos .s3 img {
  max-height: 900px;
  position: relative;

}

.articulos .s3 {
  padding-top: 2%;
}

.articulo-img {

}

.articulo-back {
  font-size: var(--fontsize-small--);
  text-align: left;
  margin-bottom: 25px;
}

.articulo-back a {
  color: var(--red--);
  text-decoration: none;
}

.articulo-back a:hover {
  color: var(--blue--);
}

.articulo-video {
  width: 100%;
  background-color: var(--black--);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
/* FORMACIONES  */

.p-formaciones .s5{
  background-color: var(--black--);
  background-image: url(../img/bgform.jpeg);
  background-size: 100%;
  background-repeat: no-repeat;
  margin-top: -100px;
  padding-top:2%;
}

.p-formaciones h5{
  color: var(--white--);
}
 .p-formaciones .p{
  color: var(--white--);
  font-size: var(--fontsize-p--);
}
.p-formaciones .p span{
  color: var(--blue--);
  font-weight: 600;
}

.p-formaciones .container-cards {
  width: 100%;
  margin-top: 50px;
}
.p-formaciones #corte{
  fill: #000;
}


.p-formaciones .cardForm  {
  width: 280px;
  height: auto;
  color: #fff;
  text-align: left;
  background: rgba(24, 24, 24, 0.4);
  padding: 20px ;
  margin-bottom: 30px;
  margin-left: 5px;
  border-radius:10px ;
  -webkit-border-radius:10px ;
  -moz-border-radius:10px ;
  -ms-border-radius:10px ;
  -o-border-radius:10px ;
  border: 1px solid #262626;
  position: relative;
}

.p-formaciones .cardForm:hover  {
  box-shadow: 0px -1px 18px -1px rgba(255,255,255,0.23);
  -webkit-box-shadow: 0px -1px 18px -1px rgba(255,255,255,0.23);
  -moz-box-shadow: 0px -1px 18px -1px rgba(255,255,255,0.23);
}
.p-formaciones .cardForm span {
  color: var(--blue--) !important;
  font-weight: 700;
  padding-bottom: 5px;
  font-size: var(--fontsize-3--);

}
.cardForm {
  position: relative;
  overflow: hidden; /* Ocultar el overflow del contenido */
}

.cardForm::before, 
.cardForm::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
}

.cardForm::before {
  top: 0;
  left: 0;
  border-top-color: var(--red--); /* Color inicial del borde superior */
  transform: translateX(-100%);
}

.cardForm::after {
  bottom: 0;
  right: 0;
  border-bottom-color: var(--red--);/* Color inicial del borde inferior */
  transform: translateX(100%);
}

.cardForm:hover::before {
  animation: moveBorderTop 3s infinite; /* Animación para mover el borde superior */
}

.cardForm:hover::after {
  animation: moveBorderBottom 3s infinite; /* Animación para mover el borde inferior */
}

@keyframes moveBorderTop {
  0% { border-top-color: var(--red--); transform: translateX(-100%); } /* Color inicial y posición inicial */
  50% { border-top-color: var(--blue--); transform: translateX(0); } /* Color celeste y posición final */
  100% { border-top-color: var(--red--); transform: translateX(100%); } /* Color inicial y posición final */
}

@keyframes moveBorderBottom {
  0% { border-bottom-color: var(--red--);transform: translateX(100%); } /* Color inicial y posición inicial */
  50% { border-bottom-color: var(--blue--); transform: translateX(0); } /* Color celeste y posición final */
  100% { border-bottom-color: var(--red--);transform: translateX(-100%); } /* Color inicial y posición final */
}
@keyframes appear {
	from {
		opacity: 0;
		scale: 0.8;
	}
	to {
		opacity: 1;
		scale: 1;
	}
}

@media (prefers-reduced-motion: no-preference) {
  .cardForm {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 25% cover 50%;
  }
}


/* NOSOTROS */

.nosotros .s1 {
  padding-bottom: 1%;
  background-color: #fff;
}

.nosotros .p {
  max-width: 100%;
  margin-bottom: 110px;
  margin-top: -30px;
  column-count: 2;
  column-gap: 4em;
}

.nosotros .portada {
  min-height: 18vw !important;
  height: auto !important;
  padding-top: 4% !important;
}

.nosotros .cls-1-i {
  fill: #fff;
}

.cont-perfil {
  background-color: var(--grey--);
  background-image: url('../img/texture-grey.webp');
  background-size: 50%;
  background-repeat: repeat;
  padding: 2% 0px;
  padding-bottom: 6%;
  margin-top: 50px;

}
.cont-perfil .d-md-flex{
  flex-wrap: wrap;
  margin-top: -4vw;
}
.perfil {
  width: 300px;
  border-radius: 15px;
  background-color: #fff;
  height: 400px;
  padding: 10px;
  text-align: center;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  margin-left: 40px;
  border: 1px dotted var(--red--);
 margin-bottom: 20px;
  position: relative;
  z-index: 999;

}
.s2 .cont-perfil h5 {
  line-height: 25px;
  column-count: 1;
  column-gap: 0;
}
.perfil:hover {
  box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.1);

}

.perfil img {
  width: 200px;
  border-radius: 100%;
  text-align: center;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
  margin-top: 20px;
}

.perfil .p {
  text-align: center;
  margin-top: 20px;
  max-width: 100%;
  font-size: var(--fontsize-3--);
  color: var(--red--);
  column-count: 1;
  column-gap: 0em;
}

.perfil .p a {
  color: var(--red--);
}

.perfil .p a:hover {
  color: var(--blueDark--);
}

.nosotros .p span{
  color: var(--red--);
  font-weight: 700;
}
.p-contacto .cls-1-i{
fill: var(--black--);
 }
.p-contacto #corte3{
top:-4vw;
fill: #000;
}
.p-contacto .s4{
top:-8vw;
position: relative;
}


#internas .portada-contacto {
  padding-top: 2%;
  color: var(--white--);
  font-family: var(--family-one--);
  text-align: center;
  margin: 0 auto;
  padding-bottom: 0%;
  min-height:15vw !important;
  height: auto !important;
  background-image: url('../img/megaboy.webp');
  background-position: 0px 310px;


}

.articulos .s3 p{
  font-size: var(--fontsize-p--);
  line-height: 28px;
  margin-top: 0px;
  font-weight: 500 !important;
  font-family: var(--family-one--);
  text-align: left!important;
}