html {
  scroll-behavior: smooth;
}

/* Tema e tipografia base */
:root {
  --brand-primary: #6E0000;
  --brand-primary-700: #5b0000;
  --brand-secondary: #FFCC00;
  --text-color: #1f2937; /* cinza-900 */
  --text-muted: #4b5563; /* cinza-600 */
  --surface: #ffffff;
  --surface-alt: #faf7f2;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 24px rgba(110,0,0,0.08), 0 1.5px 6px rgba(110,0,0,0.10);
  /* Novas variáveis para cantos e transições */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --ease-smooth: cubic-bezier(.22,.61,.36,1);
}

body {
  font-family: "Inter", "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, "Open Sans", Arial, sans-serif;
  color: var(--text-color);
  background-color: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  letter-spacing: -0.01em;
}

p { color: var(--text-muted); }

/* Utilitários mínimos */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* Seção de Download - tornar responsiva sem dependência de inline */
.u-section-download {
  position: relative;
  padding: 150px 0 0 0;
  background: url('../images/background-downloads.svg') center center/cover no-repeat;
  width: 100%;
  min-height: 100%;
  color: var(--text-color);
}

/* Nova composição convidativa */
.download-cta {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px 120px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.download-cta .cta-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 36px rgba(0,0,0,0.16);
  padding: 28px 28px 24px;
  transition: transform .28s var(--ease-smooth), box-shadow .28s var(--ease-smooth);
}
.download-cta .cta-card:hover { transform: translateY(-2px); box-shadow: 0 16px 42px rgba(0,0,0,0.18); }

.download-cta h2 {
  font-family: Oswald, sans-serif;
  font-size: 2.1rem;
  margin: 4px 0 8px;
  color: var(--text-color);
}

.download-cta p.lead {
  font-family: Merriweather, serif;
  font-size: 1.05rem;
  margin: 0 0 18px;
  color: var(--text-color);
  opacity: .95;
}

.download-cta .highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px 18px;
  margin: 12px 0 18px;
}
.download-cta .highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-color);
  opacity: .95;
}
.download-cta .highlight i { color: var(--brand-secondary); }

.download-cta .cta-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 26px 88px;
}

.download-cta .qr-large {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  padding: 10px;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.download-cta .qr-large img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); }

.download-cta .badges { display: flex; flex-direction: column; gap: 12px; }
.download-cta .badges a { background: #000; color: #fff; width: 220px; height: 52px; display: flex; align-items: center; justify-content: center; border-radius: 12px; text-decoration: none; font-weight: 500; font-size: 1.08rem; }

.download-cta .cta-media { display: flex; align-items: center; justify-content: center; }
.download-cta .media-card { background: rgba(255,255,255,0.60); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 14px; transition: transform .28s var(--ease-smooth), box-shadow .28s var(--ease-smooth); }
.download-cta .media-card img { display: block; margin-left: auto; margin-right: auto; object-fit: contain; }
.download-cta .media-card:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.14); }

@media (max-width: 980px) {
  .download-cta { grid-template-columns: 1fr; padding-bottom: 90px; }
  .download-cta .cta-media { order: -1; }
  .download-cta .badges { align-items: center; }
}

@media (max-width: 520px) {
  .download-cta h2 { font-size: 1.7rem; }
  .download-cta .qr-large { width: 120px; height: 120px; }
  .download-cta .badges a { width: 200px; height: 48px; font-size: 1rem; }
}

.u-section-download .download-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
}

/* Variante sem imagem: conteúdo centralizado em cartão translúcido */
.u-section-download .download-shell.only-content { justify-content: center; }
.u-section-download .download-shell.only-content .content-right {
  flex: 0 1 860px;
  padding-left: 0;
  align-items: center;
  text-align: center;
}
.u-section-download .download-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  width: 100%;
  max-width: 820px;
}

.u-section-download .image-left-wrap {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  z-index: 2;
  height: 100%;
  pointer-events: none;
  margin-left: 0;
}

.u-section-download .image-left-wrap img {
  max-width: 600px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: -1px;
  padding-left: 0;
}

.u-section-download .content-right {
  flex: 0 0 60%;
  min-width: 260px;
  padding-left: 680px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.u-section-download .helper-text { opacity: 0.9; margin: 6px 0 16px; }

.u-section-download .buttons-wrap {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-bottom: 18px;
  align-items: center;
  width: 100%;
  justify-content: flex-end;
}

.u-section-download .qr-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  padding: 5px;
  width: 115px;
  height: 115px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.u-section-download .qr-card img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; background: #fff; }

.u-section-download .store-buttons { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }

.u-section-download .store-buttons a { background: #000; color: #fff; width: 220px; height: 52px; display: flex; align-items: center; justify-content: center; border-radius: 12px; text-decoration: none; font-weight: 500; font-size: 1.08rem; }

/* Quebras responsivas para a seção de download */
@media (max-width: 1100px) {
  .u-section-download .content-right { padding-left: 520px; }
}

@media (max-width: 900px) {
  .u-section-download .content-right { padding-left: 420px; }
  .u-section-download .image-left-wrap img { max-width: 480px; }
}

@media (max-width: 768px) {
  .u-section-download { padding-top: 120px; }
  .u-section-download .image-left-wrap { position: relative; width: 100%; justify-content: center; height: auto; }
  .u-section-download .image-left-wrap img { max-width: 420px; margin: 0 auto; }
  .u-section-download .content-right { flex: 1 1 100%; padding-left: 0; padding-bottom: 60px; align-items: center; text-align: center; }
  .u-section-download .buttons-wrap { justify-content: center; }
  .u-section-download .store-buttons { align-items: center; }
}

@media (max-width: 520px) {
  .u-section-download .store-buttons a { width: 200px; height: 48px; font-size: 1rem; }
  .u-section-download .qr-card { width: 98px; height: 98px; }
}

/* Pequenos: opção mais limpa, ocultar mão e focar no QR e botões */
@media (max-width: 640px) {
  .u-section-download .image-left-wrap { display: none; }
  .u-section-download { padding-top: 90px; }
}

/* Footer e backlink - contraste e espaçamentos */
.u-footer {
  background: #0f0f0f;
  color: #e5e7eb;
}

.u-footer .u-text, .u-footer p { color: #e5e7eb; }

.u-footer a { color: var(--brand-secondary); text-decoration: none; }
.u-footer a:hover { text-decoration: underline; }

.u-footer .u-sheet-1 { padding-top: 28px; padding-bottom: 28px; }

.u-backlink.u-clearfix.u-grey-80 { background: #0f0f0f; }

/* Footer contato/mapa */
.footer-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.footer-contact .contact-info { color: #e5e7eb; }
.footer-contact .contact-info a { color: var(--brand-secondary); text-decoration: none; }
.footer-contact .contact-info a:hover { text-decoration: underline; }
.footer-contact .map-embed iframe { width: 100%; height: 240px; border: 0; border-radius: var(--radius-md); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

@media (max-width: 768px) {
  .footer-contact { grid-template-columns: 1fr; }
  .footer-contact .map-embed iframe { height: 200px; }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999; /* bem alto para garantir que está acima da navbar */
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loading-video {
  width: 120px;   /* ou 100px se quiser menor ainda */
  height: auto;
  background-color: transparent;
  object-fit: contain;
  border-radius: var(--radius-md); /* opcional */
}

body {
  background-color: #fff; /* ou qualquer cor do fundo principal */
}

.u-section-1 {
  background-image: url("images/intro.mp4");
  background-position: 50% 50%;
}

.u-section-1 .u-sheet-1 {
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.u-section-1 .u-text-1 {
  font-weight: 700;
  font-size: 3rem;
  width: 627px;
  text-transform: uppercase;
  margin: 60px auto 0;
  color: #6E0101
}

.u-section-1 .u-text-2 {
  text-transform: uppercase;
  font-size: 1.25rem;
  letter-spacing: 2px;
  width: 500px;
  margin: 0px auto 0;
  padding: 5px;
  border-radius: var(--radius-md);
}

.centerImage {
  display: block;
  /* Define a imagem como um elemento de bloco */
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  /* Impede que a imagem ultrapasse a largura da div */
  height: 250px;
  /* Mantém a proporção da imagem */
  object-fit: contain;
  /* ou object-fit: cover */
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.18));
}



.u-section-1 .u-btn-1 {
  border-style: solid;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  align-self: center;
  margin: 20px auto 0;
}

/* Estilo para a logo do cabeçalho em dispositivos móveis */
@media (max-width: 450px) {
  .u-logo-image-1 {
    height: 40px !important;
    /* Força um tamanho menor para a logo do cabeçalho */
  }
}

.u-section-1 {
  position: relative;
  /* Para posicionar o vídeo sobre a section */
}

.u-section-1 video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  /* Para o vídeo ficar na frente da section */

}

/* Camada de overlay para legibilidade sobre o vídeo */
.u-section-1::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.20) 40%, rgba(0,0,0,0.10) 100%);
  pointer-events: none;
}

#carousel_0c4b::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 8.5), rgba(255, 255, 255, 0));
  /* Gradiente de branco transparente para branco opaco */
  z-index: 0;
  /* Posiciona o gradiente entre o vídeo e o texto */
}

.u-section-1 .u-text-3 {
  margin: 169px 497px 60px;
}

.u-section-1 .u-btn-2 {
  border-style: none none solid;
  padding: 0;
}

@media (max-width: 1199px) {
  .u-section-1 {
    background-position: 50% 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 8.5), rgba(255, 255, 255, 0));
    /* Gradiente de branco transparente para branco opaco */
    z-index: 0;
    /* Posiciona o gradiente entre o vídeo e o texto */
  }

  .u-section-1 .u-sheet-1 {

    padding-top: 50px;
    min-height: 250px;
  }

  .u-section-1 .u-text-1 {
    margin-top: 140px;
  }

  .u-section-1 .u-text-3 {
    width: auto;
    margin-top: 150px;
    margin-left: 397px;
    margin-right: 397px;
  }
}

@media (max-width: 991px) {
  .u-section-1 .u-sheet-1 {
    min-height: 250px;
  }

  .u-section-1 .u-text-3 {
    margin-top: 74px;
    margin-left: 287px;
    margin-right: 287px;
  }
}

@media (max-width: 767px) {
  .u-section-1 {
    background-position: 0% 27.06%;
    background-size: auto 115%;

  }

  .u-section-1 .u-sheet-1 {
    min-height: 403px;
  }

  .u-section-1 .u-text-1 {
    width: 540px;
  }

  .u-section-1 .u-text-2 {
    width: 540px;
  }

  .u-section-1 .u-text-3 {
    margin-left: 197px;
    margin-right: 197px;
  }
}

@media (max-width: 768px) {

  /* Tablet */
  .centerImage {
    height: 200px;
  }
}

@media (max-width: 575px) {
  .u-section-1 {
    background-position: 0.67% 0%;
    background-size: auto 130%;

  }

  .u-section-1 .u-sheet-1 {
    min-height: 418px;
  }

  .u-section-1 .u-text-1 {
    font-size: 1.875rem;
    margin-top: 74px;
    margin-left: 0;
    margin-right: 0;
    width: 340px;
  }

  .u-section-1 .u-text-2 {
    font-size: 1.125rem;
    width: 340px;
    margin-top: -90px;
  }

  .u-section-1 .u-text-3 {
    margin-left: 97px;
    margin-right: 97px;
  }
}

.u-section-2 {
  background-image: none;
}


.u-section-2 .u-text-1 {
  width: 678px;
  margin: 45px auto 0;
}

.u-section-2 .u-text-2 {
  width: 820px;
  font-size: 3.75rem;
  font-family: Oswald, sans-serif;
  line-height: 66px;
  margin: 0px auto 0;
}

.u-section-2 .u-text-3 {
  font-style: italic;
  width: 678px;
  margin: 20px auto 20px auto;
}

.u-section-2 .u-btn-1 {
  background-image: none;
  border-style: solid;
  font-style: italic;
  padding: 0;
}

.u-section-2 .u-layout-wrap-1 {
  width: 1009px;
  margin: 39px auto 0;
}

.u-section-2 .u-layout-cell-1 {
  min-height: 299px;
}

.u-section-2 .u-container-layout-1 {
  padding: 30px;
}

.u-section-2 .u-text-4 {
  font-weight: 300;
  margin: 0;
}

.u-section-2 .u-text-5 {
  font-style: italic;
  margin: 20px 2px 0 0;
}

.u-section-2 .u-btn-2 {
  background-image: none;
  border-style: none none solid;
  margin-left: 0;
  margin-right: 0;
  letter-spacing: 2px;
  padding: 0;
}

.u-section-2 .u-layout-cell-2 {
  min-height: 299px;
}

.u-section-2 .u-container-layout-2 {
  padding: 30px;
}

.u-section-2 .u-text-6 {
  font-weight: 300;
  margin: 0;
}

.u-section-2 .u-text-7 {
  font-style: italic;
  margin: 20px 2px 0 0;
}

.u-section-2 .u-btn-3 {
  background-image: none;
  border-style: none none solid;
  margin-left: 0;
  margin-right: 0;
  letter-spacing: 2px;
  margin-bottom: 0;
  padding: 0;
}

.u-section-2 .u-image-1 {
  min-height: 597px;
  background-image: url("images/ed-min.jpg");
  background-position: 50% 50%;
}

.u-section-2 .u-container-layout-3 {
  padding: 30px;
}

.u-section-2 .u-layout-cell-4 {
  min-height: 299px;
}

.u-section-2 .u-container-layout-4 {
  padding: 30px;
}

.u-section-2 .u-text-8 {
  font-weight: 300;
  margin: 0;
}

.u-section-2 .u-text-9 {
  font-style: italic;
  margin: 20px 2px 0 0;
}

.u-section-2 .u-btn-4 {
  background-image: none;
  border-style: none none solid;
  margin-left: 0;
  margin-right: 0;
  letter-spacing: 2px;
  padding: 0;
}

.u-section-2 .u-layout-cell-5 {
  min-height: 299px;
}

.u-section-2 .u-container-layout-5 {
  padding: 30px;
}

.u-section-2 .u-text-10 {
  font-weight: 300;
  margin: 0 0 0 1px;
}

.u-section-2 .u-text-11 {
  font-style: italic;
  margin: 20px 1px 0;
}

.u-section-2 .u-btn-5 {
  background-image: none;
  border-style: none none solid;
  letter-spacing: 2px;
  margin: 20px auto 0 1px;
  padding: 0;
}

@media (max-width: 1199px) {
  .u-section-2 .u-sheet-1 {
    min-height: 799px;
  }

  .u-section-2 .u-layout-wrap-1 {
    width: 940px;
  }

  .u-section-2 .u-layout-cell-1 {
    min-height: 278px;
  }

  .u-section-2 .u-text-5 {
    margin-right: 0;
  }

  .u-section-2 .u-layout-cell-2 {
    min-height: 278px;
  }

  .u-section-2 .u-text-7 {
    margin-right: 0;
  }

  .u-section-2 .u-image-1 {
    min-height: 556px;
  }

  .u-section-2 .u-layout-cell-4 {
    min-height: 278px;
  }

  .u-section-2 .u-text-9 {
    margin-right: 0;
  }

  .u-section-2 .u-layout-cell-5 {
    min-height: 278px;
  }

  .u-section-2 .u-text-10 {
    margin-left: 0;
  }

  .u-section-2 .u-text-11 {
    margin-left: 0;
    margin-right: 0;
  }

  .u-section-2 .u-btn-5 {
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .u-section-2 .u-sheet-1 {
    min-height: 976px;
  }

  .u-section-2 .u-text-2 {
    width: 720px;
  }

  .u-section-2 .u-layout-wrap-1 {
    width: 720px;
    margin-bottom: 60px;
  }

  .u-section-2 .u-layout-cell-1 {
    min-height: 100px;
  }

  .u-section-2 .u-layout-cell-2 {
    min-height: 100px;
  }

  .u-section-2 .u-image-1 {
    min-height: 532px;
  }

  .u-section-2 .u-layout-cell-4 {
    min-height: 100px;
  }

  .u-section-2 .u-layout-cell-5 {
    min-height: 100px;
  }
}

@media (max-width: 767px) {
  .u-section-2 .u-sheet-1 {
    min-height: 1267px;
  }

  .u-section-2 .u-text-1 {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .u-section-2 .u-text-2 {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .u-section-2 .u-text-3 {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .u-section-2 .u-layout-wrap-1 {
    width: 540px;
    margin-left: 0;
    margin-right: 0;
  }

  .u-section-2 .u-image-1 {
    min-height: 798px;
  }

  .u-section-2 .u-container-layout-3 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 575px) {
  .u-section-2 .u-sheet-1 {
    min-height: 947px;
  }

  .u-section-2 .u-text-2 {
    line-height: 1.2;
    font-size: 3rem;
  }

  .u-section-2 .u-layout-wrap-1 {
    width: 340px;
  }

  .u-section-2 .u-image-1 {
    min-height: 502px;
  }
}

.u-section-3 {
  background-image: none;

}

.u-section-3 .u-sheet-1 {
  min-height: 611px;
}

.u-section-3 .u-text-1 {
  width: 593px;
  font-weight: 200;
  font-family: Oswald, sans-serif;
  font-size: 3.3rem;
  margin: 60px auto 0;
}

.u-section-3 .u-text-2 {
  width: 593px;
  margin: 20px auto 0;
}

.u-section-3 .u-list-1 {
  grid-template-rows: repeat(1, auto);
  margin-bottom: 60px;
}

.u-section-3 .u-repeater-1 {
  grid-auto-columns: calc(25% - 7.5px);
  grid-template-columns: repeat(4, calc(25% - 7.5px));
  min-height: 245px;
  grid-gap: 10px;
}

.u-section-3 .u-container-layout-1 {
  padding: 30px;
}

.u-section-3 .u-text-3 {
  width: 143px;
  font-size: 60px;
  font-weight: 700;
  margin: 0 auto;
}

.u-section-3 .u-text-4 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.125rem;
  margin: 20px 0 0;
}

.u-section-3 .u-container-layout-2 {
  padding: 30px;
}

.u-section-3 .u-text-5 {
  width: 143px;
  font-size: 60px;
  font-weight: 700;
  margin: 0 auto;
}

.u-section-3 .u-text-6 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.125rem;
  margin: 20px 0 0;
}

.u-section-3 .u-container-layout-3 {
  padding: 30px;
}

.u-section-3 .u-text-7 {
  width: 143px;
  font-size: 60px;
  font-weight: 700;
  margin: 0 auto;
}

.u-section-3 .u-text-8 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.125rem;
  margin: 20px 0 0;
}

.u-section-3 .u-container-layout-4 {
  padding: 30px;
}

.u-section-3 .u-text-9 {
  width: 143px;
  font-size: 60px;
  font-weight: 700;
  margin: 0 auto;
}

.u-section-3 .u-text-10 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.125rem;
  margin: 20px 0 0;
}

@media (max-width: 1199px) {
  .u-section-3 .u-sheet-1 {
    min-height: 568px;
  }

  .u-section-3 .u-list-1 {
    height: auto;
  }
}

@media (max-width: 991px) {
  .u-section-3 .u-sheet-1 {
    min-height: 820px;
  }

  .u-section-3 .u-repeater-1 {
    grid-auto-columns: calc(50% - 5px);
    grid-template-columns: repeat(2, calc(50% - 5px));
  }
}

@media (max-width: 767px) {
  .u-section-3 .u-text-1 {
    width: 540px;
    font-size: 3.3rem;
  }

  .u-section-3 .u-text-2 {
    width: 540px;
  }

  .u-section-3 .u-container-layout-1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-3 .u-container-layout-2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-3 .u-container-layout-3 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-3 .u-container-layout-4 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 575px) {
  .u-section-3 .u-text-1 {
    width: 340px;
    font-size: 3rem;
  }

  .u-section-3 .u-text-2 {
    width: 340px;
  }

  .u-section-3 .u-repeater-1 {
    grid-auto-columns: 100%;
    grid-template-columns: repeat(1, 100%);
  }

  .u-section-3 .u-text-3 {
    font-size: 3rem;
  }

  .u-section-3 .u-text-5 {
    font-size: 3rem;
  }

  .u-section-3 .u-text-7 {
    font-size: 3rem;
  }

  .u-section-3 .u-text-9 {
    font-size: 3rem;
  }
}

.u-section-4 .u-sheet-1 {
  min-height: 797px;
}

.u-section-4 .u-layout-wrap-1 {
  width: 1034px;
  margin: 60px auto;
}

.u-section-4 .u-layout-cell-1 {
  min-height: 712px;
}

.u-section-4 .u-container-layout-1 {
  padding: 30px 50px 30px 30px;
}

.u-section-4 .u-text-1 {
  font-size: 3rem;
  margin: 0;
}

.u-section-4 .u-text-2 {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 38.4px;
  margin: 30px 0 0;
}

.u-section-4 .u-line-1 {
  width: 413px;
  height: 3px;
  transform-origin: left center;
  margin: 30px auto 0 0;
}

.u-section-4 .u-text-3 {
  margin-left: 0;
  font-style: italic;
  margin-right: 0;
  margin-top: 20px;
}

.u-section-4 .u-layout-cell-2 {
  min-height: 713px;
}

.u-section-4 .u-container-layout-2 {
  padding: 30px 30px 30px 50px;
}

.u-section-4 .u-text-4 {
  margin: 0;
}

.u-section-4 .u-text-5 {
  font-style: italic;
  line-height: 1.8;
  margin: 30px 1px 0 0;
}

.u-section-4 .u-btn-1 {
  border-style: solid;
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 30px auto 0 0;
  padding: 6px 31px 6px 30px;
}

.u-section-4 .u-image-1 {
  height: 238px;
  margin-top: 30px;
  margin-bottom: 0;
  margin-left: 0;
}

.u-section-4 .u-text-6 {
  margin: 20px 166px 0 0;
}

.u-section-4 .u-btn-2 {
  border-style: none none solid;
  padding: 0;
}

@media (max-width: 1199px) {
  .u-section-4 .u-sheet-1 {
    min-height: 732px;
  }

  .u-section-4 .u-layout-wrap-1 {
    width: 940px;
  }

  .u-section-4 .u-layout-cell-1 {
    min-height: 647px;
  }

  .u-section-4 .u-text-1 {
    font-size: 2.25rem;
  }

  .u-section-4 .u-layout-cell-2 {
    min-height: 648px;
  }

  .u-section-4 .u-text-5 {
    margin-right: 0;
  }

  .u-section-4 .u-image-1 {
    height: 212px;
    margin-left: initial;
  }

  .u-section-4 .u-text-6 {
    margin-right: 128px;
  }
}

@media (max-width: 991px) {
  .u-section-4 .u-sheet-1 {
    min-height: 185px;
  }

  .u-section-4 .u-layout-wrap-1 {
    width: 720px;
  }

  .u-section-4 .u-layout-cell-1 {
    min-height: 887px;
  }

  .u-section-4 .u-container-layout-1 {
    padding-right: 30px;
  }

  .u-section-4 .u-line-1 {
    width: 344px;
  }

  .u-section-4 .u-layout-cell-2 {
    min-height: 100px;
  }

  .u-section-4 .u-container-layout-2 {
    padding-left: 30px;
  }

  .u-section-4 .u-image-1 {
    height: 163px;
    margin-left: initial;
  }

  .u-section-4 .u-text-6 {
    margin-right: 60px;
  }
}

@media (max-width: 767px) {
  .u-section-4 .u-sheet-1 {
    min-height: 260px;
  }

  .u-section-4 .u-layout-wrap-1 {
    width: 540px;
  }

  .u-section-4 .u-layout-cell-1 {
    min-height: 100px;
  }

  .u-section-4 .u-container-layout-1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-4 .u-container-layout-2 {
    padding-top: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-4 .u-image-1 {
    height: 372px;
    margin-left: initial;
  }
}

@media (max-width: 575px) {
  .u-section-4 .u-layout-wrap-1 {
    width: 340px;
  }

  .u-section-4 .u-line-1 {
    width: 320px;
  }

  .u-section-4 .u-image-1 {
    height: 229px;
    margin-left: initial;
  }

  .u-section-4 .u-text-6 {
    margin-right: 0;
  }
}

.u-section-5 .u-sheet-1 {
  min-height: 898px;
}

/* Valores: forçar texto branco dentro dos cards vermelhos */
.u-section-5 .u-palette-4-base,
.u-section-5 .u-palette-4-base .u-text,
.u-section-5 .u-palette-4-base p,
.u-section-5 .u-palette-4-base a {
  color: #ffffff !important;
}

/* Manter títulos em amarelo dentro dos cards vermelhos */
.u-section-5 .u-palette-4-base h6 { color: #FFCC00 !important; }

.u-section-5 .u-layout-wrap-1 {
  margin-top: 60px;
  margin-bottom: 0;
  margin-left: auto;
}

.u-section-5 .u-layout-cell-1 {
  min-height: 236px;
}

.u-section-5 .u-container-layout-1 {
  padding: 30px 10px;
}

.u-section-5 .u-text-1 {
  font-size: 3.3rem;
  font-weight: 700;
  margin: 0 4px;
}

.u-section-5 .u-layout-cell-2 {
  min-height: 236px;
}

.u-section-5 .u-container-layout-2 {
  padding: 30px;
}

.u-section-5 .u-text-2 {
  margin: 0;
}

.u-section-5 .u-text-3 {
  font-style: italic;
  font-weight: 300;
  line-height: 25.6px;
  margin: 18px 0 0 auto;
}

.u-section-5 .u-layout-cell-3 {
  min-height: 243px;
}

.u-section-5 .u-container-layout-3 {
  padding: 30px 10px;
}

.u-section-5 .u-text-4 {
  font-size: 3.75rem;
  font-weight: 700;
  margin: 0 4px;
}

.u-section-5 .u-layout-cell-4 {
  min-height: 243px;
}

.u-section-5 .u-container-layout-4 {
  padding: 30px;
}

.u-section-5 .u-text-5 {
  margin: 0;
}

.u-section-5 .u-text-6 {
  font-style: italic;
  font-weight: 300;
  line-height: 25.6px;
  margin: 18px 0 0 auto;
}

.u-section-5 .u-layout-cell-5 {
  min-height: 246px;
}

.u-section-5 .u-container-layout-5 {
  padding: 30px 10px;
}

.u-section-5 .u-text-7 {
  font-size: 3.75rem;
  font-weight: 700;
  margin: 0 4px;
}

.u-section-5 .u-layout-cell-6 {
  min-height: 246px;
}

.u-section-5 .u-container-layout-6 {
  padding: 30px;
}

.u-section-5 .u-text-8 {
  margin: 0;
}

.u-section-5 .u-text-9 {
  font-style: italic;
  font-weight: 300;
  line-height: 25.6px;
  margin: 18px 0 0 auto;
}

.u-section-5 .u-image-1 {
  min-height: 725px;
  background-image: url("images/sddd-min.jpg");
  background-position: 50% 50%;
}

.u-section-5 .u-container-layout-7 {
  padding: 30px 10px;
}

.u-section-5 .u-text-10 {
  width: 146px;
  margin: 45px auto 60px;
}

.u-section-5 .u-btn-1 {
  border-style: none none solid;
  padding: 0;
}

@media (max-width: 1199px) {
  .u-section-5 .u-sheet-1 {
    min-height: 771px;
  }

  .u-section-5 .u-layout-wrap-1 {
    margin-left: initial;
  }

  .u-section-5 .u-layout-cell-1 {
    min-height: 195px;
  }

  .u-section-5 .u-text-1 {
    margin-left: 0;
    margin-right: 0;
  }

  .u-section-5 .u-layout-cell-2 {
    min-height: 195px;
  }

  .u-section-5 .u-layout-cell-3 {
    min-height: 200px;
  }

  .u-section-5 .u-text-4 {
    margin-left: 0;
    margin-right: 0;
  }

  .u-section-5 .u-layout-cell-4 {
    min-height: 200px;
  }

  .u-section-5 .u-layout-cell-5 {
    min-height: 203px;
  }

  .u-section-5 .u-text-7 {
    margin-left: 0;
    margin-right: 0;
  }

  .u-section-5 .u-layout-cell-6 {
    min-height: 203px;
  }

  .u-section-5 .u-image-1 {
    min-height: 598px;
  }
}

@media (max-width: 991px) {
  .u-section-5 .u-sheet-1 {
    min-height: 473px;
  }

  .u-section-5 .u-layout-cell-1 {
    min-height: 100px;
  }

  .u-section-5 .u-layout-cell-2 {
    min-height: 100px;
  }

  .u-section-5 .u-layout-cell-3 {
    min-height: 100px;
  }

  .u-section-5 .u-layout-cell-4 {
    min-height: 100px;
  }

  .u-section-5 .u-layout-cell-5 {
    min-height: 100px;
  }

  .u-section-5 .u-layout-cell-6 {
    min-height: 100px;
  }

  .u-section-5 .u-image-1 {
    min-height: 916px;
  }
}

@media (max-width: 767px) {
  .u-section-5 .u-sheet-1 {
    min-height: 773px;
  }

  .u-section-5 .u-container-layout-1 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .u-section-5 .u-container-layout-3 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .u-section-5 .u-container-layout-4 {
    padding-right: 40px;
  }

  .u-section-5 .u-container-layout-5 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .u-section-5 .u-image-1 {
    min-height: 687px;
  }
}

@media (max-width: 575px) {
  .u-section-5 .u-text-4 {
    font-size: 4.5rem;
  }

  .u-section-5 .u-container-layout-4 {
    padding-right: 30px;
  }

  .u-section-5 .u-text-7 {
    font-size: 4.5rem;
  }

  .u-section-5 .u-image-1 {
    min-height: 433px;
  }
}

.u-section-6 .u-sheet-1 {
  min-height: 682px;
}

.u-section-6 .u-layout-wrap-1 {
  margin-top: 60px;
  margin-bottom: 49px;
}

.u-section-6 .u-layout-cell-1 {
  min-height: 562px;
}

.u-section-6 .u-container-layout-1 {
  padding: 30px;
}

.u-section-6 .u-shape-1 {
  width: 198px;
  height: 445px;
  margin: 0 auto 0 60px;
}

.u-section-6 .u-image-1 {
  height: 352px;
  margin-top: -398px;
  margin-bottom: 0;
  margin-right: 0;
}

.u-section-6 .u-text-1 {
  margin: 72px 0 0;
}

.u-section-6 .u-btn-1 {
  border-style: solid;
  padding: 0;
}

.u-section-6 .u-layout-cell-2 {
  min-height: 562px;
}

.u-section-6 .u-container-layout-2 {
  padding: 30px;
}

.u-section-6 .u-slider-1 {
  min-height: 502px;
  margin-top: 0;
  margin-bottom: 0;
}

.u-section-6 .u-carousel-indicators-1 {
  position: absolute;
  width: auto;
  height: auto;
  top: auto;
  bottom: 43px;
}

.u-section-6 .u-container-layout-3 {
  padding: 0 50px 35px;
}

.u-section-6 .u-icon-1 {
  height: 55px;
  width: 55px;
  margin: 0 auto;
}

.u-section-6 .u-text-2 {
  width: 293px;
  font-size: 3rem;
  margin: 26px auto 0;
}

.u-section-6 .u-text-3 {
  font-size: 1.125rem;
  margin: 20px 0 0;
}

.u-section-6 .u-text-4 {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 3px;
  width: 266px;
  margin: 26px auto 0;
}

.u-section-6 .u-text-5 {
  text-transform: uppercase;
  letter-spacing: 2px;
  width: 223px;
  margin: 14px auto 0;
}

.u-section-6 .u-container-layout-4 {
  padding: 0 50px 30px;
}

.u-section-6 .u-icon-2 {
  height: 55px;
  width: 55px;
  margin: 0 auto;
}

.u-section-6 .u-text-6 {
  width: 293px;
  font-size: 3rem;
  margin: 26px auto 0;
}

.u-section-6 .u-text-7 {
  font-size: 1.125rem;
  margin: 20px 0 0;
}

.u-section-6 .u-text-8 {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 3px;
  width: 253px;
  margin: 26px auto 0;
}

.u-section-6 .u-text-9 {
  text-transform: uppercase;
  letter-spacing: 2px;
  width: 223px;
  margin: 14px auto 0;
}

.u-section-6 .u-carousel-control-1 {
  width: 60px;
  height: 60px;
}

.u-section-6 .u-carousel-control-2 {
  width: 60px;
  height: 60px;
}

@media (max-width: 1199px) {
  .u-section-6 .u-sheet-1 {
    min-height: 583px;
  }

  .u-section-6 .u-shape-1 {
    height: 374px;
    margin-left: 42px;
  }

  .u-section-6 .u-image-1 {
    height: 280px;
    margin-top: -327px;
    margin-right: initial;
  }

  .u-section-6 .u-text-1 {
    width: auto;
    margin-top: 73px;
  }

  .u-section-6 .u-layout-cell-2 {
    min-height: 463px;
  }
}

@media (max-width: 991px) {
  .u-section-6 .u-sheet-1 {
    min-height: 705px;
  }

  .u-section-6 .u-layout-wrap-1 {
    margin-bottom: 60px;
  }

  .u-section-6 .u-layout-cell-1 {
    min-height: 585px;
  }

  .u-section-6 .u-shape-1 {
    width: 127px;
    height: 307px;
    margin-left: 29px;
  }

  .u-section-6 .u-image-1 {
    height: 233px;
    margin-top: -270px;
    margin-right: initial;
  }

  .u-section-6 .u-text-1 {
    margin-top: 66px;
  }

  .u-section-6 .u-layout-cell-2 {
    min-height: 585px;
  }

  .u-section-6 .u-slider-1 {
    min-height: 521px;
    height: auto;
  }

  .u-section-6 .u-carousel-indicators-1 {
    bottom: 14px;
  }

  .u-section-6 .u-container-layout-3 {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
  }

  .u-section-6 .u-container-layout-4 {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 767px) {
  .u-section-6 .u-sheet-1 {
    min-height: 1276px;
  }

  .u-section-6 .u-layout-wrap-1 {
    margin-bottom: -22px;
  }

  .u-section-6 .u-layout-cell-1 {
    min-height: 612px;
  }

  .u-section-6 .u-container-layout-1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-6 .u-shape-1 {
    width: 262px;
    height: 525px;
    margin-left: 60px;
  }

  .u-section-6 .u-image-1 {
    height: 403px;
    margin-top: -464px;
    margin-right: initial;
  }

  .u-section-6 .u-text-1 {
    margin-top: 87px;
  }

  .u-section-6 .u-layout-cell-2 {
    min-height: 520px;
  }

  .u-section-6 .u-container-layout-2 {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 17px;
  }

  .u-section-6 .u-slider-1 {
    min-height: 450px;
  }

  .u-section-6 .u-container-layout-3 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-6 .u-container-layout-4 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 575px) {
  .u-section-6 .u-sheet-1 {
    min-height: 1186px;
  }

  .u-section-6 .u-layout-wrap-1 {
    margin-top: 14px;
    margin-bottom: 14px;
  }

  .u-section-6 .u-layout-cell-1 {
    min-height: 508px;
  }

  .u-section-6 .u-shape-1 {
    width: 159px;
    height: 357px;
    margin-left: 58px;
  }

  .u-section-6 .u-image-1 {
    height: 261px;
    margin-top: -309px;
    margin-right: initial;
  }

  .u-section-6 .u-layout-cell-2 {
    min-height: 558px;
  }

  .u-section-6 .u-slider-1 {
    min-height: 511px;
  }

  .u-section-6 .u-text-2 {
    font-size: 1.875rem;
  }

  .u-section-6 .u-text-6 {
    font-size: 1.875rem;
  }
}

.u-section-7 .u-sheet-1 {
  min-height: 628px;
}

.u-section-7 .u-layout-wrap-1 {
  width: 1079px;
  margin: 0 auto;
}

.u-section-7 .u-image-1 {
  min-height: 628px;
  background-image: url("images/pexels-photo-6386959.jpeg");
  background-position: 50% 50%;
}

.u-section-7 .u-container-layout-1 {
  padding: 30px 30px 19px;
}

.u-section-7 .u-layout-cell-2 {
  min-height: 628px;
}

.u-section-7 .u-container-layout-2 {
  padding: 30px;
}

.u-section-7 .u-form-1 {
  margin: 0;
}

.u-section-7 .u-label-1 {
  font-weight: 700;
}

.u-section-7 .u-form-group-2 {
  margin-left: 0;
}

.u-section-7 .u-label-2 {
  font-weight: 700;
}

.u-section-7 .u-form-group-3 {
  margin-left: 0;
}

.u-section-7 .u-label-3 {
  font-weight: 700;
}

.u-section-7 .u-form-group-4 {
  margin-left: 0;
}

.u-section-7 .u-btn-1 {
  background-image: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-style: none;
}

@media (max-width: 1199px) {
  .u-section-7 .u-sheet-1 {
    min-height: 547px;
  }

  .u-section-7 .u-layout-wrap-1 {
    width: 940px;
  }

  .u-section-7 .u-image-1 {
    min-height: 547px;
  }

  .u-section-7 .u-layout-cell-2 {
    min-height: 547px;
  }
}

@media (max-width: 991px) {
  .u-section-7 .u-sheet-1 {
    min-height: 441px;
  }

  .u-section-7 .u-layout-wrap-1 {
    margin-right: initial;
    margin-left: initial;
    width: auto;
  }

  .u-section-7 .u-image-1 {
    min-height: 419px;
  }

  .u-section-7 .u-container-layout-1 {
    padding-top: 0;
  }

  .u-section-7 .u-layout-cell-2 {
    min-height: 100px;
  }
}

@media (max-width: 767px) {
  .u-section-7 .u-sheet-1 {
    min-height: 888px;
  }

  .u-section-7 .u-image-1 {
    min-height: 629px;
  }

  .u-section-7 .u-container-layout-1 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .u-section-7 .u-container-layout-2 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 575px) {
  .u-section-7 .u-sheet-1 {
    min-height: 610px;
  }

  .u-section-7 .u-image-1 {
    min-height: 511px;
  }
}

.u-section-8 .u-sheet-1 {
  min-height: 400px;
}

@media (max-width: 1199px) {
  .u-section-8 .u-sheet-1 {
    min-height: 350px;
  }

  .u-section-8 .u-layout-wrap-1 {
    width: 940px;
  }

  .u-section-8 .u-layout-cell-1 {
    min-height: 300px;
  }

  .u-section-8 .u-container-layout-1 {
    padding: 20px;
  }

  .u-section-8 .u-text-1 {
    font-size: 2.5rem;
  }

  .u-section-8 .u-text-2 {
    font-size: 1.25rem;
  }

  .u-section-8 .u-btn-1 {
    padding: 10px 20px;
  }
}


/* Navbar e header refinados */
.u-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: transparent;
  box-shadow: none;
  transition: background .25s var(--ease-smooth), box-shadow .25s var(--ease-smooth), backdrop-filter .25s var(--ease-smooth);
}
.u-header.is-scrolled {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
/* Garantir que o container interno do header não aplique fundo/borda */
.u-header .u-sheet,
.u-header .u-sheet-1 {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* NAVBAR minimalista */
.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  transition: background .25s var(--ease-smooth), box-shadow .25s var(--ease-smooth), backdrop-filter .25s var(--ease-smooth), border-color .25s var(--ease-smooth);
}

.u-header.is-scrolled .navbar { background: transparent; box-shadow: none; backdrop-filter: none; border: 0; }

.navbar-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 6px 10px;
  background: rgba(245, 247, 254, 0.85);
  border: 1px solid #e8edf9;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.08);
  backdrop-filter: blur(8px);
}

.navbar-links a {
  display: inline-block;
  padding: 8px 12px;
  color: #111827;
  text-decoration: none;
  font: 700 14px/1.1 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Open Sans";
  border-radius: var(--radius-sm);
  transition: background-color .15s ease, color .15s ease;
}
.navbar-links a.btn-login {
  background: #6e0101;
  color: #fff;
}
.navbar-links a.btn-login:hover { background: #7a0a0a; color: #fff; }

.navbar-links a:hover,
.navbar-links a:focus-visible {
  background: rgba(17,24,39,0.06);
  outline: none;
}

/* Burger */
.nav-burger {
  display: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-right: 10px;
}
.nav-burger span { display: block; width: 20px; height: 2px; background: #0f172a; margin: 3px 0; transition: transform .2s ease, opacity .2s ease; }

.nav-toggle { display: none; }

/* Responsivo */
@media (max-width: 768px) {
  .navbar { justify-content: space-between; padding: 10px 14px; }
  .nav-burger { display: inline-flex; }
  .navbar-links {
    position: absolute;
    top: 58px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border-radius: var(--radius-lg);
    background: rgba(245,247,254,0.98);
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .navbar-links a { padding: 12px 10px; border-radius: 8px; }
  .nav-toggle:checked ~ .nav-burger { background: rgba(15,23,42,0.06); }
  .nav-toggle:checked ~ .navbar-links { max-height: 420px; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
}

@keyframes flutuar {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

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

.centerImage {
  display: block;
  margin: 0 auto;
}

.typewriter {
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid aliceblue;
  width: 0;
  animation: typing 3s steps(30, end) forwards, blink-caret 0.75s step-end infinite;
  background-color: #6E0000;
  color: aliceblue;
  font-size: 1.5rem;
  padding: 10px;
  display: inline-block;
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink-caret {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: aliceblue;
  }
}

/* Estilo base */
/* remove estilos antigos da navbar */

/* Scroll reveal utilitários */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease-smooth), transform .6s var(--ease-smooth); }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* Microinterações extras */
.u-btn-1, .u-btn-2, .btn, a[class*="u-btn"], .download-cta .badges a {
  transition: transform .18s var(--ease-smooth), box-shadow .18s var(--ease-smooth);
}
.u-btn-1:hover, .u-btn-2:hover, .btn:hover, a[class*="u-btn"]:hover, .download-cta .badges a:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(17,24,39,0.12); }

/* Values section */
.values-section { padding: 60px 16px; background: var(--surface); }
.values-shell { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 28px; align-items: start; }
.values-title { font-family: Oswald, sans-serif; color: var(--brand-primary); font-size: 2.4rem; margin: 0 0 14px; text-align: center; grid-column: 1 / -1; }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.value-card { background: #6E0000; color: #fff; border-radius: var(--radius-lg); padding: 18px 18px 16px; box-shadow: 0 8px 22px rgba(110,0,0,.15); display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: center; }
.value-badge { background: #fff; color: #6E0000; width: 36px; height: 36px; border-radius: var(--radius-pill); display: inline-grid; place-items: center; font-weight: 800; box-shadow: 0 2px 8px rgba(0,0,0,.12); }
.value-card h3 { margin: 0; font-size: 1.1rem; color: #FFCC00; }
.value-card p { margin: 2px 0 0; color: #fff; opacity: .95; grid-column: 2; }
.values-media { display: flex; justify-content: center; align-items: center; background: #ffffff; padding: 10px; border-radius: var(--radius-xl); box-shadow: 0 10px 28px rgba(0,0,0,.14); }
.values-image { width: 500px; max-width: 532px; height: 500px; object-fit: cover; border-radius: var(--radius-lg); margin: 0; display: block; }

@media (max-width: 1200px) { .values-image { width: 460px; height: 460px; } }
@media (max-width: 1040px) { .values-image { width: 420px; height: 420px; } }
@media (max-width: 980px) { .values-shell { grid-template-columns: 1fr; } .values-media { order: -1; } .values-title { text-align: center; } .values-image { width: 100%; height: auto; } }
@media (prefers-reduced-motion: reduce) { .value-card { transition: none; } }