/* CORES */
:root {
  --white: #ffffff;
  --green: #62c44d;
  --dark: #454540;
}

/* Active Uno Light */
@font-face {
  font-family: "Active Uno";
  src: url("fonts/ActiveUno-Light.woff2") format("woff2"),
       url("fonts/ActiveUno-Light.woff") format("woff"),
       url("fonts/ActiveUno-Light.ttf") format("truetype"),
       url("fonts/ActiveUno-Light.eot");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Active Uno Regular */
@font-face {
  font-family: "Active Uno";
  src: url("fonts/ActiveUno-Regular.woff2") format("woff2"),
       url("fonts/ActiveUno-Regular.woff") format("woff"),
       url("fonts/ActiveUno-Regular.ttf") format("truetype"),
       url("fonts/ActiveUno-Regular.eot");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Active Uno Medium */
@font-face {
  font-family: "Active Uno";
  src: url("fonts/ActiveUno-Medium.woff2") format("woff2"),
       url("fonts/ActiveUno-Medium.woff") format("woff"),
       url("fonts/ActiveUno-Medium.ttf") format("truetype"),
       url("fonts/ActiveUno-Medium.eot");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Active Uno Semibold */
@font-face {
  font-family: "Active Uno";
  src: url("fonts/ActiveUno-Semibold.woff2") format("woff2"),
       url("fonts/ActiveUno-Semibold.woff") format("woff"),
       url("fonts/ActiveUno-Semibold.ttf") format("truetype"),
       url("fonts/ActiveUno-Semibold.eot");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Active Uno Bold */
@font-face {
  font-family: "Active Uno";
  src: url("fonts/ActiveUno-Bold.woff2") format("woff2"),
       url("fonts/ActiveUno-Bold.woff") format("woff"),
       url("fonts/ActiveUno-Bold.ttf") format("truetype"),
       url("fonts/ActiveUno-Bold.eot");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Cook Gothif Regular */
@font-face {
  font-family: "Cook Gothif";
  src: url("fonts/CookGothif.woff2") format("woff2"),
       url("fonts/CookGothif.woff") format("woff"),
       url("fonts/CookGothif.ttf") format("truetype"),
       url("fonts/CookGothif.eot");
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: "Active Uno", Arial, sans-serif;
  background-color: var(--dark);
  color: var(--dark);
  font-size: 18px;	
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  background-image: url("img/banner-exposec.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 2rem 1rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  width: 100%;
}

/* TEXTO DO BANNER */
.hero-text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-top-image {
  width: 100%;
  max-width: 620px;
  height: auto;
  animation: slideInLeft 0.7s ease-out both;
}

.hero-bottom-image {
  width: 100%;
  max-width: 720px;
  height: auto;
  animation: slideInLeft 0.7s ease-out both;
}


.hero-text h1 {
  font-family: "Cook Gothif", serif;
  font-size: clamp(2.3rem, 3vw, 2.9rem);
  line-height: 1.3;
}

/* FORMULÁRIO */
.hero-form {
  flex: 1 1 40%;
}

.hero-form form {
  background-color: rgba(69,69,64,0.9);
  padding: 1.8rem;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--white);
  text-align: left; /* força alinhamento à esquerda */
}

.hero-form h2 {
  font-family: "Active Uno", sans-serif;
  font-weight: 600;	
  font-size: 2.0rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.hero-form label {
  color: var(--white);
}

.link-verde {
  color: var(--green);
}

input {
  padding: 0.6rem;
  border-radius: 0.4rem;
  border: 1px solid #777;
  background-color: #2b2b29;
  color: var(--white);
}

/* CHECKBOX ALINHADO À ESQUERDA */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
}

.checkbox-group input {
  margin-top: 2px; /* deixa alinhado com o texto */
}

.checkbox-group label {
  color: var(--white);
  line-height: 1.2;
}

/* BOTÃO CENTRALIZADO */
.btn-primary {
  background-color: var(--green);
  color: var(--dark);
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;

  width: fit-content;   /* botão só do tamanho do texto */
  align-self: center;   /* centraliza no formulário */
}

/* ================================
   COMO FUNCIONA A CAMPANHA (SEM BOX)
   ================================ */

.info-box {
  max-width: 1500px;
  margin: 2.5rem auto;
  display: flex;
  flex-wrap: wrap;
  background: none;
  border-radius: 0;
  overflow: visible;
}

.info-image {
  flex: 1 1 35%;
  min-height: 620px;
  background-image: url("img/img1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
}

.info-text {
  flex: 1 1 55%;
  padding: 1.8rem;
  line-height: 30px;
  color: var(--white);
}

.info-text h2 {
  font-family: "Active Uno", sans-serif;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 2rem;
  font-size: 40px;
}

.text-14 {
  font-size: 18px;
  line-height: 30px;
}

.mb-5 {
  margin-bottom: 29px;
}

.mt-5 {
  margin-top: 29px;
}

/* ================================
   REGULAMENTO (COM BOX BRANCO)
   ================================ */

.regulamento-box {
  max-width: 1500px;
  margin: 2.5rem auto;
  background-color: #fff;
  border-radius: 1rem;
  overflow: hidden;
  padding: 1.8rem;
  color: #222;
}

.regulamento-box h2 {
  font-family: "Active Uno", sans-serif;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 2rem;
  font-size: 40px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.accordion-item {
  background: #fff;
  border-radius: 0.6rem;
  overflow: hidden;
  border: 1px solid #ddd;
}

.accordion-header {
  width: 100%;
  background: var(--green);
  border: none;
  padding: 1rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.accordion-header::after {
  content: "▾";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}

.accordion-header.active::after {
  transform: translateY(-50%) rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0 1rem;
  transition: max-height 0.3s ease;
}

.accordion-content p {
  padding: 1rem 0;
  color: #333;
  line-height: 1.5;
}
/* Lista com ícones de check */
.lista-premios {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.lista-premios li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 18px;
  line-height: 1.4;
  color: var(--white);
}

.lista-premios li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-size: 25px;
  font-weight: bold;
}

/* RODAPÉ */
.footer {
  background-color: #2b2b29;
  padding: 1.5rem;
  text-align: center;
}

/* ANIMAÇÃO */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    align-items: center;
  }

  .hero-form {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .info-box {
    flex-direction: column;
  }

  .info-image {
    min-height: 280px;
  }

  .info-text,
  .regulamento-box {
    padding: 1.4rem;
  }
}

@media (max-width: 480px) {
  .hero-top-image {
    max-width: 260px;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-form form {
    padding: 1.2rem;
  }
}