/* Reset CSS de Eric Meyer - versão reduzida */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
}

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

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  /* Corta qualquer coisa que tente sair pela direita */
}


html {
  scroll-behavior: smooth;
}




/* === VARIÁVEIS GLOBAIS === */
:root {

  /* color */
  --white-color: #e5cfcf;
  --black-color: #160023;
  --light-purple-color: #54009e;
  --dark-purple-color: #2c0042;
  --red-color: #bf0000;
  --gray-color: #5B5B68;

  /* H titles sizes */
  --h1-font-size: clamp(2rem, 1.3rem + 3vw, 3rem);
  --h2-font-size: clamp(1.6rem, 1.2rem + 2.5vw, 2.4rem);
  --h3-font-size: clamp(1.4rem, 1.1rem + 1.6vw, 1.8rem);
  --h4-font-size: clamp(1.2rem, 1rem + 1.5vw, 1.4rem);

  /* texts size */
  --text-font-size: clamp(1.2rem, 1rem + 0.4vw, 1rem);
  --text-menu-size-mobile: clamp(1.4rem, 1.1rem + 1.8vw, 1.4rem);
  --text-menu-size-desktop: clamp(1.2rem, 1rem + 0.4vw, 1.3rem);

  /* weight type */
  --title-weight: 700;
  --text-weight: 500;

  /* shadows */
  --large-box-shadow: 20px 20px 0 0 var(--black-color);
  --medium-box-shadow: 15px 15px 0 0 var(--black-color);
  --small-box-shadow: 10px 10px 0 0 var(--black-color);
  --large-box-shadow-hover: 25px 25px 0 0 var(--black-color);
  --medium-box-shadow-hover: 19px 19px 0 0 var(--black-color);
  --small-box-shadow-hover: 13px 13px 0 0 var(--black-color);

  --large-box-shadow-light: 20px 20px 0 0 var(--dark-purple-color);
  --medium-box-shadow-light: 15px 15px 0 0 var(--dark-purple-color);
  --small-box-shadow-light: 10px 10px 0 0 var(--dark-purple-color);
  --large-box-shadow-light-hover: 25px 25px 0 0 var(--dark-purple-color);
  --medium-box-shadow-light-hover: 19px 19px 0 0 var(--dark-purple-color);
  --small-box-shadow-light-hover: 13px 13px 0 0 var(--dark-purple-color);

  /* hover effect */
  --large-hover: translate(-5px, -5px);
  --medium-hover: translate(-4px, -4px);
  --small-hover: translate(-3px, -3px);
}





/* === CLASSES GATILHOS === */

/* Section color */
.dark-section {
  background: var(--black-color);
}

.light-section {
  background: var(--white-color);
}

.gray-section {
  background: var(--gray-color);
}

.light-purple-section {
  background: var(--light-purple-color)
}

/* Space */
.large-bottom-margin {
  margin-bottom: 70px
}

.medium-bottom-margin {
  margin-bottom: 50px
}

.small-bottom-margin {
  margin-bottom: 30px
}

.horizontal-padding {
  padding: 0 4%;
}

/* Text color & centralize */
.black-text {
  color: var(--black-color);
}

.white-text {
  color: var(--white-color);
}

.gray-text {
  color: var(--gray-color);
}

.light-purple-text {
  color: var(--light-purple-color);
}

.center-content {
  text-align: center;
}

/* Red line spacer (border-top) */
/* <div class="red-line-spacing"></div> */
.red-line-spacing {
  border: 0;
  width: 16%;
  border-top: 6px solid var(--red-color);
  margin: 40px auto;
}

/* <div class="left-red-line-spacing-1-2"></div> */
.left-red-line-spacing-1-2 {
  border: 0;
  width: 32%;
  border-top: 6px solid var(--red-color);
  margin: 20px 0;
}

/* <div class="left-red-line-spacing-1-1"></div> */
.left-red-line-spacing-1-1 {
  border: 0;
  width: 16%;
  border-top: 6px solid var(--red-color);
  margin: 20px 0;
}

.red-line-lateral {
  padding-left: 24px;
  border-left: 6px solid var(--red-color)
}





/* --- Configuração da Fonte/Tipografia --- */
@font-face {
  font-family: 'Zalando Sans Expanded';
  src: url('/fonts/ZalandoSansExpanded-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Zalando Sans Expanded';
  src: url('/fonts/ZalandoSansExpanded-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Espaçamento top para o menu */
main {
  padding-top: 120px;
  background-color: var(--dark-purple-color);
}

/* Margem global do site*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Sections sempre 100% para aceitar fundos */
section {
  width: 100%;
  padding: 80px 0;
  border-right: 6px solid;
  border-left: 6px solid;
  border-bottom: 6px solid;
  border-color: var(--black-color);
}

/* Automação para os titles e texts */
h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h1,
h2,
h3,
h4 {
  font-weight: var(--title-weight);
  line-height: 1.2;
  color: var(--white-color);
}

p {
  color: var(--gray-color);
  font-size: var(--text-font-size);
  font-weight: var(--text-weight);
  line-height: 1.4;
}

a {
  text-decoration: none;
  color: var(--gray-color);
  font-size: var(--text-font-size);
  font-weight: var(--text-weight);
  line-height: 1.4;

}

a:hover {
  color: var(--red-color)
}

li {
  color: var(--gray-color);
  font-size: var(--text-font-size);
  font-weight: var(--text-weight);
  line-height: 1.4;
}

body {
  font-family: "Zalando Sans Expanded", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;

  /* Estrutura para o footer ficar sempre no fim */
  display: flex;
  flex-direction: column;
  min-height: 100vh;

  /* Controle de visibilidade para evitar o "pulo" do header */
  opacity: 0;
  transition: opacity 0s ease-in;
}

button,
input,
select,
textarea {
  font-family: inherit;
  /* Use a mesma fonte do pai */
}

body.loaded {
  opacity: 1;
}

.page-title {
  padding: 120px 0;
  background: var(--black-color);
}

.cta-button,
button {
  z-index: 99;
  cursor: pointer;
  border: 6px solid var(--black-color);
  box-shadow: var(--small-box-shadow);
  display: inline-block;
  padding: 10px 20px;
  font-size: var(--text-font-size);
  font-weight: var(--title-weight);
  color: var(--white-color);
  background: var(--light-purple-color);
}

.cta-button:hover {
  background: var(--red-color);
  color: var(--white-color);
  transform: var(--small-hover);
  box-shadow: var(--small-box-shadow-hover);
}

.light-cta-button {
  cursor: pointer;
  border: 6px solid var(--dark-purple-color);
  box-shadow: var(--small-box-shadow-light);
  display: inline-block;
  padding: 10px 20px;
  font-size: var(--text-font-size);
  font-weight: var(--title-weight);
  color: var(--white-color);
  background: var(--light-purple-color);
}

.light-cta-button:hover {
  background: var(--red-color);
  color: var(--white-color);
  transform: var(--small-hover);
  box-shadow: var(--small-box-shadow-light-hover);
}

h1.title-section:hover,
h2.title-section:hover,
.red-line-lateral:hover {
  transform: translate(0, -4px);
}




/* --- VM PATTERN (LOGO) --- */
.vm-pattern {
  position: relative;
  overflow: hidden;
}

.vm-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-image: url('/svg/vm-pattern.svg');
  background-repeat: repeat;
  background-size: 340px;
  pointer-events: none;
}

.vm-pattern-light::before {
  opacity: 0.02;
}

.vm-pattern-dark::before {
  filter: brightness(0);
  /* Transforma o branco em preto/escuro */
  opacity: 0.02;
}

/* Ocupa a tela inteira */
.pattern-full::before {
  width: 100%;
}

/* Ocupa só a metade esquerda */
.pattern-left-50::before {
  width: 50%;
}

/* Ocupa só a metade direita */
.pattern-right-50::before {
  width: 50%;
  right: 0;
  left: auto;
}

/* Ocupa apenas o meio */
.pattern-center::before {
  width: 60%;
  left: 50%;
  /* Ou o tamanho que preferir para o centro */
  transform: translateX(-50%);
}




/* --- MAZE TEXTURE (LABIRINTO) --- */

/* red */
.red-maze-bg {
  position: relative;
  overflow: hidden;
}

/* light purlpe */
.light-purple-maze-bg {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.red-maze-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url('/svg/maze-bg.svg');
  mask-image: url('/svg/maze-bg.svg');
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  background-color: var(--red-color);
  opacity: 0.4;
}

.light-purple-maze-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url('/svg/maze-bg.svg');
  mask-image: url('/svg/maze-bg.svg');
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  background-color: var(--light-purple-color);
  z-index: 0;
  opacity: 0.6;
}

.red-maze-bg>* {
  position: relative;
  z-index: 1;
}

.light-purple-maze-bg>* {
  position: relative;
  z-index: 1;
}

h1.title-section {
  text-align: center;
}













/* ========== RESPONSIVO - TABLET 768+ ==========*/

@media screen and (min-width:768px) {}















/* ========== RESPONSIVO - LAPTOP 1024+ ==========*/

@media screen and (min-width:1024px) {
  h1.title-section {
    text-align: left;
  }

  .red-line-lateral {
    padding-left: 40px;
  }

  section {
    padding: 120px 0;
  }

  .container {
    padding: 0 60px;
  }

  .horizontal-padding {
    padding: 0 12%;
  }
}















/* ========== RESPONSIVO - DESKTOP 1440+ ==========*/

@media screen and (min-width:1440px) {}