body {
    background-color: #f8f9fa;
    overflow-x: hidden;
}










@media (min-width: 1440px) {
  #eventos {
  position: relative;
  background-color: #A0001C;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  padding: 2rem;
  box-sizing: border-box;
}

.eventos-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.eventos-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eventos-conteudo {
  position: relative;
  z-index: 1;
  margin-top: 3rem; /* novo */
}

.titulo-eventos {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1rem;
}

.eventos-slider {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 2rem;
}



.evento-localidade {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 500;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.evento-local {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 1rem;
  
}

.evento-dia {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 4.5rem;
  margin-bottom: 0.5rem;
}

.evento-data-hora {
  display: flex;
  flex-direction: column;  /* novo */
  align-items: center;     /* centraliza verticalmente */
  gap: 0.2rem;             /* espaço reduzido */
  margin-bottom: 4rem;        /* opcional para afastar do texto */
}

.evento-data-hora span {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 24px;
}

/* Indicadores */
.eventos-indicadores {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.eventos-indicadores .dot {
  position: relative;
  width: 16px;
  height: 16px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.eventos-indicadores .dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}


.fundo-pilares-mobile {
  display: none;
}

#hero-mobile {
  display: none;
}
  
/* Hero Section Desktop */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .hero-bg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-width: 800px;
    height: auto;
  }

#eventos {
    display: none !important;
  }

/*Candidato Desktop */

#candidato-desktop {
  display: block;
  background-color: #DB0327;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

#candidato-desktop .subtitulo {
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

#candidato-desktop .nome {
  font-size: 36px;
  line-height: 1.3;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

#candidato-desktop .descricao {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1rem;
}

#candidato-desktop .slide-desktop {
  display: none !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#candidato-desktop .slide-desktop.active {
  display: flex !important;
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.slide-desktop {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'OwnersXWide', sans-serif;
  padding-left: 4rem;
  padding-right: 6rem; /* menos espaço à esquerda */
  gap: 3rem;
}

.slide-desktop .imagem {
  flex: 0 0 50%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end; /* importante para alinhar por baixo */
  margin-bottom: 0;
  padding-left: 2rem; /* ajustável */
  align-items: flex-end;
  padding-bottom: 0; /* importante */
  padding-top: 0; /* zera para não empurrar para cima */
  padding-left: 10rem;
}

.slide-desktop .imagem img {
  max-width: 100%;
  max-height: 140vh;
  height: auto;
  width: auto;
  object-fit: contain;
  margin-bottom: 0px;
  margin-top: auto;
  padding-left: 1rem;
  transform: translateY(120px);
}

.slide-desktop .texto {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  text-align: left;
  padding-left: 0;
  margin-left: -2rem;
}

.slide-desktop .subtitulo {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 500;
  font-size: 55px;
  color: #840615;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.slide-desktop .nome {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 500;
  font-size: 55px;
  line-height: 1.2;
  color: white;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 4px;
}

.slide-desktop .descricao {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 42px;
  color: white;
  margin-bottom: 1.1rem;
  line-height: 1;
  font-weight: 100;
}

.indicadores-desktop {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.dot-desktop {
  width: 26px;
  height: 26px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot-desktop.active {
  background-color: white;
}


/*DISCURSO DESKTOP */
#discurso-desktop {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
  z-index: 0;
}

#discurso-desktop::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/static/website/img/fundo_discurso_benfica_no_sangue.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: -1;
}

#discurso-desktop .discurso-titulo {
  position: absolute;
  top: 6rem;
  left: 4rem;
  font-family: 'OwnersXWide', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #DB0327;
  text-transform: uppercase;
  letter-spacing: 8px;
  z-index: 1;
  margin: 0;
}

#discurso-desktop .grid-discurso {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem 12rem;
  position: relative;
  z-index: 1;
  margin-top: 15rem;
  padding-left: 4rem;
  padding-right: 4rem;
  max-width: 1800px;
}

#discurso-desktop .bloco-discurso {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: black;
}


/* VISAO/MANIFESTO */
#visao-desktop {
  position: relative;
  display: block;
  width: 100vw;
  min-height: 100vh;
  padding: 6rem 10rem;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 0;
  isolation: isolate; /* ← novo */
}

#visao-desktop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/static/website/img/fundo_manifesto_benfica_no_sangue.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
  z-index: -1; /* ← alterado de 0 para -1 */
}

#visao-desktop .visao-conteudo {
  position: relative;
  z-index: 1;
  opacity: 1.0;
}



#visao-desktop .visao-titulo {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 500;
  font-size: 40px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 12px;
  margin-bottom: 6rem;
  text-align: left;
  position: relative;
  z-index: 1;
}

#visao-desktop .coluna-visao {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem 22rem;
  max-width: 100%;
}

.visao-texto {
  flex: 1;
  overflow: hidden;
  position: relative;
  
}

#visao-desktop  p {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 18px;
  letter-spacing: 0.2em;
  line-height: 1.4;
  color: white;
  margin-bottom: 3rem;
  text-align: left;
}


/*SLIDER FOTOS */
#slider-fotos-desktop {
  display: flex;
  justify-content: center;
  padding: 3rem 0;
  background-color: #f9f9f9;
  position: relative;
}

.carousel-fotos-desktop-wrapper {
  max-width: 1800px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-fotos-desktop {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1.5rem;
  padding: 1rem 3rem;
}

.carousel-fotos-desktop::-webkit-scrollbar {
  display: none;
}

.carousel-fotos-desktop img {
  flex: 0 0 auto;
  width: calc(100% / 3.5); /* ligeiramente menor */
  max-width: 440px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Setas */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  user-select: none;
}

.carousel-btn.left {
  left: 1rem;
}

.carousel-btn.right {
  right: 1rem;
}

/* EVENTOS */
#eventos-desktop {
  background-color: #A0001C;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 4rem 2rem 4rem 2rem; /* ← reduzido de 6rem/10rem */
}



#eventos-desktop .eventos-conteudo-desktop {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}

#eventos-desktop .titulo-eventos {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: white;
  text-align: center;
  padding-top: 2rem;
  padding-right: 55rem;
}

#eventos-desktop .evento-link a {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #ffd700; /* amarelo dourado para destaque sobre fundo escuro */
  text-decoration: underline;
  text-transform: uppercase;
  display: inline-block;
  margin: 0.5rem 0;
  transition: color 0.3s ease;
}

#eventos-desktop .evento-link a:hover {
  color: #ffffff;
  text-decoration: none;
}


#eventos-desktop .eventos-slider-wrapper {
  width: 100%;            /* ou 90%, ou um valor fixo como 1200px */
  max-width: 1000px;
  margin: 0 auto;         /* ← isto é o que o centra horizontalmente */
  align-items: center;
  position: relative;
  display: flex;
}

.eventos-conteudo-desktop {
  position: relative;
  z-index: 1;
  margin-top: 3rem; /* novo */
}

#eventos-desktop .eventos-slider {
  display: flex;
  justify-content: center;
  gap: 2rem;
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}

#eventos-desktop .eventos-slider::-webkit-scrollbar {
  display: none;
}

#eventos-desktop .card-evento {
  flex: 0 0 220px;
  
  min-height: 280px;
  background-color: #f51d41;
  padding: 1.5rem;
  border-radius: 20px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  
}

#eventos-desktop .evento-localidade {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

#eventos-desktop .evento-local {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 0.5rem;
}

#eventos-desktop .evento-dia {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  margin-top: 25%;
}

#eventos-desktop .evento-data-hora {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: auto;
}

#eventos-desktop .evento-data-hora span {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 24px;
}

#eventos-desktop .btn-scroll {
  background-color: rgba(219, 3, 39, 0.9);
  border: none;
  color: white;
  font-size: 4.4rem;
  cursor: pointer;
  padding: 0.1rem 1rem;
  border-radius: 3px;
  user-select: none;
  z-index: 10;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}



#eventos-desktop .btn-scroll.left {
  margin-right: 1rem;
}

#eventos-desktop .btn-scroll.right {
  margin-left: 1rem;
}




/*FORMULARIO */

.formulario-desktop {
  justify-content: center;
  max-width: 90%;
  margin: 0 auto;
  padding: 4rem 2rem;
  margin-top: 4rem;
}

.formulario-desktop .formulario-grid {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  width: 100%;
}

.formulario-desktop .col-esquerda {
  flex: 1 1 35%;
  max-width: 35%;
}

.formulario-desktop .col-direita {
  flex: 1 1 65%;
  max-width: 65%;
}


.formulario-desktop .titulo-form {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: 0.2em;
}

.formulario-desktop .descricao-form {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 0;
  letter-spacing: 0.2em;
  
}



.formulario-desktop form {
  width: 90%;
  padding-left: 30%;
}

.formulario-desktop label {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 15px;
  font-weight: 100;
  margin-bottom: 0.3rem;
  display: block;
}

.formulario-desktop input.form-control {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 14pt;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  border: 1px solid #000;
  margin-bottom: 1.2rem;
}

.formulario-desktop .form-check-label {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 16pt;
  font-weight: 400;
}

.formulario-desktop .form-check-input {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}



.formulario-desktop button[type="submit"] {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 16pt;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  background-color: #DB0327;
  border: none;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.formulario-desktop button[type="submit"]:hover {
  background-color: #a2001c;
}


.dropdown-simples {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: 'OwnersXWide', sans-serif;
  font-size: 12pt;
  padding: 1rem 2rem;
  border: 2px solid #000;
  border-radius: 999px;
  background-color: white;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='30,50 70,90 110,50' stroke='black' stroke-width='10' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
}


}








@media (min-width: 1440px) {
  #candidato {
    display: none;
  }

#discurso {
    display: none;
  }

#visao {
    display: none;
  }

  #slider-fotos {
    display: none;
  }

    #pilares {
    display: block;
  }

  #pilares-desktop {
    display: none;
  }

  #eventos {
    display: none;
  }

  #formulario {
    display: none;
  }

  #slider-candidato-slide-1{
    display: none;
  }

  #slider-candidato-slide-2{
    display: none;
  }

  #slider-candidato-slide-3{
    display: none;
  }


  



  












  #pilares {
  display: block;
  position: relative;
  background-color: #DB0327;
  padding: 6rem 10rem 2rem 10rem;
  overflow: hidden;
  height: auto;
}

#pilares .pilares-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

#pilares .pilares-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#pilares .pilares-conteudo {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

#pilares .pilares-titulo {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 8px;
  margin-bottom: 4rem;
  text-align: center;
}

#pilares .pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 4rem;
  width: 100%;
  box-sizing: border-box;
}

#pilares .pilar-slide {
  color: white;
}

#pilares .pilar-nome {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 1.5rem;
}

#pilares .pilar-descricao {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 20px;
  line-height: 1.8;
}


}













/*fonts */
@font-face {
    font-family: 'OwnersXWide';
    src: url('../fonts/OwnersXWide-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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


@media (max-width: 1439px) {



    #candidato-desktop {
    display: none;
  }

    #discurso-desktop {
    display: none;
  }

  #eventos-desktop {
    display: none;
  }

  #visao-desktop {
    display: none;
  }
 
  #slider-fotos-desktop {
    display: none;
  }

  #pilares-desktop {
    display: none;
  }

  #formulario-desktop {
    display: none;
  }

  #hero {
    display:none;
  }



#hero-mobile {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: block;
  }

  .hero-bg-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('/static/website/img/fundo-hero-mobile.fw.png'); /* substitui pelo correto */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
  }

  .hero-logo-mobile {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    height: auto;
    z-index: 1;
  }

  /* Esconde o hero desktop */
  #hero {
    display: none;
  }
}
  
#candidato {
  height: 100vh;
  background-color: #DB0327;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative; /* <=== ESSENCIAL */
}

.carousel-candidato {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide {
  display: none;
  height: 100%;
}

.slide.active {
  display: block;
}

.conteudo-slide {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  box-sizing: border-box;
  height: calc(100vh - 0px); /* ← limite absoluto, se quiseres ajustar, faz aqui */
  overflow: hidden;
}

.conteudo-slide {
  height: calc(100vh - 30vh); /* ← 30vh é o espaço da imagem no fundo */
}

.text-content {
  color: white;
  text-align: left;
}

.subtitulo {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #840615;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.nome {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  color: white;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.descricao {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.2;
  color: white;
  margin-bottom: 1.2rem;
}

.imagem-content {
  position: relative; /* <- ESSENCIAL */
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-grow: 1;
}

.candidato-img {
  max-width: 100%;
  height: auto;
}

.indicadores {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.dot {
  width: 16px;
  height: 16px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background-color: white;
}










#discurso {
  position: relative;
  background-color: #f9f9f9;
  padding: 4rem 2rem;
  overflow: hidden;
  display: block;
}

/* Mantém o background conforme já tens */
.discurso-background {
  background-image: url('../img/benfica_no_sangue_eventos_martim_borges_coutinho_mayer.png'); /* ou o teu caminho real */
  background-size: cover;       /* cobre toda a área sem distorcer */
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.discurso-conteudo {
  position: relative;
  z-index: 1;
}

/* Título igual */
.discurso-titulo {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #DB0327;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 4rem;
}


/* Para ter duas colunas lado a lado a partir de 768px */
@media (min-width: 768px) {




  .discurso-conteudo {
    display: flex;
    gap: 4rem;
  }
  .coluna-discurso {
    flex: 1 1 50%;
    text-align: left;
  }
}

/* Texto mantém tamanho e estilo */
.coluna-discurso p {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 2rem;
}













#visao {
  position: relative;
  background-color: #000;
  height: 100vh;
  padding: 2rem;
  box-sizing: border-box;
  overflow: hidden;
}

.visao-background {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.visao-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visao-conteudo {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.visao-titulo {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: left;
}

.visao-texto {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.visao-pagina {
  display: none;
}
.visao-pagina.active {
  display: block;
}
.visao-pagina p {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 19px;
  line-height: 1.1;
  color: white;
  text-align: justify;
  margin-bottom: 1rem;
}

.visao-radios {
  text-align: center;
  margin-top: 0.5rem;
}

.visao-radio-btn {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 6px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  box-sizing: border-box;
}

.visao-radio-btn.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}




.slider-fotos {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #DB0327; /* ajusta se necessário */
  padding: 2rem 0;
}

.slider-fotos img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
}

.carousel-fotos {
  position: relative;
  width: 100%;
  height: 100%;
}

.foto-slide {
  display: none;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.foto-slide img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.foto-slide.foto-active {
  display: flex;
}

.foto-indicadores {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.foto-dot {
  width: 16px;
  height: 16px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.foto-dot.foto-active {
  background-color: white;
  opacity: 1;
}







#pilares {
  position: relative;
  background-color: #DB0327;
  padding: 3rem 2rem;
  overflow: hidden;
  z-index: 1;
}

.pilares-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* ← esta linha é essencial */
  z-index: 0;
  pointer-events: none;
}

.pilares-background img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* cobre sem distorcer */
  display: block;
  opacity: 0.5;
}

.pilares-conteudo {
  position: relative;
  z-index: 1;
}

.pilares-titulo {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: white;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 2rem;
}

#pilares .pilares-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 1rem;
  }

  #pilares .pilar-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  color: white;
  min-height: auto;
  height: auto;
}

.pilar-nome {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: white;
  margin-bottom: 1rem;
}

.pilar-descricao {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: white;
}

/* Indicadores */
.pilares-indicadores {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.pilares-indicadores .dot {
  position: relative;
  width: 16px;
  height: 16px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.pilares-indicadores .dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}


.pilar-slide {
  display: none;
  width: 100%;
  flex-shrink: 0;
}

.pilar-slide.active {
  display: block;
}









/* =====================
   DESKTOP ≥ 1440px
===================== */

#eventos {
    display: none;
  }

.titulo-form {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 38pt;
  color: #DB0327;
  line-height: 1.3;
  text-transform: uppercase;
}

.descricao-form {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 400;
  font-size: 36pt;
  line-height: 1.6;
  margin-top: 2rem;
  color: #000;
}

#formulario input[type="text"],
#formulario input[type="email"] {
  border-radius: 55px;
  border: 1px solid #000;
  font-family: 'OwnersXWide', sans-serif;
  font-size: 13pt;
}

#formulario .form-check-input {
  border-radius: 50%;
  width: 20px;
  height: 20px;
}

#formulario .btn-danger {
  background-color: #DB0327;
  font-family: 'OwnersXWide', sans-serif;
  font-size: 13pt;
  font-weight: 500;
}



@media (min-width: 1440px) {
  #formulario {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  #formulario .container {
    max-width: 85%;
    margin: 0 auto;
  }

  #formulario .row {
    align-items: flex-start;
  }

  #formulario .col-md-5 {
    padding-left: 4rem;      /* empurra da esquerda para o centro */
    padding-right: 2rem;     /* mais espaçamento entre texto e form */
  }

  #formulario .col-md-7 {
    padding-left: 2rem;
    padding-right: 4rem;     /* afasta da margem direita */
  }

  .titulo-form {
    font-size: 28pt;
    margin-bottom: 1rem;
  }

  .descricao-form {
    font-size: 16pt;
    margin-bottom: 2rem;
  }

  #formulario input[type="text"],
  #formulario input[type="email"] {
    padding: 1rem 1.5rem;
    font-size: 18pt;
  }

  #formulario .btn-danger {
    padding: 0.8rem 2rem;
    font-size: 18pt;
  }

  #formulario label {
    font-size: 16pt;
  }

  #formulario .form-check-input {
    width: 26px;
    height: 26px;
  }
}





@media (max-width: 1439px) {
  #formulario .col-md-5,
  #formulario .col-md-7 {
    width: 100%;
    padding: 0;
  }

  .titulo-form {
    font-size: 14pt;
    text-align: left;
  }

  .descricao-form {
    text-align: left;
    font-size: 14pt;
    margin-bottom: 2rem;
  }

  #formulario form {
    margin-top: 2rem;
  }
}


.dropdown-simples {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: 'OwnersXWide', sans-serif;
  font-size: 12pt;
  padding: 1rem 2rem;
  border: 1px solid #000;
  border-radius: 999px;
  background-color: white;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='30,50 70,90 110,50' stroke='black' stroke-width='10' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  cursor: pointer;
  width: 60%;
  max-width: 300px;
}

.dropdown-simples:focus {
  outline: none;
  border-color: #DB0327;
}




#rodape {
  background-color: #DB0327;
  padding: 3rem 1rem;
  text-align: center;
}

.logo-footer {
  max-height: 100px;
  margin-bottom: 2rem;
}

.segue-nos {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 200;
  font-size: 14pt;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-align: left;
}

.icon-rs {
  height: 48px;
  width: auto;
  transition: transform 0.2s ease;
}

.icon-rs:hover {
  transform: scale(1.1);
}


/* DESKTOP */








/* Detalhe Candidato */

.candidato-detalhe {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 6rem 4rem;
  gap: 4rem;
  flex-wrap: wrap;
}

.candidato-detalhe .col-imagem {
  flex: 0 0 40%;
  max-width: 40%;
  text-align: center;
}

.candidato-detalhe .col-imagem img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
}

.candidato-detalhe .col-texto {
  flex: 1;
  max-width: 55%;
}

.candidato-detalhe .texto-completo {
  font-size: 18px;
  line-height: 1.8;
  white-space: pre-line;
}




/*PILARES */

@media (min-width: 992px) {
  #pilares {
    padding: 4rem 6rem 1rem 6rem;
    min-height: 100vh;
  }

  #pilares .pilares-titulo {
    margin-top: 100px;
    font-size: 42px;
    margin-bottom: 2rem;
  }

  #pilares .pilar-nome {
    margin-top: 50px;
    font-size: 28px;
  }

  #pilares .pilar-descricao {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.6;
  }

  #pilares .pilares-conteudo {
    max-width: 1200px;
  }
}


/* MOBILE por defeito */
.candidato-detalhe {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 2rem;
}

.col-imagem img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.col-texto {
  text-align: left;
  padding: 0 1rem;
}

/* DESKTOP */
@media (min-width: 1200px) {
  .candidato-detalhe {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 6rem 8rem;
    gap: 6rem;
  }

  .col-imagem {
    flex: 0 0 40%;
  }

  .col-imagem img {
    max-width: 100%;
  }

  .col-texto {
    flex: 0 0 60%;
    padding: 0;
    text-align: left;
  }
}



/*teste slide*/
#candidato-mobile {
  padding: 3rem 1.5rem;
}

.slide-mobile {
  margin-bottom: 6rem;
}

.imagem-mobile img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.texto-mobile {
  text-align: left;
}

.texto-mobile .subtitulo {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 16px;
  color: #DB0327;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.texto-mobile .nome {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}





#scroll-galeria-horizontal {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.scroll-linha-horizontal {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  width: 100vw;
  height: 100vh;
  scroll-behavior: smooth;
}

.scroll-linha-horizontal img {
  flex: 0 0 100vw;
  max-width: 100%;
  max-height: 100vh;
  object-fit: contain;
  scroll-snap-align: start;
  display: block;
  margin: auto;
}

.scroll-foto-box {
  flex: 0 0 100vw;
  height: 100%;
  position: relative;
}

.scroll-foto-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


@media (min-width: 768px) {
  #galeria-fotos-mobile {
    display: none;
  }
}
#galeria-fotos-mobile {
  padding: 2rem 0;
  background-color: #DB0327;
}

.galeria-mobile-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.galeria-mobile-wrapper img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}




#pilares-mobile {
  background-color: #DB0327;
  padding: 4rem 2rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.pilares-mobile-fundo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}



.pilares-mobile-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.pilares-mobile-titulo {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 6px;
}

.pilar-mobile h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-family: 'OwnersXWide', sans-serif;
}

.pilar-mobile p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-family: 'OwnersXWide', sans-serif;
}






#eventos-mobile {
  background-color: #A0001C;
  padding: 4rem 2rem;
}

#eventos-mobile .titulo-eventos-mobile {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 28px;
  color: white;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
}

#eventos-mobile .eventos-mobile-lista {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#eventos-mobile .card-evento-mobile {
  flex: 0 0 90%;
  scroll-snap-align: center;
  background-color: #f51d41;
  background-image: url('../img/fundocard.fw.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 2rem;
  min-height: 420px;
  color: white;
  border-radius: 30px;
  text-align: center;
}

#eventos-mobile .evento-localidade {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

#eventos-mobile .evento-local {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 1rem;
}

#eventos-mobile .evento-dia {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

#eventos-mobile .evento-data-hora {
  display: flex;
  flex-direction: column;  /* novo */
  align-items: center;     /* centraliza verticalmente */
  gap: 0.2rem;             /* espaço reduzido */
  margin-top: 1rem;        /* opcional para afastar do texto */
}

#eventos-mobile .evento-data-hora span {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 24px;
}



/* =======================
   Candidato Slider (Mobile)
   ======================= */

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

.slider-candidato-slide {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slider-candidato-conteudo {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.slider-candidato-titulo {
  flex: 0 0 10%;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: 'OwnersXWide', sans-serif;
}

.slider-candidato-texto {
  flex: 0 0 60%;
  overflow: hidden;
  position: relative;
  padding-bottom: 0rem;
  z-index: 0;
}

.slider-candidato-pagina {
  display: none;
}

.slider-candidato-pagina.active {
  display: block;
}

.slider-candidato-pagina p {
  font-size: 12px;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  text-align: left;
  font-family: 'OwnersXWide', sans-serif;
}

.slider-candidato-radios {
  text-align: center;
  margin-top: -1rem;
  margin-bottom: 0.5rem;
  z-index: 0;
}

/* Estilo base (branco) */
.slider-radio-btn {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 6px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  box-sizing: border-box;
}

/* Ponto interior (ativo) - branco */
.slider-radio-btn.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* EXCEÇÃO: Slider 1 com fundo claro → radio preto */
.slider-candidato-slide.fundo-1 .slider-radio-btn {
  border-color: black;
}

.slider-candidato-slide.fundo-1 .slider-radio-btn.active::after {
  background-color: black;
}



/* WRAPPER da imagem visível */
.slider-candidato-imagem-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48%;
  overflow: hidden;
  pointer-events: none;
}

/* Imagem deslocada para cima (mostra tronco e cabeça, esconde pernas) */
.slider-candidato-imagem {
  position: absolute;
  top: 9vh; /* ajusta este valor para mostrar mais ou menos imagem */
  bottom: 0;
  left: 0;
  height: 83%;
  width: 83%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  pointer-events: none;
}

/* Fundos por slide */
/* 1º SLIDE - fundo-discurso */
/* SLIDE GENÉRICO */
.slider-candidato-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Conteúdo do slide sempre acima do overlay */
.slider-candidato-conteudo {
  position: relative;
  z-index: 1;
}

/* FUNDO 1 - fundo-discurso (texto preto) */
.slider-candidato-slide.fundo-1 {
  background-image: url('/static/website/img/fundo-branco-mobile.fw.png');
  color: black;
}

/* FUNDO 2 - fundo-eventos ESCURO */
.slider-candidato-slide.fundo-2 {
  background-image: url('/static/website/img/fundo-lightred-mobile.fw.png');
  color: white;
}

.slider-candidato-slide.fundo-2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* FUNDO 3 - fundo-eventos CLARO */
.slider-candidato-slide.fundo-3 {
  background-image: url('/static/website/img/fundo-darkred-mobile.fw.png');
  color: white;
}

.slider-candidato-slide.fundo-3::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}


.slider-candidato-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



@media (min-width: 1440px) {
  .fundo-pilares-mobile {
    display: none !important;
  }
  .fundo-pilares-desktop {
    display: block !important;
  }
}



.candidato-detalhe-page {
  padding: 6rem 2rem;
  background-color: #f9f9f9;
  font-family: 'OwnersXWide', sans-serif;
}

.candidato-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: flex-start;
  justify-content: center;
}

.candidato-img-wrapper {
  flex: 0 0 40%;
  max-width: 500px;
}

.candidato-img-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.candidato-texto-wrapper {
  flex: 1 1 50%;
  max-width: 800px;
}

.btn-voltar {
  display: inline-block;
  font-size: 16px;
  color: #DB0327;
  border: 2px solid #DB0327;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.btn-voltar:hover {
  background-color: #DB0327;
  color: white;
}

.candidato-subtitulo {
  font-size: 28px;
  color: #DB0327;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.candidato-texto-completo {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  white-space: pre-line;
}

/* Mobile */
@media (max-width: 768px) {
  .candidato-container {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .candidato-texto-wrapper {
    max-width: 100%;
  }

  .candidato-img-wrapper {
    max-width: 100%;
  }

  .candidato-subtitulo {
    font-size: 22px;
  }

  .candidato-texto-completo {
    font-size: 16px;
  }
}

.partilhar-redes {
  margin-top: 3rem;
  font-family: 'OwnersXWide', sans-serif;
}

.partilhar-redes p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #DB0327;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #444;
  transition: background-color 0.3s ease;
}

.share-btn img {
  width: 20px;
  height: 20px;
}

.share-btn.facebook   { background-color: #3b5998; }
.share-btn.whatsapp   { background-color: #25d366; }
.share-btn.twitter    { background-color: #1da1f2; }
.share-btn.linkedin   { background-color: #0077b5; }
.share-btn.email      { background-color: #555; }

.share-btn:hover {
  opacity: 0.85;
}




/* mobile extra */
@media (max-width: 400px) {
  /* === SLIDER CANDIDATO === */


.slider-candidato-conteudo {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 95%;
  padding: 1rem;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}


.visao-conteudo {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-right: 0.3rem; /* ou 3rem, 5%, etc. */
}

.visao-pagina p {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: white;
  text-align: justify;
  margin-bottom: 1rem;
}


#pilares {
  padding: 4rem 2rem 1rem 2rem; /* top: 4rem, lados: 2rem, bottom: 1rem */
  min-height: 100vh;
}


#eventos {
  position: relative;
  background-color: #A0001C;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  padding: 2rem;
  box-sizing: border-box;
}

.eventos-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.eventos-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eventos-conteudo {
  position: relative;
  z-index: 1;
  margin-top: 3rem; /* novo */
}

.titulo-eventos {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1rem;
}

.eventos-slider {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 2rem;
}

.card-evento {
  flex: 0 0 90%;
  scroll-snap-align: center;
  background-color: #f51d41;
  background-image: url('../img/fundocard.fw.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 2rem;
  min-height: 420px;
  color: white;
  border-radius: 30px;
  text-align: center;
}

.evento-localidade {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 500;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.evento-local {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 1rem;
  
}

.evento-dia {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 4.5rem;
  margin-bottom: 0.5rem;
}

.evento-data-hora {
  display: flex;
  flex-direction: column;  /* novo */
  align-items: center;     /* centraliza verticalmente */
  gap: 0.2rem;             /* espaço reduzido */
  margin-bottom: 4rem;        /* opcional para afastar do texto */
}

.evento-data-hora span {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 24px;
}

/* Indicadores */
.eventos-indicadores {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.eventos-indicadores .dot {
  position: relative;
  width: 16px;
  height: 16px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.eventos-indicadores .dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}


}



@media (max-width: 430px) and (min-height: 800px) {
  /* Estilos específicos para iPhones XR, 11, etc. */
  
.slider-candidato-conteudo {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 95%;
  padding: 1rem;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.slider-candidato-pagina p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  text-align: left;
  font-family: 'OwnersXWide', sans-serif;
}


.visao-conteudo {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-right: 0.5rem; /* ou 3rem, 5%, etc. */
}


.visao-pagina p {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: white;
  text-align: justify;
  margin-bottom: 1rem;
}


#pilares {
  position: relative;
  background-color: #DB0327;
  padding: 5rem 2rem;
  overflow: hidden;
  z-index: 1;
  min-height: 100vh; /* força a altura mínima */
}










.pilar-descricao {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: white;
}






#eventos {
  position: relative;
  background-color: #A0001C;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  padding: 2rem;
  box-sizing: border-box;

  /* NOVO: centra conteúdo */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}





.eventos-conteudo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px; /* ajusta conforme necessário */
  margin-top: 0; /* ← remove o offset que estraga o alinhamento */
}


.icon-rs {
  height: 58px;
  width: auto;
  transition: transform 0.2s ease;
}





}



@media (max-width: 540px) and (min-height: 720px) {
  /* Estilos específicos para iPhones XR, 11, etc. */
  
.slider-candidato-conteudo {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 95%;
  padding: 1rem;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.slider-candidato-pagina p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  text-align: left;
  font-family: 'OwnersXWide', sans-serif;
}

.slider-candidato-imagem {
  max-width: 45vh;
  
}
}



.visao-conteudo {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-right: 0.5rem; /* ou 3rem, 5%, etc. */
}


.visao-pagina p {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 12px;
  line-height: 1.4;
  color: white;
  text-align: justify;
  margin-bottom: 1rem;
}


#pilares {
  position: relative;
  background-color: #DB0327;
  padding: 5rem 2rem;
  overflow: hidden;
  z-index: 1;
  min-height: 100vh; /* força a altura mínima */
}


.pilar-descricao {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: white;
}






#eventos {
  position: relative;
  background-color: #A0001C;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  padding: 2rem;
  box-sizing: border-box;

  /* NOVO: centra conteúdo */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-evento {
  flex: 0 0 60%;
  scroll-snap-align: center;
  background-color: #f51d41;
  background-image: url('../img/fundocard.fw.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 2rem;
  min-height: 220px;
  color: white;
  border-radius: 30px;
  text-align: center;
}






.eventos-conteudo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px; /* ajusta conforme necessário */
  margin-top: 0; /* ← remove o offset que estraga o alinhamento */
}


.icon-rs {
  height: 58px;
  width: auto;
  transition: transform 0.2s ease;
}









@media (max-width: 390px) and (min-height: 844px) {


  .slider-candidato-conteudo {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 95%;
  padding: 1rem;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
}

.slider-candidato-pagina p {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 1.6rem;
  text-align: left;
  font-family: 'OwnersXWide', sans-serif;
}


.visao-conteudo {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-right: 1rem; /* ou 3rem, 5%, etc. */
}


.visao-conteudo {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-right: 0.5rem; /* ou 3rem, 5%, etc. */
}


.visao-pagina p {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 12px;
  line-height: 1.4;
  color: white;
  text-align: justify;
  margin-bottom: 1rem;
}


#pilares {
  padding: 4rem 2rem 1rem 2rem; /* top: 4rem, lados: 2rem, bottom: 1rem */
  min-height: 100vh;
}


}



@media (max-width: 430px) and (min-height: 932px) {


  .slider-candidato-conteudo {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%; /* Usa 100% para facilitar o controlo do espaçamento */
  padding-inline: 1rem; /* mesma margem à esquerda e à direita */
  padding-top: 1rem;
  padding-bottom: 1rem;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.slider-candidato-pagina p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 1.4rem;
  text-align: left;
  font-family: 'OwnersXWide', sans-serif;
}


.visao-conteudo {
  position: relative;
  z-index: 1;
  height: 90vh;
  display: flex;
  flex-direction: column;
  padding-right: 1rem; /* ou 3rem, 5%, etc. */
}

.visao-pagina p {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: white;
  text-align: justify;
  margin-bottom: 1rem;
}


#pilares {
  padding: 4rem 2rem 1rem 2rem; /* top: 4rem, lados: 2rem, bottom: 1rem */
  min-height: 100vh;
}


}



@media (max-width: 412px) and (min-height: 915px) {


  .slider-candidato-conteudo {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%; /* Usa 100% para facilitar o controlo do espaçamento */
  padding-inline: 1rem; /* mesma margem à esquerda e à direita */
  padding-top: 1rem;
  padding-bottom: 1rem;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.slider-candidato-pagina p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 1.4rem;
  text-align: left;
  font-family: 'OwnersXWide', sans-serif;
}


.visao-conteudo {
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
  box-sizing: border-box;
}

.visao-texto {
  
  margin-bottom: auto;
}

.visao-radios {
  text-align: center;
  margin-bottom: 2.5rem;
}



#pilares {
  padding: 4rem 2rem 1rem 2rem; /* top: 4rem, lados: 2rem, bottom: 1rem */
  min-height: 100vh;
}


}



@media (max-width: 360px) and (min-height: 740px) {


  .slider-candidato-conteudo {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%; /* Usa 100% para facilitar o controlo do espaçamento */
  padding-inline: 1rem; /* mesma margem à esquerda e à direita */
  padding-top: 1rem;
  padding-bottom: 1rem;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.slider-candidato-pagina p {
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 1.4rem;
  text-align: left;
  font-family: 'OwnersXWide', sans-serif;
}

.slider-candidato-imagem-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48%;
  overflow: hidden;
  pointer-events: none;
}

/* Imagem deslocada para cima (mostra tronco e cabeça, esconde pernas) */
.slider-candidato-imagem {
  position: absolute;
  top: 12vh; /* ajusta este valor para mostrar mais ou menos imagem */
  bottom: 0;
  left: 0;
  height: 80%;
  width: 80%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  pointer-events: none;
}


.visao-conteudo {
  position: relative;
  z-index: 1;
  height: 90vh;
  display: flex;
  flex-direction: column;
  padding-right: 1rem; /* ou 3rem, 5%, etc. */
}

.visao-pagina p {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: white;
  text-align: justify;
  margin-bottom: 1rem;
}



#pilares {
  padding: 4rem 2rem 1rem 2rem; /* top: 4rem, lados: 2rem, bottom: 1rem */
  min-height: 100vh;
}


}




@media (min-width: 768px) and (max-width: 1439px) {
  .hero-logo {
    max-width: 600px;
  }

  #candidato-desktop{
    display: block !important;
  }

  #candidato-desktop {
  display: block;
  background-color: #DB0327;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

#candidato-desktop .subtitulo {
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

#candidato-desktop .nome {
  font-size: 36px;
  line-height: 1.3;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

#candidato-desktop .descricao {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1rem;
}

.btn.btn-outline-light.mt-3 {
    float: right;
}

#candidato-desktop .slide-desktop {
  display: none !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#candidato-desktop .slide-desktop.active {
  display: flex !important;
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.slide-desktop {
  height: 100vh;
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'OwnersXWide', sans-serif;
  padding-left: 4rem;
  padding-right: 6rem; /* menos espaço à esquerda */
  gap: 3rem;
}

.slide-desktop .imagem {
  flex: 0 0 50%;
  z-index: 1;
  position: relative;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0;
  padding-left: 2rem; /* ajustável */
  align-items: flex-end;
  padding-bottom: 0; /* importante */
  padding-top: 0; /* zera para não empurrar para cima */
  padding-left: 4rem;
}

.slide-desktop .imagem img {
  max-width: 60vh;
  height: 100%;
  width: auto;
  object-fit: contain;
  margin-bottom: 0px;
  margin-top: auto;
  margin-left: -14rem;
  transform: translateY(230px);
}

.slide-desktop .texto {
  bottom: 12%;
  flex: 0 0 50%;
  z-index: 2;
  margin-left: -10rem; /* ← faz o bloco invadir à esquerda */
  background: transparent; /* ou rgba para melhorar legibilidade */
  position: relative;
}

.slide-desktop .subtitulo {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #840615;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.slide-desktop .nome {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: white;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 4px;
}

.slide-desktop .descricao {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 12px;
  color: white;
  margin-bottom: 1.1rem;
  line-height: 1;
  font-weight: 100;
}

.indicadores-desktop {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.dot-desktop {
  width: 26px;
  height: 26px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot-desktop.active {
  background-color: white;
}


  #slider-candidato-slide-1{
    display: none;
  }

  #slider-candidato-slide-2{
    display: none;
  }

  #slider-candidato-slide-3{
    display: none;
  }


  .formulario-desktop {
    flex-direction: column;
    gap: 2rem;
  }

  #discurso-desktop .coluna-discurso p {
    font-size: 22px;
  }

  .eventos-slider .card-evento {
    flex: 0 0 70%;
    font-size: 16px;
  }


  #visao {
  position: relative;
  background-color: #000;
  height: 100vh;
  padding: 3rem;
  box-sizing: border-box;
  overflow: hidden;
}

.visao-background {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.visao-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visao-conteudo {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.visao-titulo {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: left;
}

.visao-texto {
  flex: 1;
  overflow: hidden;
  position: relative;
  
}

.visao-pagina {
  display: none;
}
.visao-pagina.active {
  display: block;
}
.visao-pagina p {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 22px;
  line-height: 1.7;
  color: white;
  text-align: justify;
  margin-bottom: 0.2rem;
}

.visao-radios {
  text-align: center;
  margin-top: 0.8rem;
}

.visao-radio-btn {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0 6px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  box-sizing: border-box;
}

.visao-radio-btn.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.foto-dot {
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.foto-dot.foto-active {
  background-color: white;
  opacity: 1;
}



#pilares {
  height: 100vh;
  display: block;
  position: relative;
  background-color: #DB0327;
  padding: 6rem 4rem 2rem 4rem;
  overflow: hidden;
  height: auto;
}

#pilares .pilares-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110vh;
  pointer-events: none;
  z-index: 0;
}

#pilares .pilares-background img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

#pilares .pilares-conteudo {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto;
}

#pilares .pilares-titulo {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 8px;
  margin-bottom: 1rem;
  text-align: center;
}

#pilares .pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 4rem;
  width: 100%;
  box-sizing: border-box;
}

#pilares .pilar-slide {
  color: white;
}

#pilares .pilar-nome {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 1.5rem;
}

#pilares .pilar-descricao {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 20px;
  line-height: 1.8;
}

/* Indicadores */
.pilares-indicadores {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.pilares-indicadores .dot {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.pilares-indicadores .dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}


#eventos {
  position: relative;
  background-color: #A0001C;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  padding: 2rem;
  box-sizing: border-box;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.eventos-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.eventos-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eventos-conteudo {
  position: relative;
  z-index: 1;
  margin-top: 33rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* ← garante que o título aparece no topo */
  min-height: 100vh; /* ← garante espaço suficiente */
  box-sizing: border-box;
}

.titulo-eventos {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 6rem;
}

.eventos-slider {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 2rem;
}

.card-evento {
  flex: 0 0 auto; /* ← impede expansão */
  width: 69px; /* ← força largura */
  max-width: 90%;
  scroll-snap-align: center;
  background-color: #f51d41;
  background-image: url('../img/fundocard.fw.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 2rem;
  min-height: 220px;
  color: white;
  border-radius: 30px;
  text-align: center;
  box-sizing: border-box;
}

.evento-localidade {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 500;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.evento-local {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 1rem;
  
}

.evento-dia {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 4.5rem;
  margin-bottom: 0.5rem;
}

.evento-data-hora {
  display: flex;
  flex-direction: column;  /* novo */
  align-items: center;     /* centraliza verticalmente */
  gap: 0.2rem;             /* espaço reduzido */
  margin-bottom: 4rem;        /* opcional para afastar do texto */
}

.evento-data-hora span {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 24px;
}

/* Indicadores */
.eventos-indicadores {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.eventos-indicadores .dot {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.eventos-indicadores .dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

#rodape {
  background-color: #DB0327;
  padding: 3rem 1rem;
  text-align: center;
}

.logo-footer {
  max-height: 140px;
  margin-bottom: 2rem;
}

.segue-nos {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 200;
  font-size: 14pt;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-align: left;
}

.icon-rs {
  height: 68px;
  width: auto;
  transition: transform 0.2s ease;
}

.icon-rs:hover {
  transform: scale(1.1);
}

}



@media (min-width: 820px) and (max-width: 1180px) {
  .hero-logo {
    max-width: 600px;
  }

  #candidato-desktop{
    display: block;
  }

  

#candidato-desktop .subtitulo {
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}



#candidato-desktop .descricao {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1rem;
}

.slide-desktop .imagem img {
  max-width: 50vh;
  height: 100%;
  width: auto;
  object-fit: contain;
  margin-bottom: 0px;
  margin-top: auto;
  margin-left: -14rem;
  transform: translateY(320px);
}






  #visao {
  position: relative;
  background-color: #000;
  height: 100vh;
  padding: 3rem;
  box-sizing: border-box;
  overflow: hidden;
}

.visao-background {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.visao-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.visao-pagina {
  display: none;
}
.visao-pagina.active {
  display: block;
}
.visao-pagina p {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 24px;
  line-height: 1.8;
  color: white;
  text-align: justify;
  margin-bottom: 0.2rem;
}



#pilares {
  height: 100vh;
  display: block;
  position: relative;
  background-color: #DB0327;
  padding: 6rem 4rem 2rem 4rem;
  overflow: hidden;
  height: auto;
}

#pilares .pilares-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110vh;
  pointer-events: none;
  z-index: 0;
}

#pilares .pilares-background img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

#pilares .pilares-conteudo {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto;
}

#pilares .pilares-titulo {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 8px;
  margin-bottom: 1rem;
  text-align: center;
}

#pilares .pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 4rem;
  width: 100%;
  box-sizing: border-box;
}

#pilares .pilar-slide {
  color: white;
}

#pilares .pilar-nome {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 1.5rem;
}

#pilares .pilar-descricao {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 20px;
  line-height: 1.8;
}

/* Indicadores */
.pilares-indicadores {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.pilares-indicadores .dot {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.pilares-indicadores .dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}


#eventos {
  position: relative;
  background-color: #A0001C;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  padding: 2rem;
  box-sizing: border-box;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.eventos-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.eventos-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eventos-conteudo {
  position: relative;
  z-index: 1;
  margin-top: 33rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* ← garante que o título aparece no topo */
  min-height: 100vh; /* ← garante espaço suficiente */
  box-sizing: border-box;
}

.titulo-eventos {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 6rem;
}

.eventos-slider {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 2rem;
}

.card-evento {
  flex: 0 0 auto; /* ← impede expansão */
  width: 69px; /* ← força largura */
  max-width: 90%;
  scroll-snap-align: center;
  background-color: #f51d41;
  background-image: url('../img/fundocard.fw.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 2rem;
  min-height: 220px;
  color: white;
  border-radius: 30px;
  text-align: center;
  box-sizing: border-box;
}

.evento-localidade {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 500;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.evento-local {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 1rem;
  
}

.evento-dia {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 4.5rem;
  margin-bottom: 0.5rem;
}

.evento-data-hora {
  display: flex;
  flex-direction: column;  /* novo */
  align-items: center;     /* centraliza verticalmente */
  gap: 0.2rem;             /* espaço reduzido */
  margin-bottom: 4rem;        /* opcional para afastar do texto */
}

.evento-data-hora span {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 24px;
}

/* Indicadores */
.eventos-indicadores {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.eventos-indicadores .dot {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.eventos-indicadores .dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

#rodape {
  background-color: #DB0327;
  padding: 3rem 1rem;
  text-align: center;
}

.logo-footer {
  max-height: 140px;
  margin-bottom: 2rem;
}

.segue-nos {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 200;
  font-size: 14pt;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-align: left;
}

.icon-rs {
  height: 68px;
  width: auto;
  transition: transform 0.2s ease;
}

.icon-rs:hover {
  transform: scale(1.1);
}

}


@media (min-width: 1024px) and (max-width: 1366px) {
  .hero-logo {
    max-width: 600px;
  }

  #candidato-desktop{
    display: block;
  }

  

#candidato-desktop .subtitulo {
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}



#candidato-desktop .descricao {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 300;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.slide-desktop .imagem img {
  max-width: 45vh;
  height: 100%;
  width: auto;
  object-fit: contain;
  margin-bottom: 0px;
  margin-top: auto;
  margin-left: -14rem;
  transform: translateY(390px);
}






  #visao {
  position: relative;
  background-color: #000;
  height: 100vh;
  padding: 3rem;
  box-sizing: border-box;
  overflow: hidden;
}

.visao-background {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.visao-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.visao-pagina {
  display: none;
}
.visao-pagina.active {
  display: block;
}
.visao-pagina p {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 28px;
  line-height: 1.9;
  color: white;
  text-align: justify;
  margin-bottom: 0.2rem;
}



#pilares {
  height: 100vh;
  display: block;
  position: relative;
  background-color: #DB0327;
  padding: 1rem 4rem 2rem 4rem;
  overflow: hidden;
  height: auto;
}

#pilares .pilares-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110vh;
  pointer-events: none;
  z-index: 0;
}

#pilares .pilares-background img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

#pilares .pilares-conteudo {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto;
}

#pilares .pilares-titulo {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 8px;
  margin-bottom: 1rem;
  text-align: center;
}

#pilares .pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 4rem;
  width: 100%;
  box-sizing: border-box;
}

#pilares .pilar-slide {
  color: white;
}

#pilares .pilar-nome {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 1.5rem;
}

#pilares .pilar-descricao {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 22px;
  line-height: 1.8;
}

/* Indicadores */
.pilares-indicadores {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.pilares-indicadores .dot {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.pilares-indicadores .dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}


#eventos {
  position: relative;
  background-color: #A0001C;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  padding: 2rem;
  box-sizing: border-box;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.eventos-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.eventos-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eventos-conteudo {
  position: relative;
  z-index: 1;
  margin-top: 33rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* ← garante que o título aparece no topo */
  min-height: 100vh; /* ← garante espaço suficiente */
  box-sizing: border-box;
}

.titulo-eventos {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 6rem;
}

.eventos-slider {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 2rem;
}

.card-evento {
  flex: 0 0 auto; /* ← impede expansão */
  width: 69px; /* ← força largura */
  max-width: 90%;
  scroll-snap-align: center;
  background-color: #f51d41;
  background-image: url('../img/fundocard.fw.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 2rem;
  min-height: 220px;
  color: white;
  border-radius: 30px;
  text-align: center;
  box-sizing: border-box;
}

.evento-localidade {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 500;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.evento-local {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 1rem;
  
}

.evento-dia {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 4.5rem;
  margin-bottom: 0.5rem;
}

.evento-data-hora {
  display: flex;
  flex-direction: column;  /* novo */
  align-items: center;     /* centraliza verticalmente */
  gap: 0.2rem;             /* espaço reduzido */
  margin-bottom: 4rem;        /* opcional para afastar do texto */
}

.evento-data-hora span {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 24px;
}

/* Indicadores */
.eventos-indicadores {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.eventos-indicadores .dot {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.eventos-indicadores .dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

#rodape {
  background-color: #DB0327;
  padding: 3rem 1rem;
  text-align: center;
}

.logo-footer {
  max-height: 180px;
  margin-bottom: 2rem;
}

.segue-nos {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 200;
  font-size: 14pt;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-align: left;
}

.icon-rs {
  height: 88px;
  width: auto;
  transition: transform 0.2s ease;
}

.icon-rs:hover {
  transform: scale(1.1);
}

}



@media (min-width: 912px) and (max-width: 1368px) {
  .hero-logo {
    max-width: 600px;
  }

  #candidato-desktop{
    display: block;
  }

  

#candidato-desktop .subtitulo {
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}



#candidato-desktop .descricao {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 300;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.slide-desktop .imagem img {
  max-width: 75vh;
  height: 100%;
  width: auto;
  object-fit: contain;
  margin-bottom: 0px;
  margin-top: auto;
  margin-left: -10rem;
  transform: translateY(120px);
}






  #visao {
  position: relative;
  background-color: #000;
  height: 100vh;
  padding: 3rem;
  box-sizing: border-box;
  overflow: hidden;
}

.visao-background {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.visao-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.visao-pagina {
  display: none;
}
.visao-pagina.active {
  display: block;
}
.visao-pagina p {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 18px;
  line-height: 1.9;
  color: white;
  text-align: justify;
  margin-bottom: 0.2rem;
}



#pilares {
  height: 100vh;
  display: block;
  position: relative;
  background-color: #DB0327;
  padding: 1rem 4rem 2rem 4rem;
  overflow: hidden;
  height: auto;
}

#pilares .pilares-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110vh;
  pointer-events: none;
  z-index: 0;
}

#pilares .pilares-background img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

#pilares .pilares-conteudo {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto;
}

#pilares .pilares-titulo {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 8px;
  margin-bottom: 1rem;
  text-align: center;
}

#pilares .pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 4rem;
  width: 100%;
  box-sizing: border-box;
}

#pilares .pilar-slide {
  color: white;
}

#pilares .pilar-nome {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 1.5rem;
}

#pilares .pilar-descricao {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 22px;
  line-height: 1.8;
}

/* Indicadores */
.pilares-indicadores {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.pilares-indicadores .dot {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.pilares-indicadores .dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}


#eventos {
  position: relative;
  background-color: #A0001C;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  padding: 2rem;
  box-sizing: border-box;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.eventos-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.eventos-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eventos-conteudo {
  position: relative;
  z-index: 1;
  margin-top: 12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* ← garante que o título aparece no topo */
  min-height: 100vh; /* ← garante espaço suficiente */
  box-sizing: border-box;
}

.titulo-eventos {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 6rem;
}

.eventos-slider {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 2rem;
}

.card-evento {
  flex: 0 0 auto; /* ← impede expansão */
  width: 69px; /* ← força largura */
  max-width: 90%;
  scroll-snap-align: center;
  background-color: #f51d41;
  background-image: url('../img/fundocard.fw.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 2rem;
  min-height: 220px;
  color: white;
  border-radius: 30px;
  text-align: center;
  box-sizing: border-box;
}

.evento-localidade {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 500;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.evento-local {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 1rem;
  
}

.evento-dia {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 4.5rem;
  margin-bottom: 0.5rem;
}

.evento-data-hora {
  display: flex;
  flex-direction: column;  /* novo */
  align-items: center;     /* centraliza verticalmente */
  gap: 0.2rem;             /* espaço reduzido */
  margin-bottom: 4rem;        /* opcional para afastar do texto */
}

.evento-data-hora span {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 24px;
}

/* Indicadores */
.eventos-indicadores {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.eventos-indicadores .dot {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.eventos-indicadores .dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

#rodape {
  background-color: #DB0327;
  padding: 3rem 1rem;
  text-align: center;
}

.logo-footer {
  max-height: 180px;
  margin-bottom: 2rem;
}

.segue-nos {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 200;
  font-size: 14pt;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-align: left;
}

.icon-rs {
  height: 88px;
  width: auto;
  transition: transform 0.2s ease;
}

.icon-rs:hover {
  transform: scale(1.1);
}

}

@media (min-width: 375px) and (max-width: 667px) {
  .hero-logo {
    max-width: 600px;
  }

  #candidato-desktop{
    display: none;
  }

  

#candidato-desktop .subtitulo {
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}



#candidato-desktop .descricao {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 300;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.slide-desktop .imagem img {
  max-width: 45vh;
  height: 100%;
  width: auto;
  object-fit: contain;
  margin-bottom: 0px;
  margin-top: auto;
  margin-left: -14rem;
  transform: translateY(390px);
}






  #visao {
  position: relative;
  background-color: #000;
  height: 100vh;
  padding: 3rem;
  box-sizing: border-box;
  overflow: hidden;
}

.visao-background {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.visao-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.visao-pagina {
  display: none;
}
.visao-pagina.active {
  display: block;
}
.visao-pagina p {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 12px;
  line-height: 1.3;
  color: white;
  text-align: justify;
  margin-bottom: 0.2rem;
}



#pilares {
  height: 100vh;
  display: block;
  position: relative;
  background-color: #DB0327;
  padding: 2rem 0 2rem 0;
  overflow: hidden;
  height: auto;
}

#pilares .pilares-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

#pilares .pilares-background img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

#pilares .pilares-conteudo {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

#pilares .pilares-titulo {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 8px;
  margin-bottom: 2rem;
  text-align: center;
}

#pilares .pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 4rem;
  width: 100%;
  box-sizing: border-box;
}

#pilares .pilar-slide {
  color: white;
}

#pilares .pilar-nome {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 1.5rem;
}

#pilares .pilar-descricao {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 14px;
  line-height: 1.3;
}

/* Indicadores */
.pilares-indicadores {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.pilares-indicadores .dot {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.pilares-indicadores .dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}


#eventos {
  position: relative;
  background-color: #A0001C;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  padding: 2rem;
  box-sizing: border-box;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.eventos-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.eventos-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eventos-conteudo {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  width: 100%;
}

.titulo-eventos {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 2rem;
  text-align: center;
}

.eventos-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding-bottom: 2rem;
  width: 100%;
}

.card-evento {
  flex: 0 0 100%;
  max-width: 100%;
  scroll-snap-align: center;
  background-color: #f51d41;
  background-image: url('../img/fundocard.fw.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 2rem;
  min-height: 420px;
  color: white;
  border-radius: 30px;
  text-align: center;
  box-sizing: border-box;
}

.evento-localidade {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 500;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.evento-local {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 1rem;
}

.evento-dia {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 4.5rem;
  margin-bottom: 0.5rem;
}

.evento-data-hora {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 2rem;
}

.evento-data-hora span {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 24px;
}

/* Indicadores (dots) */
.eventos-indicadores {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.eventos-indicadores .dot {
  position: relative;
  width: 16px;
  height: 16px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.eventos-indicadores .dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

#rodape {
  background-color: #DB0327;
  padding: 3rem 1rem;
  text-align: center;
}

.logo-footer {
  max-height: 110px;
  margin-bottom: 2rem;
}

.segue-nos {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 200;
  font-size: 14pt;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-align: left;
}

.icon-rs {
  height: 58px;
  width: auto;
  transition: transform 0.2s ease;
}

.icon-rs:hover {
  transform: scale(1.1);
}

}


@media (min-width: 414px) and (max-width: 896px) {
  .hero-logo {
    max-width: 600px;
  }

  #candidato-desktop{
    display: none;
  }

  

#candidato-desktop .subtitulo {
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}



#candidato-desktop .descricao {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 300;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.slide-desktop .imagem img {
  max-width: 45vh;
  height: 100%;
  width: auto;
  object-fit: contain;
  margin-bottom: 0px;
  margin-top: auto;
  margin-left: -14rem;
  transform: translateY(390px);
}






  #visao {
  position: relative;
  background-color: #000;
  height: 100vh;
  padding: 3rem;
  box-sizing: border-box;
  overflow: hidden;
}

.visao-background {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.visao-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.visao-pagina {
  display: none;
}
.visao-pagina.active {
  display: block;
}
.visao-pagina p {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: white;
  text-align: justify;
  margin-bottom: 0.2rem;
}



#pilares {
  height: 100vh;
  display: block;
  position: relative;
  background-color: #DB0327;
  padding: 2rem 0 2rem 0;
  overflow: hidden;
  height: auto;
}

#pilares .pilares-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

#pilares .pilares-background img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

#pilares .pilares-conteudo {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

#pilares .pilares-titulo {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 8px;
  margin-bottom: 2rem;
  text-align: center;
}

#pilares .pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 4rem;
  width: 100%;
  box-sizing: border-box;
}

#pilares .pilar-slide {
  color: white;
}

#pilares .pilar-nome {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 1.5rem;
}

#pilares .pilar-descricao {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

/* Indicadores */
.pilares-indicadores {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.pilares-indicadores .dot {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.pilares-indicadores .dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}


#eventos {
  position: relative;
  background-color: #A0001C;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  padding: 2rem;
  box-sizing: border-box;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.eventos-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.eventos-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eventos-conteudo {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  width: 100%;
}

.titulo-eventos {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 2rem;
  text-align: center;
}

.eventos-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding-bottom: 2rem;
  width: 100%;
}

.card-evento {
  flex: 0 0 100%;
  max-width: 100%;
  scroll-snap-align: center;
  background-color: #f51d41;
  background-image: url('../img/fundocard.fw.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 2rem;
  min-height: 420px;
  color: white;
  border-radius: 30px;
  text-align: center;
  box-sizing: border-box;
}

.evento-localidade {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 500;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.evento-local {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 1rem;
}

.evento-dia {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 4.5rem;
  margin-bottom: 0.5rem;
}

.evento-data-hora {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 2rem;
}

.evento-data-hora span {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 24px;
}

/* Indicadores (dots) */
.eventos-indicadores {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.eventos-indicadores .dot {
  position: relative;
  width: 16px;
  height: 16px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.eventos-indicadores .dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

#rodape {
  background-color: #DB0327;
  padding: 3rem 1rem;
  text-align: center;
}

.logo-footer {
  max-height: 110px;
  margin-bottom: 2rem;
}

.segue-nos {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 200;
  font-size: 14pt;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-align: left;
}

.icon-rs {
  height: 58px;
  width: auto;
  transition: transform 0.2s ease;
}

.icon-rs:hover {
  transform: scale(1.1);
}

}




@media (min-width: 390px) and (max-width: 844px) {
  .hero-logo {
    max-width: 600px;
  }

  #candidato-desktop{
    display: none;
  }

  

#candidato-desktop .subtitulo {
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}



#candidato-desktop .descricao {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 300;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.slide-desktop .imagem img {
  max-width: 45vh;
  height: 100%;
  width: auto;
  object-fit: contain;
  margin-bottom: 0px;
  margin-top: auto;
  margin-left: -14rem;
  transform: translateY(390px);
}






  #visao {
  position: relative;
  background-color: #000;
  height: 100vh;
  padding: 3rem;
  box-sizing: border-box;
  overflow: hidden;
}

.visao-background {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.visao-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.visao-pagina {
  display: none;
}
.visao-pagina.active {
  display: block;
}
.visao-pagina p {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: white;
  text-align: justify;
  margin-bottom: 0.2rem;
}



#pilares {
  height: 100vh;
  display: block;
  position: relative;
  background-color: #DB0327;
  padding: 2rem 0 2rem 0;
  overflow: hidden;
  height: auto;
}

#pilares .pilares-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

#pilares .pilares-background img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

#pilares .pilares-conteudo {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

#pilares .pilares-titulo {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 8px;
  margin-bottom: 2rem;
  text-align: center;
}

#pilares .pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 4rem;
  width: 100%;
  box-sizing: border-box;
}

#pilares .pilar-slide {
  color: white;
}

#pilares .pilar-nome {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 1.5rem;
}

#pilares .pilar-descricao {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

/* Indicadores */
.pilares-indicadores {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.pilares-indicadores .dot {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.pilares-indicadores .dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}


#eventos {
  position: relative;
  background-color: #A0001C;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  padding: 2rem;
  box-sizing: border-box;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.eventos-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.eventos-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eventos-conteudo {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  width: 100%;
}

.titulo-eventos {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 2rem;
  text-align: center;
}

.eventos-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding-bottom: 2rem;
  width: 100%;
}

.card-evento {
  flex: 0 0 100%;
  max-width: 100%;
  scroll-snap-align: center;
  background-color: #f51d41;
  background-image: url('../img/fundocard.fw.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 2rem;
  min-height: 420px;
  color: white;
  border-radius: 30px;
  text-align: center;
  box-sizing: border-box;
}

.evento-localidade {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 500;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.evento-local {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 1rem;
}

.evento-dia {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 4.5rem;
  margin-bottom: 0.5rem;
}

.evento-data-hora {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 2rem;
}

.evento-data-hora span {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 24px;
}

/* Indicadores (dots) */
.eventos-indicadores {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.eventos-indicadores .dot {
  position: relative;
  width: 16px;
  height: 16px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.eventos-indicadores .dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

#rodape {
  background-color: #DB0327;
  padding: 3rem 1rem;
  text-align: center;
}

.logo-footer {
  max-height: 110px;
  margin-bottom: 2rem;
}

.segue-nos {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 200;
  font-size: 14pt;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-align: left;
}

.icon-rs {
  height: 58px;
  width: auto;
  transition: transform 0.2s ease;
}

.icon-rs:hover {
  transform: scale(1.1);
}

}



@media (min-width: 360px) and (max-width: 740px) {
  .hero-logo {
    max-width: 600px;
  }

  #candidato-desktop{
    display: none;
  }


#eventos {
  position: relative;
  background-color: #A0001C;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  padding: 2rem;
  box-sizing: border-box;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.eventos-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.eventos-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eventos-conteudo {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  width: 100%;
}

.titulo-eventos {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 2rem;
  text-align: center;
}

.eventos-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding-bottom: 2rem;
  width: 100%;
}

.card-evento {
  flex: 0 0 100%;
  max-width: 100%;
  scroll-snap-align: center;
  background-color: #f51d41;
  background-image: url('../img/fundocard.fw.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 2rem;
  min-height: 420px;
  color: white;
  border-radius: 30px;
  text-align: center;
  box-sizing: border-box;
}

.evento-localidade {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 500;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.evento-local {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 1rem;
}

.evento-link a {
    font-size: 22px;
    font-weight: 500;
    color: #ffd700;
    text-decoration: underline;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
  }

  .evento-link a:hover {
    color: #ffffff;
    text-decoration: none;
  }

.evento-dia {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 4.5rem;
  margin-bottom: 0.5rem;
}

.evento-data-hora {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 2rem;
}

.evento-data-hora span {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 24px;
}

/* Indicadores (dots) */
.eventos-indicadores {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.eventos-indicadores .dot {
  position: relative;
  width: 16px;
  height: 16px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.eventos-indicadores .dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

#rodape {
  background-color: #DB0327;
  padding: 3rem 1rem;
  text-align: center;
}

.logo-footer {
  max-height: 110px;
  margin-bottom: 2rem;
}

.segue-nos {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 200;
  font-size: 14pt;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-align: left;
}

.icon-rs {
  height: 50px;
  width: auto;
  transition: transform 0.2s ease;
}

.icon-rs:hover {
  transform: scale(1.1);
}

}




@media (min-width: 412px) and (max-width: 915px) {
  .hero-logo {
    max-width: 600px;
  }

  #candidato-desktop{
    display: none;
  }

  

#candidato-desktop .subtitulo {
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}



#candidato-desktop .descricao {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 300;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.slide-desktop .imagem img {
  max-width: 45vh;
  height: 100%;
  width: auto;
  object-fit: contain;
  margin-bottom: 0px;
  margin-top: auto;
  margin-left: -14rem;
  transform: translateY(390px);
}






  #visao {
  position: relative;
  background-color: #000;
  height: 100vh;
  padding: 3rem 0;
  box-sizing: border-box;
  overflow: hidden;
}

.visao-background {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.visao-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.visao-pagina {
  display: none;
}
.visao-pagina.active {
  display: block;
}
.visao-pagina p {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: white;
  text-align: justify;
  margin-bottom: 0.1rem;
  margin: 0.5 0.5rem !important;
}



#pilares {
  height: 100vh;
  display: block;
  position: relative;
  background-color: #DB0327;
  padding: 2rem 0 2rem 0;
  overflow: hidden;
  height: auto;
}

#pilares .pilares-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

#pilares .pilares-background img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

#pilares .pilares-conteudo {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

#pilares .pilares-titulo {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 8px;
  margin-bottom: 2rem;
  text-align: center;
}

#pilares .pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 4rem;
  width: 100%;
  box-sizing: border-box;
}

#pilares .pilar-slide {
  color: white;
}

#pilares .pilar-nome {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 1.5rem;
}

#pilares .pilar-descricao {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

/* Indicadores */
.pilares-indicadores {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.pilares-indicadores .dot {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.pilares-indicadores .dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}


#eventos {
  position: relative;
  background-color: #A0001C;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  padding: 2rem;
  box-sizing: border-box;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.eventos-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.eventos-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eventos-conteudo {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  width: 100%;
}

.titulo-eventos {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 2rem;
  text-align: center;
}

.eventos-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding-bottom: 2rem;
  width: 100%;
}

.card-evento {
  flex: 0 0 100%;
  max-width: 100%;
  scroll-snap-align: center;
  background-color: #f51d41;
  background-image: url('../img/fundocard.fw.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 2rem;
  min-height: 420px;
  color: white;
  border-radius: 30px;
  text-align: center;
  box-sizing: border-box;
}

.evento-localidade {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 500;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.evento-local {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 1rem;
}

.evento-dia {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 4.5rem;
  margin-bottom: 0.5rem;
}

.evento-data-hora {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 2rem;
}

.evento-data-hora span {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 24px;
}

/* Indicadores (dots) */
.eventos-indicadores {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.eventos-indicadores .dot {
  position: relative;
  width: 16px;
  height: 16px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.eventos-indicadores .dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

#rodape {
  background-color: #DB0327;
  padding: 3rem 1rem;
  text-align: center;
}

.logo-footer {
  max-height: 110px;
  margin-bottom: 2rem;
}

.segue-nos {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 200;
  font-size: 14pt;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-align: left;
}

.icon-rs {
  height: 58px;
  width: auto;
  transition: transform 0.2s ease;
}

.icon-rs:hover {
  transform: scale(1.1);
}

}




@media (min-width: 1024px) and (max-width: 768px) {
  .hero-logo {
    max-width: 600px;
  }

  #candidato-desktop{
    display: block !important;
  }

  #candidato-desktop {
  display: block;
  background-color: #DB0327;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

#candidato-desktop .subtitulo {
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

#candidato-desktop .nome {
  font-size: 36px;
  line-height: 1.3;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

#candidato-desktop .descricao {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1rem;
}

.btn.btn-outline-light.mt-3 {
    float: right;
}

#candidato-desktop .slide-desktop {
  display: none !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#candidato-desktop .slide-desktop.active {
  display: flex !important;
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.slide-desktop {
  height: 100vh;
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'OwnersXWide', sans-serif;
  padding-left: 4rem;
  padding-right: 6rem; /* menos espaço à esquerda */
  gap: 3rem;
}

.slide-desktop .imagem {
  flex: 0 0 50%;
  z-index: 1;
  position: relative;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0;
  padding-left: 2rem; /* ajustável */
  align-items: flex-end;
  padding-bottom: 0; /* importante */
  padding-top: 0; /* zera para não empurrar para cima */
  padding-left: 4rem;
}

.slide-desktop .imagem img {
  max-width: 60vh;
  height: 100%;
  width: auto;
  object-fit: contain;
  margin-bottom: 0px;
  margin-top: auto;
  margin-left: -4rem;
  transform: translateY(130px);
}

.slide-desktop .texto {
  bottom: 12%;
  flex: 0 0 50%;
  z-index: 2;
  margin-left: -10rem; /* ← faz o bloco invadir à esquerda */
  background: transparent; /* ou rgba para melhorar legibilidade */
  position: relative;
}

.slide-desktop .subtitulo {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #840615;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.slide-desktop .nome {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: white;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 4px;
}

.slide-desktop .descricao {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 12px;
  color: white;
  margin-bottom: 1.1rem;
  line-height: 1;
  font-weight: 100;
}

.indicadores-desktop {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.dot-desktop {
  width: 26px;
  height: 26px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot-desktop.active {
  background-color: white;
}


  #slider-candidato-slide-1{
    display: none;
  }

  #slider-candidato-slide-2{
    display: none;
  }

  #slider-candidato-slide-3{
    display: none;
  }


  .formulario-desktop {
    flex-direction: column;
    gap: 2rem;
  }

  #discurso-desktop .coluna-discurso p {
    font-size: 22px;
  }

  .eventos-slider .card-evento {
    flex: 0 0 70%;
    font-size: 16px;
  }


  #visao {
  position: relative;
  background-color: #000;
  height: 100vh;
  padding: 3rem;
  box-sizing: border-box;
  overflow: hidden;
}

.visao-background {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.visao-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visao-conteudo {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.visao-titulo {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: left;
}

.visao-texto {
  flex: 1;
  overflow: hidden;
  position: relative;
  
}

.visao-pagina {
  display: none;
}
.visao-pagina.active {
  display: block;
}
.visao-pagina p {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 22px;
  line-height: 1.7;
  color: white;
  text-align: justify;
  margin-bottom: 0.2rem;
}

.visao-radios {
  text-align: center;
  margin-top: 0.8rem;
}

.visao-radio-btn {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0 6px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  box-sizing: border-box;
}

.visao-radio-btn.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.foto-dot {
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.foto-dot.foto-active {
  background-color: white;
  opacity: 1;
}



#pilares {
  height: 100vh;
  display: block;
  position: relative;
  background-color: #DB0327;
  padding: 6rem 4rem 2rem 4rem;
  overflow: hidden;
  height: auto;
}

#pilares .pilares-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110vh;
  pointer-events: none;
  z-index: 0;
}

#pilares .pilares-background img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

#pilares .pilares-conteudo {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto;
}

#pilares .pilares-titulo {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 8px;
  margin-bottom: 1rem;
  text-align: center;
}

#pilares .pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 4rem;
  width: 100%;
  box-sizing: border-box;
}

#pilares .pilar-slide {
  color: white;
}

#pilares .pilar-nome {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 1.5rem;
}

#pilares .pilar-descricao {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 20px;
  line-height: 1.8;
}

/* Indicadores */
.pilares-indicadores {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.pilares-indicadores .dot {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.pilares-indicadores .dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}


#eventos {
  position: relative;
  background-color: #A0001C;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  padding: 2rem;
  box-sizing: border-box;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.eventos-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.eventos-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eventos-conteudo {
  position: relative;
  z-index: 1;
  margin-top: 33rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* ← garante que o título aparece no topo */
  min-height: 100vh; /* ← garante espaço suficiente */
  box-sizing: border-box;
}

.titulo-eventos {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 6rem;
}

.eventos-slider {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 2rem;
}

.card-evento {
  flex: 0 0 auto; /* ← impede expansão */
  width: 69px; /* ← força largura */
  max-width: 90%;
  scroll-snap-align: center;
  background-color: #f51d41;
  background-image: url('../img/fundocard.fw.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 2rem;
  min-height: 220px;
  color: white;
  border-radius: 30px;
  text-align: center;
  box-sizing: border-box;
}

.evento-localidade {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 500;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.evento-local {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 1rem;
  
}

.evento-dia {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 4.5rem;
  margin-bottom: 0.5rem;
}

.evento-data-hora {
  display: flex;
  flex-direction: column;  /* novo */
  align-items: center;     /* centraliza verticalmente */
  gap: 0.2rem;             /* espaço reduzido */
  margin-bottom: 4rem;        /* opcional para afastar do texto */
}

.evento-data-hora span {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 24px;
}

/* Indicadores */
.eventos-indicadores {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.eventos-indicadores .dot {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.eventos-indicadores .dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

#rodape {
  background-color: #DB0327;
  padding: 3rem 1rem;
  text-align: center;
}

.logo-footer {
  max-height: 140px;
  margin-bottom: 2rem;
}

.segue-nos {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 200;
  font-size: 14pt;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-align: left;
}

.icon-rs {
  height: 68px;
  width: auto;
  transition: transform 0.2s ease;
}

.icon-rs:hover {
  transform: scale(1.1);
}

}






@media (min-width: 1024px) and (max-width: 1366px) {
  .hero-logo {
    max-width: 600px;
  }

  #candidato-desktop{
    display: block;
  }

  

#candidato-desktop .subtitulo {
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}



#candidato-desktop .descricao {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 300;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.slide-desktop .imagem img {
  max-width: 45vh;
  height: 100%;
  width: auto;
  object-fit: contain;
  margin-bottom: 0px;
  margin-top: auto;
  margin-left: -14rem;
  transform: translateY(390px);
}






  #visao {
  position: relative;
  background-color: #000;
  height: 100vh;
  padding: 3rem;
  box-sizing: border-box;
  overflow: hidden;
}

.visao-background {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.visao-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.visao-pagina {
  display: none;
}
.visao-pagina.active {
  display: block;
}
.visao-pagina p {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 28px;
  line-height: 1.9;
  color: white;
  text-align: justify;
  margin-bottom: 0.2rem;
}



#pilares {
  height: 100vh;
  display: block;
  position: relative;
  background-color: #DB0327;
  padding: 1rem 4rem 2rem 4rem;
  overflow: hidden;
  height: auto;
}

#pilares .pilares-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110vh;
  pointer-events: none;
  z-index: 0;
}

#pilares .pilares-background img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

#pilares .pilares-conteudo {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto;
}

#pilares .pilares-titulo {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 8px;
  margin-bottom: 1rem;
  text-align: center;
}

#pilares .pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 4rem;
  width: 100%;
  box-sizing: border-box;
}

#pilares .pilar-slide {
  color: white;
}

#pilares .pilar-nome {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 1.5rem;
}

#pilares .pilar-descricao {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 22px;
  line-height: 1.8;
}

/* Indicadores */
.pilares-indicadores {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.pilares-indicadores .dot {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.pilares-indicadores .dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}


#eventos {
  position: relative;
  background-color: #A0001C;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  padding: 2rem;
  box-sizing: border-box;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.eventos-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.eventos-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eventos-conteudo {
  position: relative;
  z-index: 1;
  margin-top: 33rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* ← garante que o título aparece no topo */
  min-height: 100vh; /* ← garante espaço suficiente */
  box-sizing: border-box;
}

.titulo-eventos {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 6rem;
}

.eventos-slider {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 2rem;
}

.card-evento {
  flex: 0 0 auto; /* ← impede expansão */
  width: 69px; /* ← força largura */
  max-width: 90%;
  scroll-snap-align: center;
  background-color: #f51d41;
  background-image: url('../img/fundocard.fw.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 2rem;
  min-height: 220px;
  color: white;
  border-radius: 30px;
  text-align: center;
  box-sizing: border-box;
}

.evento-localidade {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 500;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.evento-local {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 1rem;
  
}

.evento-dia {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 4.5rem;
  margin-bottom: 0.5rem;
}

.evento-data-hora {
  display: flex;
  flex-direction: column;  /* novo */
  align-items: center;     /* centraliza verticalmente */
  gap: 0.2rem;             /* espaço reduzido */
  margin-bottom: 4rem;        /* opcional para afastar do texto */
}

.evento-data-hora span {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 24px;
}

/* Indicadores */
.eventos-indicadores {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.eventos-indicadores .dot {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.eventos-indicadores .dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

#rodape {
  background-color: #DB0327;
  padding: 3rem 1rem;
  text-align: center;
}

.logo-footer {
  max-height: 180px;
  margin-bottom: 2rem;
}

.segue-nos {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 200;
  font-size: 14pt;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-align: left;
}

.icon-rs {
  height: 88px;
  width: auto;
  transition: transform 0.2s ease;
}

.icon-rs:hover {
  transform: scale(1.1);
}

}






@media (min-width: 384px) and (max-width: 723px) {
  .hero-logo {
    max-width: 600px;
  }

  #candidato-desktop {
    display: none;
  }

  .text-content {
    color: white;
    text-align: left;
  }

  .subtitulo {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #840615;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
  }

  .nome {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    color: white;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
  }

  .descricao {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.2;
    color: white;
    margin-bottom: 1.2rem;
  }

  .imagem-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-grow: 1;
  }

  .candidato-img {
    max-width: 100%;
    height: auto;
  }

  .slider-candidato-conteudo {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    padding-inline: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
  }

  .slider-candidato-pagina p {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 1.4rem;
    text-align: left;
    font-family: 'OwnersXWide', sans-serif;
  }

  .slider-candidato-imagem-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48%;
    overflow: hidden;
    pointer-events: none;
  }

  .slider-candidato-imagem {
    position: absolute;
    top: 12vh;
    bottom: 0;
    left: 0;
    height: 80%;
    width: 80%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    pointer-events: none;
  }

#visao {
  position: relative;
  background-color: #000;
  height: 100vh;
  padding: 1rem;
  box-sizing: border-box;
  overflow: hidden;
}

.visao-background {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.visao-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visao-conteudo {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}


.visao-titulo {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: left;
}

.visao-texto {
  flex: 1;
  overflow: hidden;
  position: relative;
  
}

.visao-pagina {
  display: none;
}
.visao-pagina.active {
  display: block;
}
.visao-pagina p {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: white;
  text-align: justify;
  margin-bottom: 0.2rem;
}

.visao-radios {
  text-align: center;
  margin-top: 0.8rem;
}

.visao-radio-btn {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0 6px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  box-sizing: border-box;
}

.visao-radio-btn.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
  

  #eventos {
    position: relative;
    background-color: #A0001C;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    padding: 2rem;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .eventos-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }

  .eventos-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .eventos-conteudo {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    width: 100%;
  }

  .titulo-eventos {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 700;
    font-size: 26px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
  }

  .eventos-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-bottom: 2rem;
    width: 100%;
  }

  .card-evento {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: center;
    background-color: #f51d41;
    background-image: url('../img/fundocard.fw.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    padding: 2rem;
    min-height: 420px;
    color: white;
    border-radius: 30px;
    text-align: center;
    box-sizing: border-box;
  }

  .evento-localidade {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 500;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }

  .evento-local {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 1rem;
  }

  .evento-dia {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 4.5rem;
    margin-bottom: 0.5rem;
  }

  .evento-data-hora {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 2rem;
  }

  .evento-data-hora span {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 700;
    font-size: 24px;
  }

  .eventos-indicadores {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .eventos-indicadores .dot {
    position: relative;
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-radius: 50%;
    background-color: transparent;
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
  }

  .eventos-indicadores .dot.active::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

  #rodape {
    background-color: #DB0327;
    padding: 3rem 1rem;
    text-align: center;
  }

  .logo-footer {
    max-height: 110px;
    margin-bottom: 2rem;
  }

  .segue-nos {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 200;
    font-size: 14pt;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-align: left;
  }

  .icon-rs {
    height: 50px;
    width: auto;
    transition: transform 0.2s ease;
  }

  .icon-rs:hover {
    transform: scale(1.1);
  }
} /* ← FECHO da media query */





.bg-noticia-detalhe {
  background-image: url("/static/website/img/fundo_discurso_benfica_no_sangue.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  width: 100%;
  color: white;
}

/* Para dispositivos móveis – evitar o "background-attachment: fixed" que falha no iOS */
@media (max-width: 768px) {
  .bg-noticia-detalhe {
    background-attachment: scroll;
  }
}



.text-truncate-multiline {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 3.6em; /* Altura de 2 linhas, 1.8em por linha */
}











@media (min-width: 1200px) and (max-height: 700px) {

  #hero-mobile {
    display: none;
  }

  #hero {
    display: block;
  }

  #visao {
    display: none;
  }

  #slider-fotos {
    display: none;
  }

  #eventos-desktop {
    display: block;
  }

  #formulario {
    display: none;
  }

  #formulario-desktop {
    display: block;
  }
    
  /* Hero Section Desktop */
  #hero {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .hero-bg {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-logo {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: auto;
      max-width: 800px;
      height: auto;
    }


    #candidato-desktop {
    display: block;
    background-color: #DB0327;
    height: 100vh;
    overflow: hidden;
    position: relative;
  }

  #candidato-desktop .subtitulo {
    margin-top: 5rem;
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
  }

  #candidato-desktop .nome {
    font-size: 36px;
    line-height: 1.3;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
  }

  #candidato-desktop .descricao {
    font-size: 14px;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1rem;
  }

  #candidato-desktop .slide-desktop {
    display: none !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  #candidato-desktop .slide-desktop.active {
    display: flex !important;
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
  }


  .foto-slide img {
    max-height: 50%;
    max-width: 50%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }

  .foto-slide.foto-active {
    display: flex;
  }

  .foto-indicadores {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
  }

  .foto-dot {
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-radius: 50%;
    background-color: transparent;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .foto-dot.foto-active {
    background-color: white;
    opacity: 1;
  }

  .slide-desktop {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'OwnersXWide', sans-serif;
    padding-left: 4rem;
    padding-right: 6rem; /* menos espaço à esquerda */
    gap: 3rem;
  }

  .slide-desktop .imagem {
    flex: 0 0 50%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end; /* importante para alinhar por baixo */
    margin-bottom: 0;
    padding-left: 2rem; /* ajustável */
    align-items: flex-end;
    padding-bottom: 0; /* importante */
    padding-top: 0; /* zera para não empurrar para cima */
    padding-left: 10rem;
  }

  .slide-desktop .imagem img {
    max-width: 100%;
    max-height: 140vh;
    height: auto;
    width: auto;
    object-fit: contain;
    margin-bottom: 0px;
    margin-top: auto;
    padding-left: 1rem;
    transform: translateY(120px);
  }

  .slide-desktop .texto {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    text-align: left;
    padding-left: 0;
    margin-left: -2rem;
  }

  .slide-desktop .subtitulo {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 500;
    font-size: 55px;
    color: #840615;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
  }

  .slide-desktop .nome {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 500;
    font-size: 55px;
    line-height: 1.2;
    color: white;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 4px;
  }

  .slide-desktop .descricao {
    font-family: 'OwnersXWide', sans-serif;
    font-size: 42px;
    color: white;
    margin-bottom: 1.1rem;
    line-height: 1;
    font-weight: 100;
  }

  .indicadores-desktop {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
  }

  .dot-desktop {
    width: 26px;
    height: 26px;
    border: 2px solid white;
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .dot-desktop.active {
    background-color: white;
  }



  /* VISAO/MANIFESTO */
  #visao-desktop {
    position: relative;
    display: block;
    width: 100vw;
    min-height: 100vh;
    padding: 6rem 10rem;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 0;
    isolation: isolate; /* ← novo */
  }

  #visao-desktop::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/static/website/img/fundo_manifesto_benfica_no_sangue.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: -1; /* ← alterado de 0 para -1 */
  }

  #visao-desktop .visao-conteudo {
    position: relative;
    z-index: 1;
    opacity: 1.0;
  }

  .visao-conteudo {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
  }



  #visao-desktop .visao-titulo {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 500;
    font-size: 30px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 12px;
    margin-bottom: 6rem;
    text-align: left;
    position: relative;
    z-index: 1;
  }

  #visao-desktop .coluna-visao {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem 22rem;
    max-width: 100%;
  }

  .visao-texto {
    flex: 1;
    overflow: hidden;
    position: relative;
    
  }

  #visao-desktop  p {
    font-family: 'OwnersXWide', sans-serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    line-height: 1.4;
    color: white;
    margin-bottom: 3rem;
    text-align: left;
  }









    #eventos {
    position: relative;
    background-color: #A0001C;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    padding: 2rem;
    box-sizing: border-box;
  }

  .eventos-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }

  .eventos-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .eventos-conteudo {
    position: relative;
    z-index: 1;
    margin-top: 3rem; /* novo */
  }

  .titulo-eventos {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 1rem;
  }

  .eventos-slider {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    scroll-snap-type: x mandatory;
    padding-bottom: 2rem;
  }



  .evento-localidade {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 500;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }

  .evento-local {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 1rem;
    
  }

  .evento-dia {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 4.5rem;
    margin-bottom: 0.5rem;
  }

  .evento-data-hora {
    display: flex;
    flex-direction: column;  /* novo */
    align-items: center;     /* centraliza verticalmente */
    gap: 0.2rem;             /* espaço reduzido */
    margin-bottom: 4rem;        /* opcional para afastar do texto */
  }

  .evento-data-hora span {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 700;
    font-size: 24px;
  }

  /* Indicadores */
  .eventos-indicadores {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
  }

  .eventos-indicadores .dot {
    position: relative;
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-radius: 50%;
    background-color: transparent;
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
  }

  .eventos-indicadores .dot.active::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }


  .fundo-pilares-mobile {
    display: none;
  }



  #eventos {
      display: none !important;
    }

  /*Candidato Desktop */




  /*DISCURSO DESKTOP */
  #discurso-desktop {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    overflow: hidden;
    z-index: 0;
  }

  #discurso-desktop::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/static/website/img/fundo_discurso_benfica_no_sangue.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: -1;
  }

  #discurso-desktop .discurso-titulo {
    position: absolute;
    top: 6rem;
    left: 4rem;
    font-family: 'OwnersXWide', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #DB0327;
    text-transform: uppercase;
    letter-spacing: 8px;
    z-index: 1;
    margin: 0;
  }

  #discurso-desktop .grid-discurso {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8rem 12rem;
    position: relative;
    z-index: 1;
    margin-top: 15rem;
    padding-left: 4rem;
    padding-right: 4rem;
    max-width: 1800px;
  }

  #discurso-desktop .bloco-discurso {
    font-family: 'OwnersXWide', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: black;
  }





  /*SLIDER FOTOS */
  #slider-fotos-desktop {
    display: flex;
    justify-content: center;
    padding: 3rem 0;
    background-color: #f9f9f9;
    position: relative;
  }

  .carousel-fotos-desktop-wrapper {
    max-width: 1800px;
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .carousel-fotos-desktop {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding: 1rem 3rem;
  }

  .carousel-fotos-desktop::-webkit-scrollbar {
    display: none;
  }

  .carousel-fotos-desktop img {
    flex: 0 0 auto;
    width: calc(100% / 3.5); /* ligeiramente menor */
    max-width: 440px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }

  /* Setas */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    user-select: none;
  }

  .carousel-btn.left {
    left: 1rem;
  }

  .carousel-btn.right {
    right: 1rem;
  }

  .carousel-fotos-desktop-wrapper {
    max-width: 1800px;
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .carousel-fotos-desktop {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding: 1rem 3rem;
  }

  .carousel-fotos-desktop::-webkit-scrollbar {
    display: none;
  }

  .carousel-fotos-desktop img {
    flex: 0 0 auto;
    width: calc(100% / 3.5); /* ligeiramente menor */
    max-width: 440px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }

  /* Setas */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    user-select: none;
  }

  .carousel-btn.left {
    left: 1rem;
  }

  .carousel-btn.right {
    right: 1rem;
  }




  #pilares {
    height: 100vh;
    display: block;
    position: relative;
    background-color: #DB0327;
    padding: 1rem 4rem 2rem 4rem;
    overflow: hidden;
    height: auto;
  }

  #pilares .pilares-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110vh;
    pointer-events: none;
    z-index: 0;
  }

  #pilares .pilares-background img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }

  #pilares .pilares-conteudo {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
  }

  #pilares .pilares-titulo {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 700;
    font-size: 56px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    text-align: center;
  }

  #pilares .pilares-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem 4rem;
    width: 100%;
    box-sizing: border-box;
  }

  #pilares .pilar-slide {
    color: white;
  }

  #pilares .pilar-nome {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 1.5rem;
  }

  #pilares .pilar-descricao {
    font-family: 'OwnersXWide', sans-serif;
    font-size: 18px;
    line-height: 1.6;
  }

  /* Indicadores */
  .pilares-indicadores {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .pilares-indicadores .dot {
    position: relative;
    width: 24px;
    height: 24px;
    border: 2px solid white;
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    opacity: 1;
    transition: all 0.3s ease;
    box-sizing: border-box;
  }

  .pilares-indicadores .dot.active::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

  /* EVENTOS */
  #eventos-desktop {
    background-color: #A0001C;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 4rem 2rem 4rem 2rem; /* ← reduzido de 6rem/10rem */
  }



  #eventos-desktop .eventos-conteudo-desktop {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
  }

  #eventos-desktop .titulo-eventos {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 700;
    font-size: 28px;
    text-transform: uppercase;
    color: white;
    text-align: center;
    padding-top: 2rem;
    padding-right: 55rem;
  }

  #eventos-desktop .eventos-slider-wrapper {
    width: 100%;            /* ou 90%, ou um valor fixo como 1200px */
    max-width: 1000px;
    margin: 0 auto;         /* ← isto é o que o centra horizontalmente */
    align-items: center;
    position: relative;
    display: flex;
  }

  .eventos-conteudo-desktop {
    position: relative;
    z-index: 1;
    margin-top: 3rem; /* novo */
  }

  #eventos-desktop .eventos-slider {
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
  }

  #eventos-desktop .eventos-slider::-webkit-scrollbar {
    display: none;
  }

  #eventos-desktop .card-evento {
    flex: 0 0 220px;
    max-width: 220px;
    min-height: 280px;
    background-color: #f51d41;
    padding: 1.5rem;
    border-radius: 20px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
  }

  #eventos-desktop .evento-localidade {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }

  #eventos-desktop .evento-local {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 0.5rem;
  }

  #eventos-desktop .evento-dia {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 25%;
  }

  #eventos-desktop .evento-data-hora {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: auto;
  }

  #eventos-desktop .evento-data-hora span {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 700;
    font-size: 24px;
  }

  #eventos-desktop .btn-scroll {
    background-color: rgba(219, 3, 39, 0.9);
    border: none;
    color: white;
    font-size: 4.4rem;
    cursor: pointer;
    padding: 0.1rem 1rem;
    border-radius: 3px;
    user-select: none;
    z-index: 10;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
  }



  #eventos-desktop .btn-scroll.left {
    margin-right: 1rem;
  }

  #eventos-desktop .btn-scroll.right {
    margin-left: 1rem;
  }





  /*FORMULARIO */

  .formulario-desktop {
  justify-content: center;
  max-width: 90%;
  margin: 0 auto;
  padding: 4rem 2rem;
  margin-top: 2rem;
}

.formulario-desktop .formulario-grid {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  width: 100%;
}

.formulario-desktop .col-esquerda {
  flex: 1 1 35%;
  max-width: 35%;
}

.formulario-desktop .col-direita {
  flex: 1 1 65%;
  max-width: 65%;
}


.formulario-desktop .titulo-form {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: 0.2em;
}

.formulario-desktop .descricao-form {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 0;
  letter-spacing: 0.2em;
  
}



.formulario-desktop form {
  width: 90%;
  padding-left: 30%;
}

.formulario-desktop label {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 15px;
  font-weight: 100;
  margin-bottom: 0.3rem;
  display: block;
}

.formulario-desktop input.form-control {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 14pt;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  border: 1px solid #000;
  margin-bottom: 1.2rem;
}

.formulario-desktop .form-check-label {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 16pt;
  font-weight: 400;
}

.formulario-desktop .form-check-input {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}



.formulario-desktop button[type="submit"] {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 16pt;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  background-color: #DB0327;
  border: none;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.formulario-desktop button[type="submit"]:hover {
  background-color: #a2001c;
}


.dropdown-simples {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: 'OwnersXWide', sans-serif;
  font-size: 12pt;
  padding: 1rem 2rem;
  border: 2px solid #000;
  border-radius: 999px;
  background-color: white;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='30,50 70,90 110,50' stroke='black' stroke-width='10' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
}
}



@media (min-width: 1280px) and (max-height: 850px) {

  #hero-mobile {
    display: none;
  }

  #hero {
    display: block;
  }

  #visao {
    display: none;
  }

  #slider-fotos {
    display: none;
  }

  #eventos-desktop {
    display: block;
  }

  #formulario {
    display: none;
  }

  #formulario-desktop {
    display: block;
  }
    
  /* Hero Section Desktop */
  #hero {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .hero-bg {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-logo {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: auto;
      max-width: 800px;
      height: auto;
    }


    #candidato-desktop {
    display: block;
    background-color: #DB0327;
    height: 100vh;
    overflow: hidden;
    position: relative;
  }

  #candidato-desktop .subtitulo {
    margin-top: 5rem;
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
  }

  #candidato-desktop .nome {
    font-size: 36px;
    line-height: 1.3;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
  }

  #candidato-desktop .descricao {
    font-size: 14px;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1rem;
  }

  #candidato-desktop .slide-desktop {
    display: none !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  #candidato-desktop .slide-desktop.active {
    display: flex !important;
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
  }


  .foto-slide img {
    max-height: 50%;
    max-width: 50%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }

  .foto-slide.foto-active {
    display: flex;
  }

  .foto-indicadores {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
  }

  .foto-dot {
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-radius: 50%;
    background-color: transparent;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .foto-dot.foto-active {
    background-color: white;
    opacity: 1;
  }

  .slide-desktop {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'OwnersXWide', sans-serif;
    padding-left: 4rem;
    padding-right: 6rem; /* menos espaço à esquerda */
    gap: 3rem;
  }

  .slide-desktop .imagem {
    flex: 0 0 50%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end; /* importante para alinhar por baixo */
    margin-bottom: 0;
    padding-left: 2rem; /* ajustável */
    align-items: flex-end;
    padding-bottom: 0; /* importante */
    padding-top: 0; /* zera para não empurrar para cima */
    padding-left: 10rem;
  }

  .slide-desktop .imagem img {
    max-width: 100%;
    max-height: 140vh;
    height: auto;
    width: auto;
    object-fit: contain;
    margin-bottom: 0px;
    margin-top: auto;
    padding-left: 1rem;
    transform: translateY(180px);
  }

  .slide-desktop .texto {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    text-align: left;
    padding-left: 0;
    margin-left: -2rem;
  }

  .slide-desktop .subtitulo {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 500;
    font-size: 55px;
    color: #840615;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
  }

  .slide-desktop .nome {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 500;
    font-size: 55px;
    line-height: 1.2;
    color: white;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 4px;
  }

  .slide-desktop .descricao {
    font-family: 'OwnersXWide', sans-serif;
    font-size: 42px;
    color: white;
    margin-bottom: 1.1rem;
    line-height: 1;
    font-weight: 100;
  }

  .indicadores-desktop {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
  }

  .dot-desktop {
    width: 26px;
    height: 26px;
    border: 2px solid white;
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .dot-desktop.active {
    background-color: white;
  }




  /* VISAO/MANIFESTO */
  #visao-desktop {
    position: relative;
    display: block;
    width: 100vw;
    min-height: 100vh;
    padding: 6rem 10rem;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 0;
    isolation: isolate; /* ← novo */
  }

  #visao-desktop::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/static/website/img/fundo_manifesto_benfica_no_sangue.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: -1; /* ← alterado de 0 para -1 */
  }

  #visao-desktop .visao-conteudo {
    position: relative;
    z-index: 1;
    opacity: 1.0;
  }

  .visao-conteudo {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
  }



  #visao-desktop .visao-titulo {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 500;
    font-size: 30px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 12px;
    margin-bottom: 6rem;
    text-align: left;
    position: relative;
    z-index: 1;
  }

  #visao-desktop .coluna-visao {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem 22rem;
    max-width: 100%;
  }

  .visao-texto {
    flex: 1;
    overflow: hidden;
    position: relative;
    
  }

  #visao-desktop  p {
    font-family: 'OwnersXWide', sans-serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    line-height: 1.4;
    color: white;
    margin-bottom: 3rem;
    text-align: left;
  }









    #eventos {
    position: relative;
    background-color: #A0001C;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    padding: 2rem;
    box-sizing: border-box;
  }

  .eventos-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }

  .eventos-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .eventos-conteudo {
    position: relative;
    z-index: 1;
    margin-top: 3rem; /* novo */
  }

  .titulo-eventos {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 1rem;
  }

  .eventos-slider {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    scroll-snap-type: x mandatory;
    padding-bottom: 2rem;
  }



  .evento-localidade {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 500;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }

  .evento-local {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 1rem;
    
  }

  .evento-dia {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 4.5rem;
    margin-bottom: 0.5rem;
  }

  .evento-data-hora {
    display: flex;
    flex-direction: column;  /* novo */
    align-items: center;     /* centraliza verticalmente */
    gap: 0.2rem;             /* espaço reduzido */
    margin-bottom: 4rem;        /* opcional para afastar do texto */
  }

  .evento-data-hora span {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 700;
    font-size: 24px;
  }

  /* Indicadores */
  .eventos-indicadores {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
  }

  .eventos-indicadores .dot {
    position: relative;
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-radius: 50%;
    background-color: transparent;
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
  }

  .eventos-indicadores .dot.active::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }


  .fundo-pilares-mobile {
    display: none;
  }



  #eventos {
      display: none !important;
    }

  /*Candidato Desktop */




  /*DISCURSO DESKTOP */
  #discurso-desktop {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    overflow: hidden;
    z-index: 0;
  }

  #discurso-desktop::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/static/website/img/fundo_discurso_benfica_no_sangue.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: -1;
  }

  #discurso-desktop .discurso-titulo {
    position: absolute;
    top: 6rem;
    left: 4rem;
    font-family: 'OwnersXWide', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #DB0327;
    text-transform: uppercase;
    letter-spacing: 8px;
    z-index: 1;
    margin: 0;
  }

  #discurso-desktop .grid-discurso {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8rem 12rem;
    position: relative;
    z-index: 1;
    margin-top: 15rem;
    padding-left: 4rem;
    padding-right: 4rem;
    max-width: 1800px;
  }

  #discurso-desktop .bloco-discurso {
    font-family: 'OwnersXWide', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: black;
  }





  /*SLIDER FOTOS */
  #slider-fotos-desktop {
    display: flex;
    justify-content: center;
    padding: 3rem 0;
    background-color: #f9f9f9;
    position: relative;
  }

  .carousel-fotos-desktop-wrapper {
    max-width: 1800px;
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .carousel-fotos-desktop {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding: 1rem 3rem;
  }

  .carousel-fotos-desktop::-webkit-scrollbar {
    display: none;
  }

  .carousel-fotos-desktop img {
    flex: 0 0 auto;
    width: calc(100% / 3.5); /* ligeiramente menor */
    max-width: 440px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }

  /* Setas */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    user-select: none;
  }

  .carousel-btn.left {
    left: 1rem;
  }

  .carousel-btn.right {
    right: 1rem;
  }

  .carousel-fotos-desktop-wrapper {
    max-width: 1800px;
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .carousel-fotos-desktop {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding: 1rem 3rem;
  }

  .carousel-fotos-desktop::-webkit-scrollbar {
    display: none;
  }

  .carousel-fotos-desktop img {
    flex: 0 0 auto;
    width: calc(100% / 3.5); /* ligeiramente menor */
    max-width: 440px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }

  /* Setas */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    user-select: none;
  }

  .carousel-btn.left {
    left: 1rem;
  }

  .carousel-btn.right {
    right: 1rem;
  }




  #pilares {
    height: 100vh;
    display: block;
    position: relative;
    background-color: #DB0327;
    padding: 1rem 4rem 2rem 4rem;
    overflow: hidden;
    height: auto;
  }

  #pilares .pilares-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110vh;
    pointer-events: none;
    z-index: 0;
  }

  #pilares .pilares-background img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }

  #pilares .pilares-conteudo {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
  }

  #pilares .pilares-titulo {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 700;
    font-size: 56px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    text-align: center;
  }

  #pilares .pilares-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem 4rem;
    width: 100%;
    box-sizing: border-box;
  }

  #pilares .pilar-slide {
    color: white;
  }

  #pilares .pilar-nome {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 1.5rem;
  }

  #pilares .pilar-descricao {
    font-family: 'OwnersXWide', sans-serif;
    font-size: 18px;
    line-height: 1.6;
  }

  /* Indicadores */
  .pilares-indicadores {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .pilares-indicadores .dot {
    position: relative;
    width: 24px;
    height: 24px;
    border: 2px solid white;
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    opacity: 1;
    transition: all 0.3s ease;
    box-sizing: border-box;
  }

  .pilares-indicadores .dot.active::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

  /* EVENTOS */
  #eventos-desktop {
    background-color: #A0001C;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 4rem 2rem 4rem 2rem; /* ← reduzido de 6rem/10rem */
  }



  #eventos-desktop .eventos-conteudo-desktop {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
  }

  #eventos-desktop .titulo-eventos {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 700;
    font-size: 28px;
    text-transform: uppercase;
    color: white;
    text-align: center;
    padding-top: 2rem;
    padding-right: 55rem;
  }

  #eventos-desktop .eventos-slider-wrapper {
    width: 100%;            /* ou 90%, ou um valor fixo como 1200px */
    max-width: 1000px;
    margin: 0 auto;         /* ← isto é o que o centra horizontalmente */
    align-items: center;
    position: relative;
    display: flex;
  }

  .eventos-conteudo-desktop {
    position: relative;
    z-index: 1;
    margin-top: 3rem; /* novo */
  }

  #eventos-desktop .eventos-slider {
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
  }

  #eventos-desktop .eventos-slider::-webkit-scrollbar {
    display: none;
  }

  #eventos-desktop .card-evento {
    flex: 0 0 220px;
    max-width: 220px;
    min-height: 280px;
    background-color: #f51d41;
    padding: 1.5rem;
    border-radius: 20px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
  }

  #eventos-desktop .evento-localidade {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }

  #eventos-desktop .evento-local {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 0.5rem;
  }

  #eventos-desktop .evento-dia {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 25%;
  }

  #eventos-desktop .evento-data-hora {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: auto;
  }

  #eventos-desktop .evento-data-hora span {
    font-family: 'OwnersXWide', sans-serif;
    font-weight: 700;
    font-size: 24px;
  }

  #eventos-desktop .btn-scroll {
    background-color: rgba(219, 3, 39, 0.9);
    border: none;
    color: white;
    font-size: 4.4rem;
    cursor: pointer;
    padding: 0.1rem 1rem;
    border-radius: 3px;
    user-select: none;
    z-index: 10;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
  }



  #eventos-desktop .btn-scroll.left {
    margin-right: 1rem;
  }

  #eventos-desktop .btn-scroll.right {
    margin-left: 1rem;
  }


  


  /*FORMULARIO */

  .formulario-desktop {
  justify-content: center;
  max-width: 90%;
  margin: 0 auto;
  padding: 4rem 2rem;
  margin-top: 2rem;
}

.formulario-desktop .formulario-grid {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  width: 100%;
}

.formulario-desktop .col-esquerda {
  flex: 1 1 35%;
  max-width: 35%;
}

.formulario-desktop .col-direita {
  flex: 1 1 65%;
  max-width: 65%;
}


.formulario-desktop .titulo-form {
  font-family: 'OwnersXWide', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: 0.2em;
}

.formulario-desktop .descricao-form {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 0;
  letter-spacing: 0.2em;
  
}



.formulario-desktop form {
  width: 90%;
  padding-left: 30%;
}

.formulario-desktop label {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 15px;
  font-weight: 100;
  margin-bottom: 0.3rem;
  display: block;
}

.formulario-desktop input.form-control {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 14pt;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  border: 1px solid #000;
  margin-bottom: 1.2rem;
}

.formulario-desktop .form-check-label {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 16pt;
  font-weight: 400;
}

.formulario-desktop .form-check-input {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}



.formulario-desktop button[type="submit"] {
  font-family: 'OwnersXWide', sans-serif;
  font-size: 16pt;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  background-color: #DB0327;
  border: none;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.formulario-desktop button[type="submit"]:hover {
  background-color: #a2001c;
}


.dropdown-simples {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: 'OwnersXWide', sans-serif;
  font-size: 12pt;
  padding: 1rem 2rem;
  border: 2px solid #000;
  border-radius: 999px;
  background-color: white;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='30,50 70,90 110,50' stroke='black' stroke-width='10' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
}
}