@font-face {
  font-family: 'Jost';
  src: url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600&display=swap') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Jost', sans-serif;
  overflow-x: hidden;
}

body {
  align-items: center;
  justify-content: center;
}

/* Logo (Desktop) */
.logo {
  background-image: url("../img/fundologo.png");
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 218px;
  height: 86px;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  max-width: 100%;
  height: auto;
}


/* Banner principal (Desktop) */
#hero {
  background-image: url("../img/top-desktop.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 945px;
}

/* Imagem */
.image {
  background-repeat: no-repeat;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.casal {
  z-index: 1;
  position: relative;
  max-width: 100%;
  height: auto;
  padding-right: 150px;

}

/* Conteúdo */
.content {
  padding-top: 34%;
  padding-left: 150px;
  max-width: 625px;
  color: white;
}

h1 {
  font-size: 48px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.2;
  text-shadow: 4px 4px 0px #320060, 6px 6px 0px #000;
}

p {
  color: #000;
  margin: 20px 0;
  font-size: 18px;
  font-weight: bold;
}

/* Botão */
button {
  background: linear-gradient(to bottom, #41439C, #5053C6);
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 10px !important;
  transition: 0.3s;
}


button:hover {
  background: linear-gradient(to bottom, #5053C6, #41439C);
}

/* Responsividade para Tablet (768px - 1024px) */
@media (max-width: 1427px) {
  #hero {
    background-image: url("../img/top-mobile.png");
    flex-direction: column;
    text-align: center;
    min-height: 945px;
  }

  .logo {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: auto;
  }

  .content {
    padding: 0;
    max-width: 90%;
  }

  h1 {
    font-size: 42px;
    line-height: 1.1;
  }

  p {
    font-size: 16px;
    margin: 15px 0;
  }

  button {
    margin-bottom: 50px;
    padding: 12px 20px;
    font-size: 16px;
  }

  .image {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-end;
  }

  .casal {
    width: 80%;
    padding-right: 150px;
  }
}

/* Responsividade para Mobile (até 768px) */
@media (max-width: 768px) {
  body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #hero {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .logo {
    width: 218px;
    height: 86px;
  }

  .content {
    padding: 10px;
    max-width: 90%;
  }

  h1 {
    font-size: 36px;
    line-height: 1.1;
  }

  p {
    font-size: 14px;
    margin: 10px 0;
  }

  button {
    padding: 10px 18px;
    font-size: 14px;
  }

  #hero>div.content>img {
    max-width: 95%;
    margin-top: 99px;
  }

  .image {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .casal {
    max-width: 90%;
    height: auto;
  }
}


/* Benefícios */
#benefits {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 1548px;
  margin: 0 auto;
  padding: 50px;
}

/* Texto da seção */
#benefits .benefits-list {

  width: 820px;
  padding-left: 150px;
}

#benefits p:first-of-type {
  color: #3E4093;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
}

#benefits h2 {
  font-size: 60px;
  font-weight: bold;
  color: #120b3d;
  margin: 10px 0;
}

#benefits p {
  font-size: 22px;
  color: #555;
  max-width: 450px;
}

#benefits ul {
  padding: 0;
  margin: 20px 0;
}

#benefits ul li {
  font-size: 22px;
  color: #333;
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

#benefits ul li::before {
  color: #3E4093;
  font-weight: bold;
  position: absolute;
  left: 0;
}

#steps .steps-container .step:nth-of-type(2) ul {
  list-style: disc inside;
  padding-left: 0;
  text-align: left;
}

#steps .steps-container .step:nth-of-type(2) ul li {
  font-size: 16px;
  color: #333;
  padding-left: 0;
  position: static;
}

#steps .steps-container .step:nth-of-type(2) ul li::before {
  content: none;
}

#benefits button {
  background: linear-gradient(to bottom, #41439C, #5053C6);
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 10px !important;
  transition: 0.3s;
}


#benefits button:hover {
  background: linear-gradient(to bottom, #5053C6, #41439C);
}

/* RESPONSIVIDADE PARA MOBILE */
@media (max-width: 768px) {
  #benefits {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 100%;
    padding: 20px;
  }

  #benefits .benefits-list {
    width: 100%;
    padding: 0;
  }

  #benefits h2 {
    font-size: 32px;
  }

  #benefits p {
    font-size: 18px;
    max-width: 100%;
  }

  #benefits ul li {
    font-size: 18px;
  }

  #benefits button {
    padding: 10px 20px;
    font-size: 14px;
  }
}


/* steps */
#steps {
  text-align: center;
  padding: 50px 0 0 0;
  background-position: 0px -172px;
  background-size: auto;
}

/* Título */
#steps h2 {
  font-size: 60px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Container dos passos */
#steps .steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Ícone das setas */
#steps .seta-direita {
  height: auto;
}

/* Parágrafos */
#steps p {
  font-size: 16px;
  color: #555;
  /* margin-bottom: 30px; */
}

/* Estilização dos blocos de etapa */
#steps .step {
  display: inline-block;
  max-width: 355px;
  max-height: 415px;
  height: 415px;
  padding: 20px;
  border: 2px solid #000066;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 0 10px;
  vertical-align: top;
}

/* Títulos das etapas */
#steps .step h3 {
  font-size: 1.2rem;
  color: #380040;
  margin-bottom: 10px;
}

/* Texto das etapas */
#steps .step p {
  font-size: 16px;
  color: #333;
  font-weight: 100;
}

/* Último parágrafo em negrito */
/* #steps .step p:last-child {
  font-weight: bold;
} */

/* Botão */
#steps button {
  display: block;
  margin: 76px auto;
  padding: 15px 30px;
  background: linear-gradient(to bottom, #41439C, #5053C6);
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

#steps button:hover {
  background: linear-gradient(to bottom, #5053C6, #41439C);
}

/* mobile */
@media (max-width: 768px) {
  #steps {
    background-size: cover;
    padding: 40px 10px;
  }

  #steps h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  #steps p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  /* Empilha os elementos */
  #steps .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-width: 100%;
  }

  /* Oculta as setas no mobile */
  #steps .seta-direita {
    display: none;
  }

  /* Ajuste nos cards */
  #steps .step {
    max-width: 80%;
    width: 100%;
    min-height: auto;
    padding: 15px;
    margin: 0;
  }

  #steps .step h3 {
    font-size: 18px;
  }

  #steps .step p {
    font-size: 14px;
  }

  /* Ajuste no botão */
  #steps button {
    font-size: 14px;
    padding: 10px 20px;
  }
}


/* video */
#video {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  padding: 60px 150px;
  box-sizing: border-box;
  gap: 40px;
}

/* Texto */
#video div:first-child {
  max-width: 500px;
}

#video h2 {
  font-size: 60px;
  color: #04051e;
  font-weight: 700;
}

#video p {
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
}

/* Container do vídeo */
#video .youtube-video {
  width: 750px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background-color: black;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Responsividade para tablets */
@media (max-width: 1024px) {
  #video {
    flex-direction: column;
    text-align: center;
    padding: 40px 5%;
  }

  #video h2 {
    font-size: 48px;
  }

  #video p {
    font-size: 0.85rem;
  }

  #video .youtube-video {
    width: 90%;
    max-width: 600px;
  }
}

/* Responsividade para mobile */
@media (max-width: 768px) {
  #video {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
  }

  #video div:first-child {
    max-width: 100%;
  }

  #video h2 {
    font-size: 32px;
  }

  #video p {
    font-size: 14px;
  }

  #video .youtube-video {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
}

#horarios-morro {
  background-color: #fdfcff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #00103b;
  text-align: center;
}

.origem-destino {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.bloco-topo {
  border: 1px solid #fe7900;
  border-radius: 12px;
  padding: 12px 18px;
  text-align: center;
  min-width: 220px;
  margin-bottom: 6px;
}

.bloco-topo strong {
  display: block;
  font-size: 1.1rem;
  color: #000;
  font-weight: 700;
}

.subtitulo {
  font-size: 0.85rem;
  font-weight: bold;
  color: #2a3f92;
  display: block;
  margin-bottom: 4px;
}

.linha-conector {
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, #fe7900 40%, transparent 40%, transparent 60%, #fe7900 60%);
  background-size: 100% 100%;
  position: relative;
  margin: 4px 0;
}

.linha-conector span {
  width: 8px;
  height: 8px;
  background-color: #fe7900;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
}

.linha-conector::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #fe7900;
  border-radius: 50%;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
}


.container-horarios h2 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  font-weight: bold;
  line-height: 1.3;
}

.descricao {
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 1rem;
  color: #4d4d4d;
  line-height: 1.6;
}

.cards-horarios {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.card-horario {
  background: white;
  border: 1px solid #c9d0f0;
  border-radius: 14px;
  width: 320px;
  padding: 30px 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-horario h3,
.card-horario p {
  font-size: 1rem;
}

.card-horario h3 span,
.card-horario p span {
  display: block;
  font-weight: bold;
  font-size: 0.9rem;
  color: #fff;
}

.seta-vertical {
  margin: 12px;
}

.bloco-info {
  background: #fdf6ee;
  border-radius: 12px;
  width: 100%;
  margin-top: 20px;
  padding: 18px 16px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;

}

.bloco-info h4 {
  color: #00103b;
  margin: 16px 0 6px;
  font-weight: 600;
  font-size: 1.5rem;
}

.horarios {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.horarios span {
  background: #fe7900;
  color: white;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 0.95rem;
}

.destaque-azul {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #4b64d6;
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 0.95rem;
  margin-bottom: 8px;
  gap: 10px;
  padding: 1px 10px 1px 1px;
}

.tag-azul-hora {
  border-radius: 6px;
  background-color: #2a3f92;
  padding: 4px 10px;
  font-size: 0.8rem;
  color: white;
}


.botao-transfer {
  margin-top: 30px;
}

.botao-transfer a {
  background-color: #2a3f92;
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.botao-transfer a:hover {
  background-color: #1d2e70;
}



/* choice */
#choice {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 150px;
  gap: 40px;
  background-color: #fff;
  min-width: 1548px;
}

.choice-images {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 15px;
}

.choice-images img {
  width: 100%;
  border-radius: 10px;
}

.choice-content {
  max-width: 800px;
}

.choice-content h2 {
  font-size: 60px;
  font-weight: 600;
}

.choice-content ul {
  padding: 0;
}

.choice-content ul li {
  font-size: 18px;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.choice-content ul li::before {
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 2px;
}

.choice-content p:last-of-type {
  font-weight: bold;
}

.choice-content p {
  font-weight: 100;
}

@media (max-width: 768px) {
  #choice {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 100%;
    padding: 30px 20px;
  }

  .choice-images {
    display: flex;
    justify-content: center;
  }

  .choice-images img {
    max-width: 100%;
  }

  .choice-content h2 {
    font-size: 34px;
    padding-bottom: 20px;
    font-weight: 600;
  }

  .choice-content ul li {
    font-size: 16px;
    text-align: left;
  }

  .choice-content p {
    font-size: 14px;
  }
}


/* testimonial */
#testimonials {
  background-color: #3e3e99;
  padding: 60px 20px;
  color: white;
  display: flex;
  justify-content: center;
  width: 100%;
}

.testimonials-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

#testimonials>div>div.testimonials-header>p {
  color: white;
}

.testimonials-header {
  max-width: 600px;
  margin-bottom: 40px;
}

.testimonials-header h2 {
  font-size: 48px;
  font-weight: bold;
  padding-bottom: 15px;
  text-align: left;
}

.testimonials-header p {
  font-size: 18px;
  text-align: left;
}

.testimonials-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.testimonial-block {
  overflow-y: hidden;
  height: 440px;
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  position: relative;
}

.testimonial-card {
  overflow-y: hidden;
  background-color: white;
  color: black;
  border-radius: 15px;
  padding: 20px;
  width: 300px;
  min-height: 350px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.testimonial-card img {
  margin-top: 42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-card h3 {
  margin-top: 100px;
  font-size: 20px;
  font-weight: 600px;
}

.testimonial-card .city {
  font-size: 14px;
  color: gray;
}

.testimonial-card .quote {
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
}

.dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
  margin: 5px;
  opacity: 0.5;
  cursor: pointer;
}

.dot.active {
  background-color: #f4a51c;
  opacity: 1;
}

@media (max-width: 1024px) {
  .testimonials-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .testimonials-header {
    text-align: center;
    max-width: 100%;
  }

  .testimonial-block {
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Mobile (até 768px) */
@media (max-width: 768px) {
  .testimonials-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .testimonials-header h2 {
    font-size: 32px;
  }

  .testimonials-header p {
    font-size: 16px;
  }

  .testimonial-block {
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  .testimonial-card {
    width: 90%;
    position: relative;
  }

  .testimonial-card img {
    width: 100px;
    height: 100px;
    top: -30px;
  }
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {

  /* Ajuste na seção */
  #testimonials {
    padding: 40px 15px;
    text-align: center;
  }

  /* Empilhar elementos no mobile */
  .testimonials-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonials-header {
    max-width: 100%;
  }

  .testimonials-header h2 {
    font-size: 32px;
    text-align: center;
  }

  .testimonials-header p {
    font-size: 16px;
    text-align: center;
  }

  /* Empilhar testemunhos no mobile */
  .testimonial-block {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .testimonial-card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .dots {
    margin-top: 15px;
  }
}

.faq-section {
  max-width: 800px;
  margin: 60px auto;
  text-align: center;
  padding: 0 20px;
  font-family: 'Arial', sans-serif;
}

.faq-section h2 {
  font-size: 2.5rem;
  color: #0f0f3c;
  font-weight: 800;
  margin-bottom: 40px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-container details {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  padding: 18px 22px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.faq-container summary {
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-container summary::marker {
  display: none;
}

.faq-container details[open] summary {
  font-weight: 600;
}

.faq-container summary::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('../img/icon-v');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  margin-left: 8px;
}


.faq-section * {
  scrollbar-width: none;
}

.faq-section ::-webkit-scrollbar {
  display: none;
}


.faq-container details[open] summary::after {
  transform: rotate(180deg);
}

.faq-container p {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #555;
  text-align: left;
}


/* Seção do rodapé */
#carnaval-footer {
  width: 100%;
  min-height: 562px;
  background-image: url("../img/background.png");
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  justify-content: center;
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
}

/* Container principal */
.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 80%;
  width: 100%;
  gap: 40px;
}

/* Texto do rodapé */
.footer-text {
  max-width: 550px;
  margin-top: 30%;
}

.hashtag {
  color: #3E4093;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
}

.footer-text h2 {
  font-size: 48px;
  font-weight: bold;
  margin: 10px 0;
}

/* Botão estilizado */
#carnaval-footer button {
    background: linear-gradient(to bottom, #41439C, #5053C6);
  color: white;
  border: none;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

#carnaval-footer button:hover {
  background: linear-gradient(to bottom, #5053C6, #41439C);
}

/* Imagem */
.footer-image img {
  max-width: 400px;
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
  #carnaval-footer {
    background-image: url("../img/background-mobile.png");
    min-height: 480px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-text {
    margin-top: 75%;
  }

  .footer-text h2 {
    font-size: 36px;
  }

  .footer-image img {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .footer-text h2 {
    font-size: 28px;
  }

  #carnaval-footer button {
    padding: 12px 24px;
    font-size: 16px;
  }

  .footer-image img {
    max-width: 250px;
  }
}

.footer-seguranca {
  display: flex;
  width: 100%;
  justify-content: center;
  background-color: #eeeded;
}

@media (max-width: 768px) {
  .footer-seguranca {
    background-color: #eeeded;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}