s/*RESET*/
a {
  text-decoration: none;
}

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  font-family: "gilroyregular";
  color: #2E2E2E;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:after, blockquote:before, q:after, q:before {
  content: "";
  content: none;
}

@font-face {
  font-family: "gilroy-blackuploaded_file";
  src: url("font/gilroy-black-webfont.woff2") format("woff2"), url("font/gilroy-black-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "gilroy-blackitaliuploadedfile";
  src: url("font/gilroy-blackitalic-webfont.woff2") format("woff2"), url("font/gilroy-blackitalic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "gilroyextrabold";
  src: url("font/gilroy-extrabold-webfont.woff2") format("woff2"), url("font/gilroy-extrabold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "gilroy-extraboldiuploadedfile";
  src: url("font/gilroy-extra-bold-italic-webfont.woff2") format("woff2"), url("font/gilroy-extra-bold-italic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "gilroyregular";
  src: url("font/gilroy-regular-webfont.woff2") format("woff2"), url("font/gilroy-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
    font-family: 'gilroy-bolduploaded_file';
    src: url('font/gilroy-bold-webfont.woff2') format('woff2'), url('font/gilroy-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


body, * {
  font-family: "gilroyregular";
  font-weight: 400;
  color: #FFF !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "gilroy-blackuploaded_file";
}

.hero {
  width: 100%;
  min-height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  box-sizing: border-box;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-video {
  position: fixed; /* ocupa toda la web */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
}
/* opcional: overlay oscuro o gradiente */
.hero::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: -1;
}

.hero .in {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 35px;
  text-align: left;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  z-index: 999;
}
.hero .in .col1 {
  flex-grow: 1;
  padding-right: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 999;
}
.hero .in .col1 .logo {
  width: auto;
  height: 60px;
  margin-bottom: 40px;
}
.hero .in .col1 .youin {
  height: 120px; margin-bottom: 30px; max-width: 80%;
}

.hero .in .col1 p {
  margin-top: 10px;
  font-family: "gilroy-extraboldiuploadedfile";
  max-width: 450px;
  color: #DAD8C6 !important; padding-left: 8px;
}
.hero .in .col1 p.p1 {
  font-family: 'gilroy-bolduploaded_file';
    font-size: 30px;
  line-height: 34px;
  margin-bottom: 30px;
}
.hero .in .col1 p.p2 {
  font-family: "gilroyregular";
  font-size: 22px;
    line-height: 30px;
}


.hero footer {
  position: absolute;
  width: 90%;
  max-width: 1200px;
  text-align: center;
  bottom: 12px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero footer small {
  color: #FFF;
  font-size: 12px;
  line-height: 12px;
}
.hero footer img {
  height: 34px;
}

:focus-visible {
  outline: none !important;
}

.fade-item {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in {
  animation: fadeUp 0.8s ease forwards;
}

.back {
  position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Palabras normales */
.fade-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}

.fade-word-in {
  animation: fadeWord 0.6s ease forwards;
}

@keyframes fadeWord {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Palabras con blur extra */
.blur-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(10px);
}

.blur-word-in {
  animation: fadeWordBlur 0.8s ease forwards;
}

@keyframes fadeWordBlur {
  0% {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}


@media (max-width: 1200px) {
  .hero .in .col1 h3 {
    font-size: 120px;
    line-height: 130px;
    margin-top: 18px;
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .hero .in .col1 h3 {
    font-size: 110px;
    line-height: 120px;
  }
}
@media (max-width: 768px) {
  .hero .in {
    flex-direction: column;
  }
  .hero .in .col1 {
    padding-right: 0;
    width: 100%;
  }

}
@media (max-width: 576px) {
  .hero {
    display: block;
    padding-top: 40px;
  }
  .hero .in {
    padding: 0px;
  }
  .hero .in .col1 h3 {
    font-size: 15vw;
    line-height: 15vw;
    margin-top: 20px !important;
  }
  .hero .in .col1 p {
    font-size: 4.3vw;
    line-height: 6.5vw;
    max-width: 68%;
  }
  .hero footer {
    width: 100%;
    padding: 0px 20px;
    box-sizing: border-box;
    flex-direction: column;
    bottom: 20px;
  }
  .hero footer img {
    height: 34px;
    margin-top: 17px;
  }

  
  .hero .in .col1 .logo {
    height: 35px;
    margin-bottom: 30px;
  }
  .hero .in .col1 p.p2 {
             font-size: 4.4vw;
        line-height: 6.2vw;
  }
  .hero .in .col1 p.p1 {
            font-size: 5.6vw;
        line-height: 7.4vw;
  }
}

#wordmark{
      width: clamp(220px, 26vw, 340px);
      max-width: 84vw;
      height: clamp(74px, 8.5vw, 110px);
      overflow:hidden;
      position:relative;
      bottom: 0px;
    }
    #wordmark img{
      width: 100%;
      height:auto;
      display:block;
      transform: translateY(-37%);
      transform-origin: top center;
    }


 /* Scrollable white panel */
  .policy-wrap{
    box-sizing: border-box;
    width: 100%;
    max-width: 960px;
    margin: 16px auto 24px;   
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    padding: 22px 24px;
    max-height: calc(100dvh - 280px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .policy-wrap .row{ margin-left: 0; margin-right: 0; }
  .policy-wrap [class^="col-"], .policy-wrap [class*=" col-"]{
    padding-left: 0; padding-right: 0;
  }


  .policy-wrap p,
  .policy-wrap li,
  .policy-wrap b {
    line-height: 1.55;
    text-align: left;
    color:#fff!important;
    opacity: 1!important;
    animation: none!important;
    font-size: 16px!important;
   }
  .policy-wrap h1.main-heading{
    margin-top: 0;
    text-align: left;
    color:#fff!important;
    opacity: 1!important;
    animation: none!important;
    font-size: 26px!important;
    margin-bottom: 10px;
  }
  .policy-wrap b {
    font-weight: bold;
  }

    .policy-wrap p{
      margin-bottom: 10px;
    }

  .policy-wrap::-webkit-scrollbar{ width:10px }
  .policy-wrap::-webkit-scrollbar-thumb{ background:#d7d7d7; border-radius:10px }
  .policy-wrap::-webkit-scrollbar-track{ background:transparent }

  @media (max-width: 480px){
    .policy-wrap{ max-height: calc(100vh - 240px); padding: 16px 14px; }
  }

  /* Respect iOS safe areas (notch) */
@supports (padding: max(0px)){
  .policy-wrap{
    padding-left:  max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }
}