* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.scroll-acoes::-webkit-scrollbar {
  width: 6px;
  display: block;
}

.scroll-acoes::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.scroll-acoes::-webkit-scrollbar-thumb {
  background: #ea580c;
  border-radius: 10px;
}

.scroll-acoes::-webkit-scrollbar-thumb:hover {
  background: #c2410c;
}

.scroll-acoes {
  scrollbar-width: thin;
  scrollbar-color: #ea580c #f1f1f1;
}

@font-face {
  font-family: "Thunder";
  src: url("fonts/Thunder-BoldLC.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thunder";
  src: url("fonts/Thunder-ExtraBoldLC.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FilsionPro";
  src: url("fonts/FilsonProRegular.otf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

body {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #fcbc2d;
  color: #111827;
  position: relative;
}

.background {
  position: fixed;
  inset: 0;
  top: 493px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px;
  z-index: -9999;
  pointer-events: none;
  line-height: 200px;
  /* contain: layout style paint; */
}

.background h1 {
  font-family: "Thunder";
  color: #fcbb2d;
  font-size: 19rem;
  -webkit-text-stroke: 4px #b4530940;
  line-height: 296px;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 250px;
  max-height: 500px;
  background: url(images/novo-bg-hero.png) center/cover no-repeat;
  z-index: 999;
  margin-bottom: 13rem;
}

.hero__container {
  display: flex;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}

#lettering {
  height: 12rem;
  margin-left: 3rem;
}

.hero__title {
  position: absolute;
  display: flex;
  gap: 20px;
  flex-direction: column;
  margin: 0 auto;
  z-index: 9999;
  justify-content: center;
  align-items: center;
  left: 5%;
  right: 5%;
  bottom: -140px;
}

.tile-1,
.tile-2 {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin: -10px;
  width: 77%;
}
.tile-1 {
  background: #148cf5;
  padding: 4px 17px 2px 16px;
}
.tile-2 {
  background: #ea580c;
  padding: 4px 16px 0px 16px;
}
.tile-1 h1,
.tile-2 h1 {
  font-family: "Thunder";
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.tile-1 h1 {
  font-size: 6rem;
}
.tile-2 h1 {
  font-size: 6rem;
}

.subtitle-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 924px;
  margin: 15rem auto 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}
.subtitle {
  font-family: "FilsionPro", sans-serif;
  color: #fff;
  font-weight: bold;
  font-size: 1.75rem;
  text-shadow: 0 2px 6px rgb(182, 64, 0);
}

.parceria {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

/* 1. Definimos a "coreografia" da animação */
@keyframes pulsar {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05); /* Expande levemente */
  }
  100% {
    transform: scale(1); /* Volta ao normal */
  }
}

.btn-parceria {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  animation: pulsar 3s ease-in-out infinite;
  will-change: transform;
}

.btn-parceria img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
}

/* ========================================
   MEDIA QUERIES - MOBILE (até 640px)
   ======================================== */
@media (max-width: 639px) {
  .hero {
    margin-bottom: 50px;
    max-height: 272px;
  }

  .hero__container {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    position: relative;
    width: 100%;
  }

  #chico {
    max-width: 274px;
    flex-shrink: 0;
    margin-left: -50px !important;
  }

  #lettering {
    height: 4.5rem;
    margin: 0;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .form__header img {
    max-width: 250px !important;
  }

  .hero__title {
    position: static;
    gap: 0;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .tile-1,
  .tile-2 {
    width: 100%;
    margin: 0;
    justify-content: center;
  }

  .tile-1 h1 {
    font-size: 2.2rem;
    text-align: center;
  }
  .tile-2 h1 {
    font-size: 2.4rem;
    text-align: center;
  }

  .subtitle-container {
    flex-direction: column-reverse;
    align-items: center;
    margin: 7rem auto 1.5rem;
    gap: 1rem;
    justify-content: center;
  }

  .subtitle {
    text-align: center;
    font-size: 1.55rem;
    text-shadow: 0 2px 6px rgb(182, 64, 0);
  }

  .form__header {
    display: initial !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    text-shadow: 0 2px 6px rgb(182, 64, 0);
  }

  .form__header p {
    font-family: "FilsionPro", sans-serif;
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem !important;
    max-width: 25rem !important;
    margin-top: 55px !important;
  }
}

/* ========================================
   MEDIA QUERIES - TABLET (640px - 1023px)
   ======================================== */
@media (min-width: 640px) and (max-width: 1023px) {
  /* Hero Section */
  .hero {
    margin-bottom: 80px;
  }

  .hero__title {
    bottom: -60px;
    gap: 25px;
  }

  .tile-1 h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
  }
  .tile-2 h1 {
    font-size: clamp(3rem, 6vw, 5rem);
  }

  #lettering {
    height: 6.2rem;
    margin: 0;
    position: absolute;
    right: 1.5rem;
    top: 62%;
    transform: translateY(-50%);
    z-index: 10;
  }
  .subtitle-container {
    flex-direction: column-reverse;
    align-items: center;
    margin: 7rem auto 1.5rem;
    gap: 1rem;
    justify-content: center;
  }

  /* Footer */
  .footer {
    margin-top: 32px;
  }
  .footer-img-1 {
    width: 50%;
    left: 40px;
    top: 86px;
  }
  .footer-img-2 {
    width: 50%;
    position: absolute;
    right: 14px;
    top: 10px;
  }
  .footer-img-3 {
    width: 100%;
  }

  /* Mapa */
  #mapa-roraima {
    max-width: 100%;
    height: 500px;
  }
}

/* CONTAINER GERAL */
.mapa {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto 1rem auto;
  padding: 1rem;
  z-index: 1;
  contain: layout style;
}

.selo {
  position: absolute;
  bottom: 90px;
  left: 30px;
}
.selo img {
  width: 108%;
  max-width: 122px;
  height: 89px;
}

/* CARD LATERAL */
.mapa-card {
  background: #f9fafb;
  border-radius: 24px;
  padding: 1.75rem 2rem;
  width: 100%;
  max-width: 340px;
  position: relative;
  overflow: hidden;
}

/* MAPA */
#mapa-roraima {
  width: 100%;
  max-width: 840px;
  height: 840px;
  /* overflow: visible;
  contain: content; */
}

#mapa-roraima canvas {
  filter: drop-shadow(16px 18px 0 rgba(234, 88, 12, 0.95))
    drop-shadow(0 0 5px rgba(156, 55, 0, 0.589));
  border-radius: 24px;
  will-change: filter;
}

@media (max-width: 768px) {
  .mapa {
    flex-direction: column;
  }

  #mapa-roraima {
    max-width: 100%;
    height: 400px;
  }
}

.card-chip {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #facc15;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #b45309;
  margin-bottom: 1.25rem;
}

.card-label-top {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.mapa-card h1 {
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b45309;
  margin-bottom: 0.75rem;
}

.card-subtitle {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.card-total {
  font-size: 1.6rem;
  font-weight: 800;
  color: #dc2626;
  margin-bottom: 1.25rem;
}

.card-list {
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-list-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.card-list-item span {
  color: #6b7280;
}

.card-list-item strong {
  color: #111827;
}

.map-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  padding: 8px;
}

/* --- formulario  */

.formulario {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 956px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 1rem;
}

.form__header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: start;
  margin: 1rem;
}

.form__header img {
  width: 100%;
  max-width: 275px;
}

.form__header p {
  font-family: "FilsionPro", sans-serif;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  max-width: 230px;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .form__header {
    margin: 4rem 0;
  }
  .form__header p {
    margin-top: 2rem;
    font-size: 2.2rem;
    min-width: 420px;
    letter-spacing: -1px;
  }
}

.sugestao-form {
  width: 100%;
  padding: 1.5rem 1.25rem 2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 33px rgba(0, 0, 0, 0.3);
}

.field-group {
  margin-bottom: 0.8rem;
}

.sugestao-form input[type="text"],
.sugestao-form input[type="email"],
.sugestao-form input[type="tel"] {
  width: 100%;
  border-radius: 999px;
  border: 2px solid #fff;
  padding: 0.8rem 0.9rem;
  background: transparent;
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  outline: none;
  transition: border-color 0.2s;
}

.sugestao-form input[type="text"]:focus,
.sugestao-form input[type="email"]:focus,
.sugestao-form input[type="tel"]:focus {
  border-color: #f97316;
}

.sugestao-form textarea {
  width: 100%;
  border-radius: 20px;
  border: 2px solid #fff;
  padding: 0.9rem 1rem;
  background: #fff;
  color: #f97316;
  font-size: 0.8rem;
  text-transform: uppercase;
  resize: none;
  min-height: 140px;
  outline: none;
  transition: border-color 0.2s;
}

.sugestao-form textarea:focus {
  border-color: #f97316;
}

.sugestao-form input::placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.sugestao-form textarea::placeholder {
  color: #e5e7eb;
}

/* LGPD */
.lgpd {
  margin: 0.8rem 0 1.2rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.4;
}

.lgpd input[type="checkbox"] {
  margin-top: 2px;
}

.lgpd span {
  text-decoration: underline;
  cursor: pointer;
  text-align: center;
}

/* Botão ENVIAR */
.btn-enviar {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  background: #f97316;
  box-shadow: 0 10px 18px rgba(194, 65, 12, 0.7);
  cursor: pointer;
  letter-spacing: 0.08em;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-enviar:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(194, 65, 12, 0.8);
}

.btn-enviar:active {
  transform: translateY(0);
}

.cta-container {
  display: flex;
  margin-top: 28px;
}

.cta-container img {
  width: 100%;
}

.footer {
  position: relative;
  display: flex;
  margin: 0 auto;
  max-width: 840px;
  padding: 1rem 1rem 0 1rem;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
}
.footer-img-1 {
  width: 37%;
  left: 14px;
  top: 80px;
  position: absolute;
  z-index: 10;
}
.footer-img-2 {
  width: 60%;
}
.footer-img-3 {
  width: 20%;
}

/* ========================================
   MEDIA QUERIES - DESKTOP (1024px+)
   ======================================== */
@media (min-width: 1025px) {
  /* Background */
  .background {
    top: 1180px;
  }

  .background h1 {
    font-size: 28rem;
    -webkit-text-stroke: 4px #b4530940;
    line-height: 350px;
  }

  /* Hero Container */
  #chico {
    width: 116%;
    height: 100%;
    min-height: 250px;
    max-height: 506px;
    max-width: 500px;
  }

  #lettering {
    height: 16rem;
    margin-right: 22rem;
  }

  .hero__container {
    justify-content: space-between;
  }

  /* Hero Title Section */
  .hero {
    margin-bottom: 100px;
  }

  /* .hero__title {
    top: 24rem;
    gap: 38px;
    left: 10%;
    right: 10%;
  } */

  /* Tiles */
  .tile-1 {
    padding: 16px 16px 0px 16px;
    margin: -23px;
  }

  .tile-2 {
    padding: 16px 16px 0px 16px;
    margin: -23px;
  }

  .tile-1 h1 {
    font-size: 7rem;
    font-weight: 700;
    letter-spacing: 4px;
  }

  .tile-2 h1 {
    font-weight: 700;
    font-size: 6.375rem;
    letter-spacing: 4px;
  }

  /* Subtitle */
  .subtitle {
    max-width: 795px;
    font-size: 2.2em;
  }

  /* Mapa e Selo */
  .mapa {
    margin: 0px auto 16px auto;
  }

  .selo {
    bottom: 70px;
    left: 232px;
  }

  .selo img {
    width: 100%;
    max-width: 184px;
    height: 209px;
  }

  /* Footer */
  .footer {
    margin-top: 32px;
  }

  .footer-img-1 {
    width: 50%;
    left: 40px;
    top: 86px;
  }
  .footer-img-2 {
    width: 50%;
    position: absolute;
    right: 14px;
    top: 10px;
  }
  .footer-img-3 {
    width: 100%;
  }
}

.form-status {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  text-align: center;
}

.form-status--success {
  color: #16a34a;
  text-align: center;
}

.form-status--error {
  color: #dc2626;
  text-align: center;
}

/* ========================================
   MEDIA QUERIES - DESKTOP (1024px+)
   ======================================== */
@media (min-width: 1367px) {
  /* Background */
  .background {
    top: 1180px;
  }

  .background h1 {
    font-size: 28rem;
    -webkit-text-stroke: 4px #b4530940;
    line-height: 350px;
  }

  /* Hero Container */
  #chico {
    width: 116%;
    height: 100%;
    min-height: 250px;
    max-height: 506px;
    max-width: 500px;
  }

  #lettering {
    height: 16rem;
    margin-right: 22rem;
  }

  .hero__container {
    justify-content: space-between;
  }

  /* Hero Title Section */
  .hero {
    margin-bottom: 100px;
  }

  /* .hero__title {
    top: 31rem;
    gap: 38px;
    left: 10%;
    right: 10%;
  } */

  /* Tiles */
  .tile-1 {
    padding: 16px 16px 0px 16px;
    margin: -23px;
  }

  .tile-2 {
    padding: 16px 16px 0px 16px;
    margin: -23px;
  }

  .tile-1 h1 {
    font-size: 7rem;
    font-weight: 700;
    letter-spacing: 4px;
  }

  .tile-2 h1 {
    font-weight: 700;
    font-size: 6.375rem;
    letter-spacing: 4px;
  }

  /* Subtitle */
  .subtitle {
    max-width: 795px;
    font-size: 2.2em;
  }

  /* Mapa e Selo */
  .mapa {
    margin: 0px auto 16px auto;
  }

  .selo {
    bottom: 70px;
    left: 232px;
  }

  .selo img {
    width: 100%;
    max-width: 184px;
    height: 209px;
  }

  /* Footer */
  .footer {
    margin-top: 32px;
  }

  .footer-img-1 {
    width: 50%;
    left: 40px;
    top: 86px;
  }
  .footer-img-2 {
    width: 50%;
    position: absolute;
    right: 14px;
    top: 10px;
  }
  .footer-img-3 {
    width: 100%;
  }
}

/* @media (min-width: 1400px) {
  .hero__title {
    top: 29rem;
  }
} */

.form-status {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  text-align: center;
}

.form-status--success {
  color: #16a34a;
  text-align: center;
}

.form-status--error {
  color: #dc2626;
  text-align: center;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}

.modal-card-container {
  position: relative;
  background: #f9fafb;
  border-radius: 24px;
  padding: 16px 20px;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.35);
  max-width: 380px;
  width: 90%;
  animation: fadeIn 0.3s ease-out;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #6b7280;
  z-index: 1001;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
