/* =====================
   CONFIGURAÇÕES GERAIS
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", Arial, sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =====================
   HEADER FIXO
===================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  height: 80px;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.logo {
  height: 50px;
}

/* ====== MENU ====== */
.nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  position: relative;
  z-index: 1100;
}
.nav a {
  color: #0d3b66;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav a:hover {
  color: #0077cc;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #0d3b66;
  cursor: pointer;
  z-index: 1200;
}

/* ====== MENU MOBILE ====== */
@media (max-width: 768px) {
  .nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    background: #ffffff;
    top: 80px;
    right: 0;
    width: 220px;
    padding: 1rem;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    z-index: 1100;
  }
  .nav ul.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}

/* =====================
   HERO (BANNER)
===================== */
.hero {
  position: relative;
  width: 100%;
  height: calc(130vh - 80px);
  margin-top: 80px;
  background: url("../img/banner.jpg") center center/cover no-repeat;
}

/* =====================
   BENEFÍCIOS 2x2
/* ===== SEÇÃO BENEFÍCIOS ===== */
.beneficios {
  background: #ffffff;
  padding: 100px 0 80px;
  text-align: center;
  font-family: "Poppins", Arial, sans-serif;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
  margin-bottom: 50px;
}

.beneficio-box {
  background-color: #006b52;
  color: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beneficio-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.beneficio-box h3 {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #ffffff;
  line-height: 1.3;
}

.beneficio-box .amarelo {
  color: #ffd600;
}

.beneficio-box p,
.beneficio-box li {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
}

.beneficio-box ul {
  list-style: disc inside;
  color: #ffffff;
  padding-left: 1rem;
  line-height: 1.6;
}

.beneficio-contato h4 {
  color: #006b52;
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.5;
  text-align: center;
  margin-top: 20px;
}

/* ===== Responsivo ===== */
@media (max-width: 768px) {
  .beneficio-box {
    text-align: center;
  }

  .beneficio-box ul {
    list-style: none;
    padding-left: 0;
  }

  .beneficio-contato h4 {
    font-size: 1.1rem;
  }
}


/* =====================
   COMO FUNCIONA
===================== */
/* ===== SEÇÃO COMO FUNCIONA 2x2 ===== */
.como-funciona {
  background: linear-gradient(90deg, #00916E 0%, #016B52 100%);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  font-family: "Poppins", Arial, sans-serif;
}

.funciona-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.funciona-item {
  padding: 10px 20px;
}

.funciona-item h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #ffffff;
}

.funciona-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
}

.btn-regulamento {
  display: inline-block;
  background-color: #FFD600;
  color: #003b2d;
  font-weight: 800;
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-regulamento:hover {
  background-color: #ffcf00;
  transform: translateY(-3px);
}

/* ===== RESPONSIVO (celular: 1 coluna) ===== */
@media (max-width: 900px) {
  .funciona-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .funciona-item h3 {
    font-size: 1.2rem;
  }

  .funciona-item p {
    font-size: 0.95rem;
  }
}


/* =====================
   FORMULÁRIO
===================== */
.indicacao {
  background: #fff;
  text-align: center;
  padding: 100px 0;
}
.indicacao h2 {
  color: #006b52;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.form-indicacao {
  max-width: 500px;
  margin: 0 auto;
  background: #006b52;
  padding: 2rem;
  border-radius: 12px;
}
.input-group {
  margin-bottom: 1.5rem;
  text-align: left;
}
.input-group label {
  color: #fff;
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}
.input-group input {
  width: 100%;
  padding: 0.9rem;
  border: none;
  border-radius: 8px;
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.btn-enviar {
  width: 100%;
  background: #FFD600;
  color: #004d3a;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.btn-enviar:hover {
  background: #ffcf00;
  transform: translateY(-3px);
}

/* =====================
   RODAPÉ
===================== */
.footer {
  background: linear-gradient(90deg,#00916E 0%,#016B52 100%);
  color:#fff;
  padding:60px 0 30px;
  font-family:"Poppins",Arial,sans-serif;
}

.footer-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  align-items:center;
  justify-content:space-between;
  gap:40px;
  max-width:1200px;
  margin:0 auto;
  text-align:center;
}

.footer-logo {width:180px;}

.footer-social-col h4 {
  font-size:.9rem;
  font-weight:600;
  letter-spacing:2px;
  margin-bottom:20px;
}

.social-icons img {
  width:28px;
  margin:0 10px;
  transition:transform .3s ease;
}
.social-icons img:hover {transform:scale(1.1);}

.footer-contact-col p {
  font-size:.9rem;
  line-height:1.5;
}

.footer-bottom {
  margin-top:40px;
  text-align:center;
  font-size:.85rem;
  opacity:.9;
}

@media(max-width:900px){
  .footer-grid{grid-template-columns:1fr;gap:30px;}
  .footer-logo{margin:0 auto;}
}


/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-col {
    text-align: center;
  }
  .footer-logo {
    margin: 0 auto;
  }
}

