/* =====================================================
   ESTILO PRINCIPAL - ZEMA CONSÓRCIOS
   ===================================================== */

:root {
  --primary: #470a68;
  --secondary: #ffcb05;
  --text-dark: #1e293b;
  --text-light: #ffffff;
  --text-secondary: #94a3b8;
}

/* ===================== RESET ===================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

/* ===================== BANNER PRINCIPAL ===================== */
#banner-principal {
  background: linear-gradient(rgba(71, 10, 104, 0.85), rgba(71, 10, 104, 0.85)),
    url("../../images/estrutura/hrz-5.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
  padding: 7rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.banner-conteudo {
  max-width: 850px;
}

.banner-logo {
  width: 220px;
  max-width: 100%;
  height: auto;
  margin-bottom: 1.8rem;
}

#banner-principal h1 {
  font-size: clamp(2.2rem, 3.5vw + 1rem, 4rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

#banner-principal p {
  font-size: clamp(1.1rem, 1vw + 0.5rem, 1.4rem);
  margin-bottom: 2rem;
  color: #f8f8f8;
}

.banner-btn {
  background-color: var(--secondary);
  color: var(--primary);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.banner-btn:hover {
  background-color: #ffe44d;
  transform: translateY(-3px);
}

/* Responsivo */
@media (max-width: 768px) {
  #banner-principal {
    padding: 5rem 1.5rem;
  }

  .banner-logo {
    width: 180px;
  }
}
/* ===================== FORMULÁRIO NOVO ===================== */
#formulario {
  background: #fff;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--text-dark);
}

.representante-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

#formulario h2 {
  font-size: 2.4rem;
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

#formulario h2 span {
  font-weight: 800;
}

#formulario p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2.5rem;
}

/* ===== Bloco principal do formulário ===== */
.formulario-representante {
  text-align: left;
  background: #f9f9f9;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.formulario-representante:hover {
  box-shadow: 0 10px 28px rgba(71, 10, 104, 0.2);
}

.formulario-representante h3 {
  text-align: center;
  color: var(--primary);
  margin: 2rem 0 1rem 0;
  font-size: 1.5rem;
  font-weight: 600;
}

/* ===== Campos ===== */
.formulario-representante .form-group {
  margin-bottom: 1.2rem;
}

.formulario-representante label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #333;
}

.formulario-representante input,
.formulario-representante textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  font-size: 1rem;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.formulario-representante input:focus,
.formulario-representante textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 6px rgba(71, 10, 104, 0.2);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* ===== Botão Roxo Zema ===== */
.btn-azul {
  display: block;
  width: 100%;
  background: var(--primary); /* Roxo Zema */
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 1rem;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  box-shadow: 0 4px 12px rgba(71, 10, 104, 0.2);
}

.btn-azul:hover {
  background: #5e1c88; /* Tom mais claro no hover */
  box-shadow: 0 6px 16px rgba(71, 10, 104, 0.3);
  transform: translateY(-2px);
}

/* ===== Responsivo ===== */
@media (max-width: 768px) {
  #formulario {
    padding: 3rem 1rem;
  }

  #formulario h2 {
    font-size: 2rem;
  }

  .formulario-representante {
    padding: 1.5rem;
  }

  .formulario-representante h3 {
    font-size: 1.3rem;
  }

  .btn-azul {
    font-size: 1rem;
  }
}
/* ===================== BENEFÍCIOS ===================== */
#key-benefits {
  text-align: center;
  padding: 2rem 1rem;
  max-width: 700px;
  margin: 0 auto;
}

#key-benefits h1 {
  color: #470a68;
  font-size: 1.6rem;
  font-weight: 300; /* fininho */
  line-height: 1.4;
}

#key-benefits h1 span {
  font-weight: 700; /* só o Zema Consórcios no negrito */
}

/* ===================== CARDS ===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 2rem;
  background-color: #f8fafc;
}

.service-card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  width: 300px;
  text-align: center;
  transition: transform 0.2s ease-in-out;
  color: var(--text-dark);
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-dark);
  line-height: 1.5;
}

.service-card:hover {
  transform: translateY(-5px);
}

.icon img {
  width: 60px;
  margin-bottom: 1rem;
}

/* ===================== PRODUTOS ===================== */
#produtos {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--primary);
  color: var(--text-light);
}

/* wrapper interno pra limitar o texto */
#produtos .content {
  max-width: 700px;
  margin: 0 auto;
}

#produtos h1 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}

#produtos h2 {
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 1px;
}
/* ===================== VÍDEO ===================== */
.video-secao {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
  background: #fff;
}

.video-roxo {
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(71, 10, 104, 0.3);
}

/* === BOTÃO CENTRALIZADO ABAIXO DO VÍDEO === */
body .cta-container {
  width: 100%;
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  text-align: center;
  margin: 2rem 0 3rem 0;
}

body .cta-container .cta-button {
  display: inline-block !important;
  background-color: var(--secondary) !important;
  color: var(--primary) !important;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none !important;
  padding: 1rem 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
  transition: all .3s ease;
}

body .cta-container .cta-button:hover {
  background-color: #ffd633 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,.25);
}

/* CONTAINER GERAL DO FOOTER */
.footer {
  background: #470a68; /* fundo escuro */
  color: #eee;      /* texto claro */
  padding: 2rem 1rem;
}

/* GRID DOS ITENS */
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  text-align: left;
}

/* TEXTOS */
.footer-item p {
  margin: 4px 0;
}

.footer-title {
  font-size: 14px;
  letter-spacing: 1px;
  color: #ffcb05;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
  position: relative;
  padding-left: 28px;
}

.footer-title:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 16px;
  color: #ffcb05;
  position: absolute;
  left: 0;
  top: 0;
}

/* ÍCONES */
.icon-endereco:before { content: "\f3c5"; }
.icon-contato:before { content: "\f095"; }
.icon-atendimento:before { content: "\f017"; }

/* RODAPÉ FINAL */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.8;
}