@font-face {
  font-family: 'MonumentExtended';
  src: url('fonts/MonumentExtended-Ultrabold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

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

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

:root {
  --roxo: #381564;
  --amarelo: #ffe300;
  --branco: #ffffff;
  --cinza-claro: #f5f5f5;
  --verde: #008000;
  color-scheme: light;
}

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

html, body {
  overflow-x: hidden !important;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--branco);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'MonumentExtended', sans-serif;
  color: var(--roxo);
  text-transform: uppercase;
}

.projetos-titulo {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1rem;
}

.green {
    color: var(--verde) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); !important;
}

.purple {
    color: var(--roxo) !important;
}

.yellow {
    color: var(--amarelo) !important;
}

header {
  background-color: var(--branco);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #ddd;
}

header h1 img, .footer-left img {
  width: 17.5%;
  height: auto;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 1rem;
}

.btn-header {
  background-color: var(--amarelo);
  color: var(--roxo);
  text-decoration: none;
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
}

.btn-header:hover {
  background-color: var(--roxo);
  color: var(--branco);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--roxo);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
  display: flex;
  gap: 1rem;
}

.hero {
  background-color: #381564;
  background-image: url('img/banner.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: image-set(
    url('img/banner.avif') type('image/avif'),
    url('img/banner.webp') type('image/webp'),
    url('img/banner.png') type('image/png')
  );
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #fff;
  padding: 6rem 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  min-height: 100vh;
  width: 100%;
}

.hero-left {
  flex: 1;
  min-width: 300px;
  max-width: 700px;
  background-color: rgba(0, 0, 0, 0.25);
  padding: 2rem;
  border-radius: 12px;
}

.hero-left h1 {
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--branco);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-left p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-left span.yellow, .hero-left p strong.yellow {
  color: var(--amarelo);
  font-weight: 700;
}

.hero-right {
  flex: 1;
  min-width: 300px;
  max-width: 700px;
}

.hero-right img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  object-fit: cover;
  display: block;
}

.hero .cta-button, .videos .cta-button {
  background-color: var(--roxo);
  color: var(--branco);
}

.hero .cta-button:hover{
  background-color: var(--amarelo);
  color: var(--roxo);    
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--amarelo);
  color: var(--roxo);
  border-radius: 6px;
  border: none;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.cta-button:hover {
  background-color: var(--roxo);
  color: var(--branco);    
}

.highlight {
  padding: 6rem 3rem;
  background-color: var(--cinza-claro);
  text-align: center;
}

.highlight h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.highlight p {
  max-width: 700px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

.metrics {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.metric {
  text-align: center;
}

.metric h3 {
  font-size: 2.2rem;
  color: var(--roxo);
  text-transform: lowercase;
}

.metric p {
  font-size: 1rem;
  color: #333;
}

.highlight .cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--amarelo);
  color: var(--roxo);
  border-radius: 6px;
  border: none;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.highlight .cta-button:hover {
  background-color: var(--roxo);
  color: var(--branco);    
}

.videos {
  background-color: var(--amarelo);
  padding: 6rem 3rem;
  text-align: center;
}

.videos h2 {
  color: var(--roxo);
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.video-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.video-box {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  width: 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.video-box img {
  height: 250px;
  border-radius: 8px;
}

.video-box p {
  line-height: 1.5;
  max-width: 250px;
  margin: 0 auto;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding: 0 10px;
  margin-top: -30px;
}

.parque {
    background: var(--branco);
}

.flama{
    background: #ff6c00;
}

.igt{
    background: #009fe3;
}

.parque a {
    text-decoration: none;
    color: #3a6337;
}

.flama a, .igt a {
    text-decoration: none;
    color: var(--branco);
}

.videos .cta-button:hover {
    background: var(--amarelo);
    color: var(--roxo);
    border:2px solid var(--roxo);
    margin-top:-2px;
    margin-bottom: -2px;
}

.roadmap {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.roadmap h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--roxo);
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.roadmap-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.roadmap .step {
  background-color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
  cursor: pointer;
}

.roadmap .step:hover {
  transform: translateY(-4px);
}

.roadmap .step h3 {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--roxo);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.roadmap .step p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
}

.roadmap-cta {
  margin-top: 3rem;
}

.roadmap .cta-button {
  background-color: var(--amarelo);
  color: var(--roxo);
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.roadmap .cta-button:hover {
  background-color: var(--roxo);
  color: var(--branco);
}

.estrategia-imposto {
  background-color: var(--roxo);
  color: #fff;
  padding: 3rem 1rem;
  text-align: center;
  background-image: image-set(
    url('img/estrategia.avif') type('image/avif'),
    url('img/estrategia.webp') type('image/webp'),
    url('img/estrategia.png') type('image/png')
  );
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 35% auto;
}

.estrategia-conteudo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.estrategia-imagem {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}

.estrategia-imagem img {
  width: 100%;
  border-radius: 1rem;
}

.estrategia-texto {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.estrategia-texto h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--branco);
}

.estrategia-texto ul {
  text-align: left;
  max-width: 600px;
  margin: 1.5rem auto;
  font-size: 1rem;
  line-height: 1.6;
  padding-left: 0;
  margin-left: 20px;
}

.estrategia-texto li {
  margin-bottom: 0.8rem;
}

.estrategia-texto .cta-button:hover {
  border:2px solid var(--branco);
  margin: -2px 0;
}

.patrocinadores {
  text-align: center;
  padding: 3rem 1rem;
  background-color: #fff;
}

.patrocinadores h2 {
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--roxo);
  margin-bottom: 2rem;
}

.logos-patrocinadores {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2rem;
}

.logos-patrocinadores img {
  height: 90px;
}

.equity-section {
  background-color: var(--cinza-claro);
  padding: 4rem 2rem;
  text-align: center;
}

.equity-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--roxo);
  margin-bottom: 0.5rem;
}

.equity-section h3 {
  font-size: 1.025rem;
  font-weight: bold;
  color: var(--verde);
  margin-bottom: 2rem;
}

.equity-section p strong {
  color: var(--roxo);    
}

.equity-section p {
  max-width: 800px;
  margin: 0 auto 1rem;
  font-size: 1rem;
  text-align: left;
  color: #111;
}

.parceiros,
.formulario,
footer {
  padding: 3rem 1rem;
  text-align: center;
}

.form-section {
  background-color: var(--branco);
  color: var(--roxo);
  font-weight: 600;
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.form-section input,
.form-section select {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.form-section h2 {
    text-align: center;
}

.form-section .resultado {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 1rem 0;
  text-align: center;
}

.form-section p strong {
  color: var(--roxo);
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--amarelo);
}

.btn-conversao {
  background-color: var(--amarelo);
  color: var(--roxo);
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-conversao:hover {
  background-color: var(--roxo);
  color: var(--branco);
}

.faq {
  background-color: var(--roxo);
  color: #fff;
  padding: 3rem 1rem;
  text-align: center;
}

.faq h2 {
  color: var(--branco);
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: bold;
  text-transform: uppercase;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-container details {
  margin-bottom: 1rem;
  border: 2px solid #fff;
  padding: 1rem;
  border-radius: 5px;
}

.faq-container summary {
  cursor: pointer;
  font-weight: bold;
  color: #fff;
}

.faq-container p {
  margin-top: 0.5rem;
  color: var(--branco);
}

.faq .cta-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.faq .cta-button:hover {
  border:2px solid var(--branco);
  margin: -2px 0;
}

footer {
  background-color: var(--roxo);
  color: var(--branco);
  padding: 3rem 1rem;
  text-align: center;
}

.social-icons a {
  margin: 0 0.5rem;
  display: inline-block;
  color: var(--branco);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--amarelo);
}

.footer-logo {
  font-size: 2rem;
  font-weight: bold;
  color: #e63946;
}

.footer-divider {
  border-top: 1px solid #e63946;
  margin: 2rem auto;
  width: 90%;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--branco);
}

.footer-left {
  text-align: left;
  color: var(--roxo);
  font-size: 2rem;
  font-weight: bold;
}

.footer-right {
  display: flex;
  gap: 0.5rem;
}

.footer-right a {
  padding: 0.5rem;
  border-radius: 5px;
  display: inline-block;
}

.footer-right img {
  height: 20px;
  width: 20px;
}

.footer-bottom {
  margin-top: 2rem;
  color: var(--branco);
  font-size: 0.9rem;
  font-weight: bold;
}

#cnpj {
    scroll-margin-top: 150px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--verde);
  color: white;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
  transition: transform 0.3s ease;
  min-width: 30px;
  min-height: 45px;
}

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

.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: var(--roxo);
  color: white;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
  display: none;
  transition: transform 0.3s ease;
}

.scroll-top:hover {
  transform: scale(1.1);
}

.video-modal {
  display: none; 
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
}

.video-modal-content {
  position: relative;
  margin: 5% auto;
  width: 80%;
  max-width: 800px;
}

.video-modal-content iframe {
  width: 100%;
  height: 450px;
}

.close-video {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 30px;
  color: var(--branco);
  cursor: pointer;
  background: var(--roxo);
  border-radius: 20%;
  padding: 5px 10px;
}

/* Breakpoint recomendado: abaixo de 768px (tablets e smartphones) */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background: var(--branco);
    position: absolute;
    top: 70px; /* ajusta conforme altura do header */
    right: 10px;
    width: 60%;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    margin: 0.5rem 0;
  }
  
  header {
    flex-direction: column;
    padding: 1rem;
  }
  
  header h1 {
      width: 100%;
  }

  header h1 img {
    width: 30%; /* reduz para telas menores */
  }

  .btn-header {
    padding: 0.75rem 1.5rem;
    font-size: 14px;
    margin: 0.25rem 0;
  }

  .hero {
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 1rem;
    text-align: center;
  }

  .hero-left, .hero-right {
    max-width: 100%;
    min-width: 100%;
  }

  .hero-left {
    padding: 1.5rem;
  }

  .hero-left h1 {
    font-size: 1.4rem;
  }

  .hero-left p {
    font-size: 1rem;
  }
  
  .projetos-titulo {
      padding: 0;
  }
  
  .projetos-titulo h2 {
      font-size: 1.3rem;
  }
  
  .highlight p {
      font-size: 1rem;
  }

  .metrics {
    flex-direction: column;
    gap: 0.1rem;
  }

  .metric h3 {
    font-size: 1.5rem;
  }

  .metric p {
    font-size: 0.9rem;
  }
  
  .highlight .cta-button {
      font-size: 12px;
  }

  .video-wrapper {
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 1.5rem;
  }

  .video-box {
    width: 100%;
  }

  .video-box img {
    width: 100%;
    height: auto;
  }
  
  .roadmap h2 {
      font-size: 1.3rem;
  }

  .roadmap-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .estrategia-imposto {
      background-image: none;
  }
  
  .estrategia-texto h2 {
      font-size: 1.3rem;
  }

  .estrategia-conteudo {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .estrategia-texto {
    text-align: center;
  }

  .logos-patrocinadores {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .equity-section h2 {
      font-size: 1.3rem;
  }
  
  .equity-section h3 {
      font-size: 0.8rem;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-left {
      text-align: center;
  }

  .footer-left img {
    width: 50%;
  }

  .footer-right {
    justify-content: center;
  }

  .scroll-top {
    bottom: 100px; /* mais espaço para botão do WhatsApp */
  }

  .form-section {
    padding: 1rem;
  }

  .form-section input,
  .form-section select {
    font-size: 0.9rem;
    padding: 0.6rem;
  }

  .faq-container details {
    padding: 0.75rem;
  }

  .cta-button, .btn-conversao {
    width: 100%;
    font-size: 0.8rem;
    padding: 0.75rem;
  }

}