@tailwind base;
@tailwind components;
@tailwind utilities;

@import url(./assets/geometria/style.css);

/* Swear Text
@import url("https://use.typekit.net/csk5yux.css");
*/
#cc-main {
  --cc-font-family: var(--geometria);
}

.cc--dark-turquoise {
  color-scheme: dark;

  --cc-bg: #161a1c;
  --cc-primary-color: rgb(239, 244, 246);
  --cc-secondary-color: #b1bdc3;

  --cc-btn-primary-bg: #60fed2;
  --cc-btn-primary-color: #000;
  --cc-btn-primary-hover-bg: #4dd4ae;
  --cc-btn-primary-hover-color: #000;

  --cc-btn-secondary-bg: #242c31;
  --cc-btn-secondary-color: var(--cc-primary-color);
  --cc-btn-secondary-hover-bg: #d4dae0;
  --cc-btn-secondary-hover-color: #000;

  --cc-cookie-category-block-bg: #1e2428;
  --cc-cookie-category-block-border: #1e2428;
  --cc-cookie-category-block-hover-bg: #242c31;
  --cc-cookie-category-block-hover-border: #242c31;
  --cc-cookie-category-expanded-block-hover-bg: #242c31;
  --cc-cookie-category-expanded-block-bg: #1e2428;
  --cc-toggle-readonly-bg: #343e45;
  --cc-overlay-bg: rgba(4, 6, 8, .85) !important;

  --cc-toggle-on-knob-bg: var(--cc-bg);
  --cc-toggle-readonly-knob-bg: var(--cc-cookie-category-block-bg);

  --cc-separator-border-color: #222a30;

  --cc-footer-border-color: #212529;
  --cc-footer-bg: #0f1112;
}


:root {
  --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --animation-duration: 1s;

  --geometriaL: 'Geometria-Light';
  --geometria: 'Geometria';
  --geometriaM: 'Geometria-Medium', sans-serif;
  --geometriaB: 'Geometria-Bold', sans-serif;

  --komu: "komu-new-f", serif;


  --white: #ffffff;
  --branco: #ffffff;
  /*--preto: #231F20;*/

  --gold: #997f49;
  --darkgold: #543c24;
  --lightgray: #e6e8ea;


  --violet: #420044;
  --pink: #ff76bb;
  --lightpink: #ffbaff;
  --gray: #414042;

  --black: #1e1414;
  --gray25: #c7c4c4;
  --gray75: #564f4f;
  --mediumblack: #342b2c;
  --lightblack: #403737;
  --sand: #faf3e9;

  --cinzaclaro: #E9E9EF;
  --cinza: #71717D;
  --cinza2: #414141;
  --cinzaescuro: #4d4d4d;
  --laranja: #ea983e;
  --roxo: #4c3c7e;
  --amarelo: #ffe123;
  --pretofosco: #262626;

  /* Timeline variables */
  --bg: #191919;
  --card: #191919;
  --line: #acacac;
  --dot: #acacac;
  --dot-active: #fff;
  --accent: #d4203b;
  --accenthover: #a93226;
  --text: #d4d4d4;
  --muted: #8a8a8a;

  --lightblue: #81b7d9;
  --lightpurple: #b5b3d7;
  --lightpink: #efaea7;
  --lightsand: #f7d3bf;
  --lightorange: #f5c28e;
  --lightyellow: #f8efad;
  --lightgreen: #f7f3cf;
  --brown: #3a221f;

  --notificacao: #b3b3b7;

  --cinzasangue: #f1f1f1;
  --vermelhosangue: #d4203b;
  --vermelhoescuro: #720016;
  --pretofosco: #191919;

}

*,
html,
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: none;
}

/* =============================================
   PRELOADER
   ============================================= */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: var(--lightsand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.preloader__battery-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#preloader-svg {
  display: block;
  width: 200px;
  height: auto;
  filter: drop-shadow(0 4px 18px rgba(58, 34, 31, 0.18));
}

/* Texto percentual centralizado sobre a barra de progresso */
.preloader__percent {
  position: absolute;
  top: 50%;
  /* A barra de progresso fica na faixa esquerda do SVG (~0-20px de 162px total = ~12% da largura) */
  /* Centralizar o texto sobre a área de preenchimento - ajustado ao centro do SVG */
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--geometriaB);
  font-size: 16px;
  font-weight: 700;
  color: var(--pretofosco);
  letter-spacing: 0.09em;
  pointer-events: none;
  white-space: nowrap;
  mix-blend-mode: hard-light;
}

/* ============================================= */

/*
.cursor {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  border: 3px solid var(--lightpink);
  background-color: var(--lightpink);
  opacity: 0.6;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  transform: translate(calc(-50% + 15px), -50%);
  z-index: 9999;
  mix-blend-mode:hard-light;
}

.cursor2 {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: var(--violet);
  opacity: 1;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 9999;
  mix-blend-mode: hard-light;
}

.hover {
  width: 25px;
  height: 25px;
  background-color: transparent;
  opacity: 0.8;
}

.cursorinnerhover {
  width: 20px;
  height: 20px;
  opacity: .3;
}
*/

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* prevent drag */
.user-drag-none {
  /*user-drag: none;*/
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
}

/* width */
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--cinzaclaro);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 8px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--darkgold);
}

/* Fonts */
.geometriaL {
  font-family: var(--geometriaL);
  font-weight: 300;
}

.geometria {
  font-family: var(--geometria);
  font-weight: 400;
}

.geometriaM {
  font-family: var(--geometriaM);
  font-weight: 500;
}

.geometriaB {
  font-family: var(--geometriaB);
  font-weight: normal;
}

.komu {
  font-family: var(--komu);
  font-weight: 400;
  font-style: normal;
}

strong {
  font-family: var(--geometriaB);
  font-weight: normal;
}

.bg-board {
  background: url('./assets/images/bg-board.avif');
  background-size: contain;
  position: relative;
  z-index: -1;
}

.bg-board-2 {
  background: url('./assets/images/bg-board-2.avif');
  background-size: contain;
  background-position: top center;
  background-repeat: repeat-y;
}

.bg-board-3 {
  background: url('./assets/images/bg-board-3.avif');
  background-size: cover;
  background-position: bottom center;
  background-repeat: repeat-y;
}

@media only screen and (max-width: 766px) {
  .bg-board-3 {
    background: url('./assets/images/bg-board-2.avif') top center;
    background-size: cover;
    min-height: 100vh;
  }
}

.offside {
  background: url('./assets/images/offside.avif');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-stadium {
  background: url('./assets/images/bg-stadium.avif') no-repeat top center;
  background-size: cover;
  min-height: 100vh;
}

@media only screen and (max-width: 900px) {
  .bg-board-2 {
    background: url('./assets/images/bg-board-2-mobile.avif') top center;
    background-size: contain;
    min-height: 100vh;
  }
}

.field {
  background: url('./assets/images/football-field.svg') no-repeat center center;
  background-size: contain;
  position: relative;

}


.btn-primary {
  background: radial-gradient(36.03% 98.43% at 48.38% 1.08%, #EDCB64 0%, #DDA130 100%);
  color: var(--darkred);
  font-family: var(--geometriaM);
  font-weight: normal;
  padding: 12px 28px;
  border-radius: 14px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background: radial-gradient(36.03% 98.43% at 48.38% 1.08%, #f4da8b 0%, #e0af55 100%);
  color: var(--darkred);
  font-family: var(--geometriaM);
  font-weight: normal;
  padding: 12px 28px;
  border-radius: 14px;
  transition: background-color 0.3s ease;
}

.animate-box {
  animation: updown 12s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation-direction: normal;
}


mark {
  animation: 2.5s highlight 1.5s alternate infinite;
  background-color: none;
  background: linear-gradient(90deg, #d4203b 50%, rgba(255, 255, 255, 0) 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  color: var(--branco);
  padding: 0 4px;
}

@keyframes highlight {
  0% {
    background-position: 100% 0;
  }

  30%,
  70%,
  100% {
    background-position: 0 0;
  }

}

.bg-grass {
  background: url('./assets/images/bg-grass.avif') no-repeat top center;
  background-size: cover;
}


.faq-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.faq {
  font-family: var(--geometria);
  color: var(--vermelhosangue);
  background-color: transparent;
  border: 2px solid var(--vermelhosangue);
  border-radius: 10px;
  margin: 20px 0;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq.bb {
  font-family: var(--geometria);
  color: var(--brancp);
  background-color: transparent;
  border: 2px solid var(--branco);
  border-radius: 10px;
  margin: 20px 0;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq.bb:first-child {
  margin-top: 0;
}

/*
.faq:hover {
  transform: translateY(-5px);

}
*/

.faq.active {
  background-color: var(--vermelhosangue);
  color: #fff;
}

.faq.bb.active {
  background-color: var(--transparent);
  color: var(--branco);
}

.faq-title,
.faq-title.bb {
  font-family: var(--komu);
  margin: 0 35px 0 0;
  font-size: 1.8rem;
  transition: color 0.3s ease;
}

.faq-title.bb {
  color: var(--branco);
}

.faq.active .faq-title,
.faq.bb.active .faq-title {
  color: #fff;
}

.faq-text {
  display: none;
  margin: 30px 0 0;
  font-size: 1rem;
  line-height: 1.5;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq.active .faq-text {
  display: block;
}

.faq.bb.active .faq-text {
  display: block;
}

.faq-toggle {
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  padding: 0;
  position: absolute;
  top: 36px;
  right: 30px;
  height: 30px;
  width: 30px;
  color: var(--vermelhosangue);
  transition: all 0.3s ease;
}

.faq.active .faq-title,
.faq.bb.active .faq-title {
  color: #fff;
}

.faq-text {
  display: none;
  margin: 30px 0 0;
  font-size: 1rem;
  line-height: 1.5;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq.active .faq-text {
  display: block;
}

.faq.bb.active .faq-text {
  display: block;
}

.faq-toggle {
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  padding: 0;
  position: absolute;
  top: 36px;
  right: 30px;
  height: 30px;
  width: 30px;
  color: var(--vermelhosangue);
  transition: all 0.3s ease;
}

.faq-toggle.bb {
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  padding: 0;
  position: absolute;
  top: 36px;
  right: 30px;
  height: 30px;
  width: 30px;
  color: var(--branco);
  transition: all 0.3s ease;
}

.faq.bb.faq-toggle {
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  padding: 0;
  position: absolute;
  top: 36px;
  right: 30px;
  height: 30px;
  width: 30px;
  color: var(--branco);
  transition: all 0.3s ease;
}

.faq.active .faq-toggle,
.faq.bb.active .faq-toggle {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
}

.faq-toggle:hover,
.faq-toggle.bb:hover {
  transform: scale(1.1);
}

.faq-toggle .fa-minus {
  display: none;
}

.faq.active .faq-toggle .fa-minus {
  display: block;
}

.faq.active .faq-toggle .fa-plus {
  display: none;
}

.faq-toggle:focus {
  outline: 0;
}

/* Watermark Styles */
.watermark {
  position: fixed;
  bottom: 30px;
  right: 30px;
  font-size: 2.5rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.5s ease-out 0.5s forwards;
  font-family: 'Courier New', monospace;
  letter-spacing: 2px;
  z-index: 1000;
  pointer-events: none;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.7);
  transition: all 0.5s ease;
}

.watermark:hover {
  color: rgba(0, 0, 0, 0.25);
  transform: translateY(0) scale(1.1);
}

/* Watermark Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*
@keyframes updown {

  0%, 100% {
    transform: translateY(-58px);
  }
  20%, 80% {
    transform: translateY(-116px);
  }
  40%, 60% {
    transform: translateY(-174px);
  }
  60% {
    transform: translateY(-232px);
  }
  80% {
    transform: translateY(-274px);
  }
}
*/
@keyframes updown {

  0%,
  100% {
    transform: translateY(0px);
  }

  10%,
  90% {
    transform: translateY(-58px);
  }

  20%,
  80% {
    transform: translateY(-116px);
  }

  30%,
  70% {
    transform: translateY(-174px);
  }

  40%,
  60% {
    transform: translateY(-232px);
  }

}

/* Sections */

/*
.video-insta {
  min-height: 100vh !important; 
}

.video-insta video {
  min-height: 100vh !important;
}

video.bg {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 600px;
    object-fit: cover;
    pointer-events: none;
}
*/


.hero-full {
  background: url(./assets/images/MDS_header_sangue_clear.avif) no-repeat bottom center;
  background-size: cover;
  min-height: 100dvh;
}

.titleAD {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--brown);
  width: 1820px;

}

.titleAD text,
.titleAD text textPath {
  font-family: var(--venice);
  font-weight: 900;
  font-style: normal;
  letter-spacing: -0.05em;
  color: var(--brown);
  fill: var(--brown);
}

.video-preview {
  /*background: url(./assets/images/video-preview.gif) no-repeat top center;*/
  background: url(./assets/images/video-preview-cellphone.avif) no-repeat center center;
  background-size: cover;
}

.header-menu {
  width: 100%;
  background: rgba(255, 255, 255, 0.80);
  /*background: linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.80) 100%);*/
  backdrop-filter: blur(15px);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3;
}

.hero {
  background: url(./assets/images/hero-header-desk.webp) no-repeat center bottom;
  background-size: cover;
  /*height: calc(100vh - 114px);*/
  height: 100vh;
}

video.bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 960px;
  min-height: 680px;
  /*height: auto;*/
  object-fit: cover;
  pointer-events: none;
  z-index: -1;
}

.overlay {
  position: absolute;
  background: rgba(0, 0, 0, 1.0);
  min-height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}


@media only screen and (max-width: 676px) {
  video.bg {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 680px;
    /*height: auto;min-height: 94vh;
        object-fit: cover;*/
    pointer-events: none;
  }

  .hero {
    background: url(./assets/images/header_banner_mobile_pt.webp) no-repeat top center;
    background-size: cover;
    height: 100vh;
  }

  /**/
}

/* Elements */



/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 766px) {

  #gt_float_wrapper {
    left: auto !important;
    right: 20px !important;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 1280px) {}

/* Extra large devices (large laptops and desktops, 1200px and up)*/
@media only screen and (min-width: 1280px) {
  .hero {
    min-height: calc(100vh - 128px);
    background-size: cover;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 766px) {}


@keyframes draw {
  from {
    stroke-dasharray: 0 100;
  }
}

ul.check {
  list-style-type: none;
}

ul.check li:before {
  content: '\2014';
  position: absolute;
  margin-left: -20px;
}

.overlay {
  position: absolute;
  background: rgba(113, 113, 125, 0.75);
  /*min-height: 100%;*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
  z-index: 10;
}

/* Display drop-down menu on hover */
nav ul li:hover>ul {
  display: inherit;
}

/* Change this in order to change the symbol of the drop-down menu */
li>a:after {
  content: '';
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

li>a:only-child:after {
  content: '';
}

.search-input::placeholder {
  font-size: medium;
  color: #fff;
}


.nav-language {
  width: auto;
  background-color: #4c3c7e;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  border-radius: 70px 0px 0px 70px;
  position: fixed;
  right: 0px;
  /*top: 138px;*/
  padding: 6px 4px 6px 6px;
  gap: 5px;
  transition: all .3s ease-in-out;
  z-index: 10;
}

.esconde {
  -webkit-animation: elastic once infinite;
  animation: elastic once infinite;
  -webkit-animation-name: run;
  animation-name: run;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

@keyframes run {
  0% {
    left: 90%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 90%;
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@-webkit-keyframes slideInleft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInleft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@-webkit-keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.25);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.25);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@-webkit-keyframes flipInY {
  0% {
    opacity: 0;
    transform: perspective(90vw) rotateY(67.5deg);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes flipInY {
  0% {
    opacity: 0;
    transform: perspective(90vw) rotateY(67.5deg);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

[data-animation] {
  opacity: 0;
  -webkit-animation-timing-function: var(--animation-timing-function);
  animation-timing-function: var(--animation-timing-function);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: var(--animation-duration);
  animation-duration: var(--animation-duration);
  will-change: transform, opacity;
}

.animations-disabled,
.animations-disabled [data-animation] {
  -webkit-animation: none !important;
  animation: none !important;
  opacity: 1 !important;
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

.slideInLeft {
  -webkit-animation-name: slideInleft;
  animation-name: slideInleft;
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

.zoomReverseIn {
  -webkit-animation-name: zoomReverseIn;
  animation-name: zoomReverseIn;
}

.flipInY {
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

.flipOutY {
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  animation-direction: reverse;
}

.swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.swiper-pagination-2 {
  position: relative;
  margin-top: 220px;
}

.swiper-button-next-2 {
  top: auto;
  bottom: 0;
}

.swiper-button-prev-2 {
  /*left: auto;*/
  right: 100px;
}

.swiper-button-next,
.swiper-button-prev {
  top: auto;
  bottom: -45px;
}

.swiper-button-prev {
  /*left: auto;*/
  right: 50px;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: auto;
  left: 50px;
}

.swiper-button-next,
.swiper-button-next-2 {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='15' viewBox='0 0 18 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.5186 7.5L1.5 7.5' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9.91113 1.5L15.5186 7.5L9.91113 13.5' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  content: '';
  width: 32px;
  height: 32px;
  background-color: var(--vermelhosangue);
  border-radius: 100%;
}

.swiper-button-prev,
.swiper-button-prev-2 {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='15' viewBox='0 0 18 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.49992 7.5L15.5186 7.5' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7.10742 13.5L1.49997 7.5L7.10742 1.5' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  content: '';
  width: 32px;
  height: 32px;
  background-color: var(--vermelhosangue);
  border-radius: 100%;
}

.swiper-button-next:hover,
.swiper-button-next-2:hover,
.swiper-button-prev:hover,
.swiper-button-prev-2:hover {
  background-color: var(--vermelhosangue);
}

.swiper-button-next:hover,
.swiper-button-next-2:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='15' viewBox='0 0 18 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.5186 7.5L1.5 7.5' stroke='%232D0000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9.91113 1.5L15.5186 7.5L9.91113 13.5' stroke='%232D0000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.swiper-button-prev:hover,
.swiper-button-prev-2:hover {

  background-image: url("data:image/svg+xml,%3Csvg width='18' height='15' viewBox='0 0 18 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.49992 7.5L15.5186 7.5' stroke='%232D0000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7.10742 13.5L1.49997 7.5L7.10742 1.5' stroke='%232D0000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.swiper-button-prev:after,
.swiper-button-prev-2:after,
.swiper-rtl .swiper-button-next:after {

  font-size: 1.2rem;
  color: transparent;
}

.swiper-button-next:after,
.swiper-button-next-2:after,
.swiper-rtl .swiper-button-prev:after {

  font-size: 1.2rem;
  color: transparent;
}

.swiper-button-next-2.swiper-button-disabled,
.swiper-button-prev-2.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none;
}

.swiper-pagination-bullet {
  background-color: var(--branco);
  width: 8px;
  height: 8px;
  opacity: 0.5;
  border-radius: 100px;
}

.swiper-pagination-bullet-active {
  width: 26px;
  height: 8px;
  background-color: var(--branco);
  opacity: 1;
  border-radius: 100px;
}

.swiper-pagination-2 .swiper-pagination-bullet {
  background-color: var(--vermelhosangue);
  width: 8px;
  height: 8px;
  opacity: 0.5;
  border-radius: 100px;
}

.swiper-pagination-2 .swiper-pagination-bullet-active {
  width: 26px;
  height: 8px;
  background-color: var(--vermelhosangue);
  opacity: 1;
  border-radius: 100px;
}

#bulb {
  width: 159px;
  height: 150px;
  rotate: 180deg;
  background: url(./assets/images/LZRvVMR.webp) no-repeat;
  -webkit-animation: anim 1s 4 forwards;
  /* Safari 4+ */
  -moz-animation: anim 1s 4 forwards;
  /* Fx 5+ */
  -o-animation: anim 1s 4 forwards;
  /* Opera 12+ */
  animation: anim 1s 4 forwards;
  /* IE 10+, Fx 29+ */
}

@-webkit-keyframes anim {

  0%,
  30%,
  100% {
    background: url(./assets/images/RKCaVBv.webp) no-repeat;
  }

  20%,
  40% {
    background: url(./assets/images/LZRvVMR.webp) no-repeat;
  }
}

@-moz-keyframes anim {

  0%,
  30%,
  100% {
    background: url(./assets/images/RKCaVBv.webp) no-repeat;
  }

  20%,
  40% {
    background: url(./assets/images/LZRvVMR.webp) no-repeat;
  }
}

@-o-keyframes anim {

  0%,
  30%,
  100% {
    background: url(./assets/images/RKCaVBv.webp) no-repeat;
  }

  20%,
  40% {
    background: url(./assets/images/LZRvVMR.webp) no-repeat;
  }
}

@keyframes anim {

  0%,
  30%,
  100% {
    background: url(./assets/images/RKCaVBv.webp) no-repeat;
  }

  20%,
  40% {
    background: url(./assets/images/LZRvVMR.webp) no-repeat;
  }
}


/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--vermelhoescuro);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

/* Cortinas */
.curtain {
  position: fixed;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 100;
}

.curtain-left {
  left: 0;
  background: var(--vermelhosangue);
}

.curtain-right {
  right: 0;
  background: var(--vermelhosangue);
}

.video-container-scrub {
  position: relative;
  min-height: 100svh;
  width: 100vw;
  /*height: 3000px;*/

  /* Set height based on scroll distance calculation */
  overflow: hidden;
}


#scrollVideo {
  will-change: transform;
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100svh;
  width: 100vw;
  z-index: 1;
  object-fit: cover;
}


.container_faq {
  box-shadow: 0 2px 2px 0 rgb(0, 0, 0, 0.05);
  margin: 15px 0;

}

.aro {
  border: 2px solid var(--yellow);
}

.question,
.question2 {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.question::after {
  content: "\002B";
  font-size: 1.8rem;
  position: absolute;
  right: 0px;
  transition: 0.2s;
}

.question.active::after,
.question2.active::after {
  transform: rotate(45deg);
}

.question2::after {
  content: "\002B";
  font-size: 1.8rem;
  position: absolute;
  right: 0px;
  transition: 0.2s;
  color: var(--darkgray);
}

.question2.active::after {
  transform: rotate(45deg);
}

.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer {
  line-height: 1rem;
}

/*
.question.active + .answercont {
}*/

/* Infinite Stack Carousel */
.slider-horizontal-container {
  width: 100%;
  /*min-height: 460px;*/
  height: auto;
  min-height: 440px;
  /* 520px; */
  /* Fixed height for stacking context */
  position: relative;
  overflow: visible;
}

.slider-horizontal-container .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-horizontal-container .swiper-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  background: white;
  border-radius: 32px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  transition: none;
  /* Let GSAP handle transitions */
}

/* Horizontal carousel button disabled state — matches .swiper-button-disabled */
.carrossel-h-button-next:disabled,
.carrossel-h-button-prev:disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none;
}

/* Explicitly show active card */
.slider-horizontal-container .swiper-slide.active-gsap {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 10;
}

.item-carrossel-h {
  height: 100%;
  padding: 32px;
  display: flex;
  flex-direction: row;
  /* Keep image and text side-by-side inside card if desired, or flex-col */
  gap: 32px;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  .slider-horizontal-container {
    min-height: 650px;
  }

  .item-carrossel-h {
    flex-direction: column;
    padding: 24px;
  }
}




/* Timeline */

/* ── WRAPPER ── */
.timeline-wrap {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  z-index: 1;
}

/* vertical line — desktop: true center */
.timeline-wrap::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 60px;
  bottom: 80px;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, var(--line) 5%, var(--line) 95%, transparent);
}

/* ── ROW (desktop: 3-column grid) ── */
.row {
  display: grid;
  grid-template-columns: 1fr 28px 1fr;
  align-items: center;
  position: relative;
}

.spacer {
  height: 32px;
}

.empty {}

/* ── DOT ── */
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dot);
  border: 1.5px solid #555;
  justify-self: center;
  z-index: 2;
  transition: background 0.3s, border-color 0.3s;
}

.row:hover .dot {
  background: var(--dot-active);
  border-color: var(--dot-active);
}

/* ── CARD ── */
.card {
  background: var(--card);
  padding: 18px 20px;
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s;
  cursor: default;
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  background: #6a6a6a;
}

.card-left {
  text-align: right;
}

.card-right {
  text-align: left;
}

/* arrow: left card → points RIGHT toward dot */
.card-left::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid var(--card);
  transition: border-left-color 0.3s;
}

.card-left:hover::after {
  border-left-color: #6a6a6a;
}

/* arrow: right card → points LEFT toward dot */
.card-right::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid var(--card);
  transition: border-right-color 0.3s;
}

.card-right:hover::before {
  border-right-color: #6a6a6a;
}

/* accent (2026) */
.card-accent {
  background: var(--accenthover) !important;
}

.card-accent .year,
.card-accent .desc {
  color: #fff;
}

.card-accent:hover {
  background: var(--accent) !important;
}

.card-accent::before {
  border-right-color: var(--accenthover) !important;
}

.card-accent:hover::before {
  border-right-color: var(--accent) !important;
}

/* ── TYPOGRAPHY ── */
.year {
  font-family: var(--komu);
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  display: block;
  margin-bottom: 6px;
}

.desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.55;
  font-family: var(--geometria);
  color: var(--branco);
}

/* ── MOBILE ──
       The key insight: use position:absolute on .dot so its X is
       mathematically identical to the line's left value.

       Line left  = 8px  (from .timeline-wrap content edge)
       Dot left   = 8px  + transform:translate(-50%,-50%) centers the 10px circle on that pixel
       Card arrow = left:-8px + top:50% translateY(-50%) → tip at x=0 of card = x=33px of row
       Card       = padding-left:33px  (8 line + 5 dot-radius + 12 gap + 8 arrow)
    ── */
@media (max-width: 520px) {

  .timeline-wrap::before {
    left: 30px;
    transform: none;
  }

  .row {
    display: block;
    position: relative;
    padding-left: 33px;
  }

  .empty {
    display: none;
  }

  .dot {
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translate(-50%, -50%);
    justify-self: unset;
  }

  .card-left,
  .card-right {
    width: 100%;
    text-align: left;
  }

  /* kill desktop right-arrow on card-left */
  .card-left::after {
    display: none;
  }

  /* give card-left a left-pointing arrow (same as card-right already has) */
  .card-left::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid var(--card);
    transition: border-right-color 0.3s;
  }

  .card-left:hover::before {
    border-right-color: #6a6a6a;
  }

  .card-accent.card-left::before,
  .card-accent.card-right::before {
    border-right-color: var(--accenthover) !important;
  }

  .card-accent.card-left:hover::before,
  .card-accent.card-right:hover::before {
    border-right-color: var(--accent) !important;
  }
}


/* Vanilla CSS for flip card */
.card_wrapper {
  perspective: 1000px;
  cursor: pointer;
}

.card__content {
  transform-style: preserve-3d;
}

.card_wrapper:hover .card__content {
  transform: rotateY(.5turn);
}

.card__front,
.card__back {
  backface-visibility: hidden;
}

.card__back {
  transform: rotateY(.5turn);
}


@keyframes rotate-background {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}