/* --------------- */
/* PROMO BANNER-SECTION */
/* --------------- */

.promo-banner {
  background: #D4AF37;
  color: #000;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  height: 3rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.4rem;
  user-select: none;
}

.container-promo{
  padding: 0;
  margin: 0 auto;
  max-width: 140rem;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  gap: var(--gap-promo-2);
  --gap-promo-2: 2rem;
}

.container-promo:hover .promo-text{
  animation-play-state: paused;
}

.promo-text {
  animation: scroll-left 50s linear infinite;
  flex-shrink: 0;
}

@keyframes scroll-left {
  to {
    transform: translate3d(calc(-100% - var(--gap-promo-2)), 0, 0);
  }
}

/* --------------- */
/* STICKY SECTION */
/* --------------- */

.sticky .header-section{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 6;
  box-shadow: 0 2rem 3.2rem rgba(0, 0, 0, 0.3);
}

.sticky .hero-section{
  margin-top: 8rem;
}

/* WITH BANNER PROMO STICKY */

.sticky .var-promo-banner{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 6;
}

.sticky .var-header-with-promo-banner{
  top: 3rem;
}

.sticky .var-hero-with-promo-banner{
  margin-top: 11rem;
}


/* --------------- */
/* HEADER SECTION */
/* --------------- */

.logo{
  height: 6.2rem;
}

.header-section{
  display: flex;
  align-items: center;
  background-color: #2a4e9b;
  height: 8rem;
}

.header-flex{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.ul-header-flex{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.5rem;
}

.ul-header-flex li{
  list-style: none;
  font-weight: 600;
  font-size: 1.4rem;
}

.link-nav:link,
.link-nav:visited{
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}

.link-nav:hover,
.link-nav:active{
  color: #9CA3AF;
}

/* INVESTIGAR MAS ACERCA DE ESTE COMPORTAMIENTO. BTN UBICADO EN GENERAL.CSS LINEA 144 a 152 */

.btn-header{
  box-shadow: 0 0 0.8rem rgba(255, 255, 255, 35%);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
}

.btn-header:hover{
  color: #000000;
  transform: scale(1.02);
  box-shadow: 0 0 0.8rem rgba(255, 255, 255, 70%);
}

.btn-header::before {
  content: "";
  position: absolute;
  top: 5%;
  left: -50%;
  width: 20%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.7), rgba(255,255,255,0) 70%);
  transform: rotate(25deg);
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
  transition: left 0.5s ease;
}

.btn-header:hover::before {
  left: 90%;
}

/* FIN DE ANALIZES ACERCA DEL BOTON-HEADER */

.btn-menu{
  display: none;
  border: none;
  background: none;
  cursor: pointer;
}

.mobile-icon{
  width: 4rem;
  height: 4rem;
  color: #D4AF37;
}

.icon-close{
  display: none;
}

/* --------------- */
/* END HEADER SECTION */
/* --------------- */

/* --------------- */
/* INICIO DE HERO-SECTION */
/* --------------- */

.hero-section{
  padding: 2rem 0 1rem 0;
  background-image: linear-gradient(
  to bottom,
  rgb(42, 78, 155) 45%,
  rgb(59, 64, 74) 100%
  );
}

.var-grid-hero{
  align-items: center;
  column-gap: 3.4rem;
}

.hero-right-box{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.8rem;
}

.h1-hero-box{
  font-family: 'Russo One', sans-serif;
  font-size: 5rem;
  line-height: 1.05;
  text-wrap: balance;
}

.h1-hero-box span{
  color: #D4AF37;
}

.p-hero-box{
  font-size: 2rem;
  line-height: 1.6;
  max-width: 80ch;
  text-wrap: balance;
}

.link-hero:link,
.link-hero:visited,
.link-hero:hover,
.link-hero:active{
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
}

.btn-hero{
  padding: 0.5rem 2rem !important;
  box-shadow: 0 0 0.8rem rgba(255, 255, 255, 35%);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
}

.btn-hero:hover{
  color: #000000;
  transform: scale(1.02);
  box-shadow: 0 0 0.8rem rgba(255, 255, 255, 70%);
}

.btn-hero::before {
  content: "";
  position: absolute;
  top: 5%;
  left: -50%;
  width: 20%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.7), rgba(255,255,255,0) 70%);
  transform: rotate(25deg);
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
  transition: left 0.5s ease;
}

.btn-hero:hover::before {
  left: 90%;
}

.vayne-img-hero{
  display: block;
  width: 100%;
}

/* --------------- */
/* END HEADER SECTION */
/* --------------- */

/* --------------- */
/* ASIDE SECTION */
/* --------------- */
/* ANALIZAR ESTA ANIMACION. */

.scroll-indicator{
  padding: 1rem 0 4.8rem 0;
  background-image: linear-gradient(to bottom,
  rgb(59, 64, 74) 50%,
  rgb(255, 255, 255) 70%
  );
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.scrollsvg {
  width: 6rem;
  animation: moveUpDown 3s ease-in-out infinite;
}

@keyframes moveUpDown { 
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-0.8rem); }
}

/* --------------- */
/* END ASIDE SECTION */
/* --------------- */

/* --------------- */
/* SERVICES SECTION */
/* --------------- */

.section-services{
  padding: 2rem 0 9.6rem 0;
  background-color: #ffffff;
}

.service-container-flex{
  display: flex;
  flex-direction: column;
  gap: 9.6rem;
}

.var-grid-z{
  align-items: center;
  row-gap: 4.8rem;
}

.z-box{
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color:#000000;
}

.z-title-box{
  font-size: 3.5rem;
  text-transform: uppercase;
  font-family: 'Russo One';
  text-wrap: balance;
}

.highlight-box{
  color: #D4AF37;
}

.z-p-box{
  font-size: 1.8rem;
  line-height: 1.8;
  max-width: 100ch;
}

.z-img-box{
position: relative;
z-index: 0;
}

.z-img-box::before,
.z-img-box::after{
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.z-img-box::before{
  background-color: #f3f3f3;
  width: 60%;
  padding-bottom: 60%;
}

.z-img-box::after{
  background-color: #e3cf8e;
  width: 40%;
  padding-bottom: 40%;
}

.z-img-box img{
  display: block;
  width: 100%;
}


/* --------------- */
/* END SERVICES SECTION */
/* --------------- */

/* --------------- */
/* WHY US SECTION */
/* --------------- */

.why-us-section{
  background-color: #ffffff;
  padding: 2rem 0 9.6rem 0;
}

.why-us-container-flex{
  display: flex;
  flex-direction: column;
  gap: 9.6rem;
}

.var-grid-why-us{
  column-gap: 3.4rem;
  row-gap: 4.8rem;
  text-align: center;
}

.var-box{
  justify-self: end;
}

.why-us-box{
  border: #D4AF37 solid 0.25rem;
  padding: 3rem 1.5rem 1.5rem 1.5rem;
  border-radius: 0.9rem;
  background-color: #ffffff;
  box-shadow: 0.5rem 0.5rem 0.5rem 0.2rem rgba(88, 88, 88, 0.2);
  position: relative;
  width: 100%;
  max-width: 29rem;
}

.why-us-svg{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5rem;
  background-color: #2A4D9B;
  border-radius: 50%;
  padding: 0.5rem;
  box-shadow: 0.2rem 0.2rem 0.3rem 0.1rem rgba(0, 0, 0, 0.3);
  border: solid 0.25rem #d4af37;
}

.why-us-flex-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.h3-why-us-box{
  color: #000000;
  font-size: 2rem;
}

.p-why-us-box{
  color: #000000;
  font-size: 1.6rem;
  line-height: 1.6;
  text-wrap: balance;
  max-width: 50ch;
}

/* --------------- */
/* END WHY US SECTION */
/* --------------- */

/* --------------- */
/* HOW TO ORDER SECTION */
/* --------------- */

.how-to-order-section{
  padding: 2rem 0 9.6rem 0;
  background-color: rgb(255, 255, 255);
}

.how-to-order-section-flex{
  display: flex;
  flex-direction: column;
  gap: 9.6rem;
}

.var-grid-hto{
  column-gap: 3.4rem;
  row-gap: 4.8rem;
}

.hto-box{
  background-color: #9CA3AF;
  box-shadow: 0.5rem 0.5rem 1rem 0.2rem rgba(88, 88, 88, 0.2);
  padding: 8rem 3rem;
  color:#000000;
  width: 80%;
  border-radius: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.hto-box::after{
  position: absolute;
  content: attr(data-step);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 52rem;
  font-family:'Russo One', sans-serif;
  color: #2A4D9B;
  opacity: 15%;
  z-index: 1;
}

.var-box-hto{
  justify-self: end;
}

.step-title,
.step-ul{
  position: relative;
  z-index: 3;
}

.step-title{
  font-size: 2rem;
  text-transform: uppercase;
}

.step-ul{
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  font-size: 1.8rem;
  line-height: 1.8;
  list-style: none;
}

.step-ul li{
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.ul-svg-icon{
  width: 1.5em;              /* Escala con el texto */
  height: 1.5em;
  flex-shrink: 0;          /* Evita que se deforme */
  position: relative; /* Esto habilita la posibilidad de usar top. */
  top: 0.38em;             /* Ajusta fino hasta que quede como un bullet */
}

/* --------------- */
/* END HOW TO ORDER SECTION */
/* --------------- */

/* --------------- */
/* CHOOSE YOUR SERVICE SECTION */
/* --------------- */

.choose-your-service-section{
  padding: 2rem 0 9.6rem 0;
  background-color: #ffffff;
}

.choose-your-service-section-flex{
  display: flex;
  flex-direction: column;
  gap: 9.6rem;
  padding: 0 1rem;
}

.var-grid-cys{
  column-gap: 8rem;
  row-gap: 8rem;
}

.box-cys{
  display: block;
  box-shadow: 5px 5px 1px 0rem rgba(190, 152, 28, 0.8),
  -5px -5px 1px 0 rgb(42, 78, 155, 0.8);
  background-color: #ffffff;
  border-radius: 0.3rem;
  width: 100%;
  max-width: 25rem;
  position: relative;
  aspect-ratio: 3 / 4;
  justify-self: center;
  transform: skew(-10deg);
  transition: all 0.6s ease-in-out;
}

.box-cys:hover{
  box-shadow: 5px 5px 1px 0rem rgb(42, 78, 155, 0.8),
  -5px -5px 1px 0 rgba(190, 152, 28, 0.8);
  transform: translateY(-0.5rem) skew(-10deg);
}

.link-cys:link,
.link-cys:visited,
.link-cys:hover,
.link-cys:visited{
  text-decoration: none;
  color: #2A4D9B;
}

.box-img{
  position: absolute;
  width: 125%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) skew(10deg);
  z-index: 1;
}

.box-p{
  position: absolute;
  bottom: 85%;
  right: 0;
  transform: translateX(1.5%) rotate(-90deg);
  text-transform: uppercase;
  font-style: italic;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
  transform-origin: right bottom;
}

.box-p-var{
  bottom: 56.1%;
  /* right: -0.57%; */
}

.box-p-var-coaching{
  bottom: 55.5%;
  /* right: -0.6%; */
}

.box-p-var-market{
  bottom: 78%;
  /* right: -0.3%; */
}

/* --------------- */
/* END CHOOSE YOUR SERVICE SECTION */
/* --------------- */

/* --------------- */
/* FAQ'S SECTION */
/* --------------- */

.faqs-section{
  padding: 2rem 0 4.8rem 0;
  color: #000000;
}

.faqs-section-flex{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9.6rem;
}

.grid-faqs-unique{       
  display: grid;
  grid-template-columns: 1fr 50fr 1fr;
  align-items: center;
  width: 100%;
  column-gap: 1rem;
}

.faqs-box{
  padding: 1rem;
  border-radius: 0.3rem;
  box-shadow: 5px 5px 1px 0rem rgba(190, 152, 28, 0.8),
  -5px -5px 1px 0 rgb(42, 78, 155, 0.8);
  cursor: pointer;
  transition: box-shadow 0.5s ease-in;
}

.faqs-box-open{
  box-shadow: 5px 5px 1px 0rem rgb(42, 78, 155, 0.8),
  -5px -5px 1px 0 rgba(190, 152, 28, 0.8);
  transition: all 0.5s ease-out;
}

.inner-flex-container-faqs-box{
  display: flex;
  flex-direction: column;
  gap: 3.4rem;
  max-width: 90rem;
}

.number-faqs-box{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  padding: 2rem;
  font-size: 2.5rem;
  font-weight: 800;
  color: #bbbbbb;
}

.h3-faqs-box{
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.btn-faqs-inner{
  background: none;
  border: none;
  cursor: inherit;
}

.faqs-svg-icon{
  width: 3.5rem;
  color: #D4AF37;
  stroke-width: 22;
  transition: transform 0.5s ease;
}

.faqs-box-open .faqs-svg-icon {
  transform: rotate(180deg);
}

.p-faqs-inner {
  grid-column: 2;
  padding-top: 0;
  transition: padding-top 0.2s ease-in;
}

.faqs-box-open .p-faqs-inner{
  padding-top: 1.5rem;
  transition: padding-top 0.3s ease-in;
}

.p-faqs-box {
  height: 0;          
  overflow: hidden;     
  transition: all 0.5s ease-in-out; 
  margin-left: 0.5rem;
  font-size: 1.8rem;
  line-height: 1.8;
}

.p-faqs-box ul{
  list-style: disc;
  margin: 2.3rem;
}

.ul-link-faqs a:link,
.ul-link-faqs a:visited,
.ul-link-faqs a:hover,
.ul-link-faqs a:active{
  text-decoration: none;
  color: #2A4D9B;
  font-size: 1.8rem;
}

.links-alone:link,
.links-alone:visited,
.links-alone:hover,
.links-alone:active{
  text-decoration: none;
  color: #2A4D9B;
  font-size: 1.8rem;
  font-weight: 700;
}

/* --------------- */
/* END FAQ'S SECTION */
/* --------------- */

/* --------------- */
/* FOOTER SECTION */
/* --------------- */

.footer-section{
  background-color: #3b404a;
  padding: 1rem 0 1rem 0;
}

.flex-footer-global{
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.flex-container-payment-methods{
  display: flex;
  justify-content: center;
}

.pm-container{
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 80rem;
}

.flex-container-payment-methods svg{
  width: 3rem;
  color: #737882;
}

.var-grid-footer{
  grid-template-columns: repeat(4, 1fr);
  row-gap: 1.2rem;
  width: 100%;
  max-width: 80rem;
  align-self: center;
}

.box-footer-main{
  grid-column: 1 / -1;
}

.inner-box-flex-footer{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.logo-footer{
  width: 15rem;
}

.inner-box-flex-svg{
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 1.5rem;
}

.footer-svg{
  width: 2rem;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}

.footer-svg:hover{
  color: #9CA3AF;
}

.p-copy-footer{
  font-size: 1.2rem;
  text-align: center;
}

.box-footer-secondary{
  justify-self: center;
}

.box-footer-secondary-links{
  font-size: 1.6rem;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
}

.box-footer-secondary-links:link,
.box-footer-secondary-links:visited{
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}

.box-footer-secondary-links:hover,
.box-footer-secondary-links:active{
  color: #9CA3AF;
}


/* --------------- */
/* END FOOTER SECTION */
/* --------------- */
/* --------------- */
/* END INDEX.HTML */
/* --------------- */

/* --------------- */
/* START BOOSTING.HTML */
/* --------------- */

.poppy-img-hero{
  display: block;
  width: 100%;
}

/* --------------- */
/* START COACHING.HTML */
/* --------------- */

.taric-img-hero{
  display: block;
  width: 100%;
  transform: scale(1.2);
}

/* --------------- */
/* START CUSTOM ORDERS.HTML */
/* --------------- */

.ahri-img-hero{
  display: block;
  width: 100%;
  transform: scale(1.08);
}

.var-custom-orders.var-custom-orders{
  gap: 9.6rem;
}

/* --------------- */
/* CUSTOM BOOSTING.HTML SECTION */
/* --------------- */

.form-img{
  background-image: linear-gradient(rgba(212, 175, 55, 0.4), rgba(212, 175, 55, 0.4)),  
  url("../IMGS/CUSTOM ORDERS SECTION/CUSTOM BOOSTING IMG FORM/IMG BANNER CUSTOM BOOSTING FORM.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-left: #D4AF37 solid 0.2rem;
}

/* --------------- */
/* ABOUT US.HTML SECTION */
/* --------------- */

.about-us-z-section-img{
  display: flex;
  justify-content: center;
  justify-self: center;
}

.about-us-z-section-img img{
  display: block;
  width: 100%;
  max-width: 95%;
  border-radius: 50%;
  border: #D4AF37 solid 5px;
  box-shadow: #2A4D9B 0 0 0 2px;
}

/* --------------- */
/* POLICIES.HTML SECTION */
/* --------------- */

.var-grid-policies{
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3.2rem;
  row-gap: 4.8rem;
}

.p-policies-section{
  color: #000000;
  font-size: 1.8rem;
  max-width: 60ch;
}

.polices-box{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #000000;
  width: 100%;
  max-width: 50rem;
  justify-self: center;
}

.h4-policies-box{
  font-size: 2rem;
  text-transform: uppercase;
}

.h4-policies-box span{
  color: #D4AF37;
}

.ul-policies-box{
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-left: 3.5rem;
  font-size: 1.6rem;
  line-height: 1.6;
}

.ul-policies-box li::marker{
  color: #D4AF37;
}

.ul-policies-box-inner{
  margin-left: 1rem;
}

/* --------------- */
/* EXTRAS.HTML SECTION */
/* --------------- */

.var-grid-2-columns-extra{
  grid-template-columns: repeat(2, 1fr);
}

.var-box-extras{
  width: 100%;
  max-width: 25rem;
  justify-self: end;
}

.sm-change-justify{
  justify-self: start;
}

.box-p-var-suggestions{
  bottom: 75%;
}

/* --------------- */
/* SITEMAP.HTML SECTION */
/* --------------- */

.var-grid-sitemap{
  column-gap: 3.4rem;
  row-gap: 4.8rem;
  justify-items: center;
  align-items: start;
  text-align: center;
}

.var-h4-sitemap{
  text-align: center;
}

.var-ul-sitemap{
  margin-left: 0;
  list-style-position: inside;  
}

.ul-policies-box a{
  font-size: 1.8rem;
}

.sitemap-links:link,
.sitemap-links:visited{
  text-decoration: none;
  color: #000000;
  transition: all 0.3s ease-in-out;
}

.sitemap-links:hover,
.sitemap-links:active{
  color: #9CA3AF;
}

.center-general-faqs-box{
  align-self: center;
}

.var-non-clickable-links{
  color: #e7e7e7;
}

/* COLOR DE TEXTO BUEN CONTRASTE: #FFFFFF */
/* HOVER COLOR #9CA3AF */
/* GRADIANTES TOP LEFT rgb(42, 78, 155) rgb(168, 28, 28) */
/* COLOR DE BRADING POR AHORA: #2A4D9B */
/* COLOR DE BOTONES: #D4AF37 Y SU CONTRASTE: #000000 
 /* COLOR DE OBJECTOS SECUNDARIOS DECORATIVOS. #e3cf8e  */ 
/* 70PX LOGO 7REM */
/* H1 50PX 5REM */
/* P 1.8rem */
/* 9.6rem separacion entre secciones. / divido / 2 para moviles. */
/* 4.8rem ROW GAP normal / 3.4REM column gap normal, 3.4row gap moviles */


/* #3B404A buen contraste en blanco.  */


