/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;

}

body {
  line-height: 1.6;
  color: #333;
  background-color: hsl(0, 37%, 97%);
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh; /* ocupa toda a altura da tela */
}


/* Cabeçalho */
/* Header em duas colunas */
header {
  display: flex;
  padding: 3rem 1rem;
  color: #000;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  min-height: 100vh;
  align-items: center;
}

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

/* Texto do header */
.header-text {
  max-width: 50%;
  gap: 1rem;
}

.header-text h1 {
  font-size: 1.8rem;
  line-height: 1.3;
}

.destaque {
  color: #f73d2f;
  font-weight: bold; /* PARTE DO TEXTO PARAGRAFO */
}

.header-text p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.header-text a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background: #a2fc82;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  border: 1px solid #000;
  font-size: 1.1rem;
  animation: respirar 1.5s infinite;
  transition: background 0.3s;
}

.header-text a:hover {
  animation: none; /* para a animação */
  background: #3fe006;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(73, 255, 7, 0.4);
}

.header-text a svg {
  margin-left: 8px;
  fill: #000
}

@keyframes respirar {  /* EFEITO DO BOTÃO */
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 10px #a2fc82;
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
    box-shadow: 0 0 20px #a2fc82;
  }
}

.header-text ul {
  list-style: none;
  display: flex;
}

.header-text li {
  font-size: 18px;
  padding: 12px;
}

.header-text img {
  max-width: 340px;
  border-radius: 50%;
}

.lista-atendimento{
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .lista-atendimento li{
      display: flex;
      align-items: center;
      gap: 0.8rem;            /* espaço entre ícone e texto */
      margin: 1rem 0;
      font: 500 16px/1.2 system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
      color: #4a4a4a;
      font-size: 1.3rem;
      flex: 1;
      padding: 15px;
    }
    .lista-atendimento .icon{
      width: 22px;
      height: 22px;
      flex: 0 0 22px;
      display: inline-block;
    }
    .lista-atendimento img.icon{
      object-fit: contain;   /* sua imagem se adapta ao quadrado de 22px */
      filter: none;          /* deixe sem filtro; remova se quiser colorir via CSS */
    }


/* Imagem */
.header-img {
  flex: 1;
  text-align: right;
  background-color: #fff;
}

.header-img img {
  width: 100%;
  height: 550px;
  object-fit: contain; /* impede cortes */
  border-radius: 12px; /* opcional */

}

.header-text {
  color: #000;
}
/* RESPONSIVIDADE HEADER */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 2rem 1rem;
    text-align: center;
  }

  .header-container {
    flex-direction: column;
    align-items: center;
  }

  .header-text {
    max-width: 100%;
  }

  .header-text .logo {
    max-width: 160px; /* ajusta para caber melhor */
    height: auto;     /* mantém proporção */
    margin-bottom: 1rem; /* espaço abaixo da logo */
  }
}

  /* links em coluna */
  .lista-atendimento {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    margin: 2rem 0 0 0;
    width: 100%;
    flex-wrap: wrap;
  }

  .lista-atendimento li {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    margin: 0.5rem 0;
    padding: 0.5rem;
    width: 100%;
    max-width: 300px;
    font-size: 14px;
  }
  .lista-atendimento .icon {
    margin-bottom: 0;
    margin-right: 0.8rem;
    flex-shrink: 0;
  }

  /* imagem por último */
  .header-img {
    order: 3; /* joga para baixo */
    text-align: center;
    margin-top: 2rem;
  }

  .header-img img {
    max-width: 90%;
    height: auto;
  }

/* TERMINA O HEADER */

/* Seções */
section {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: auto;
  margin-top: 12px;
}

.bem {
  border: 1px solid #ddd;
  border-radius: 12px;
}

section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  color: #000;
}

/* Benefícios */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.benefit-img img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

.benefit {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; /* centraliza ícone, título e texto */
  gap: 1rem; /* espaço entre ícone, título e texto */
}

.benefit-renda {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-align: center;
}

@media (max-width: 768px) {
  section {
    padding: 2rem 1rem;
  }

  section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .benefits {
    grid-template-columns: 1fr; /* força 1 card por linha */
    gap: 1rem;
  }

  .benefit {
    padding: 1.5rem;
    gap: 0.8rem;
  }

  .benefit-img img {
    width: 50px;
    height: 50px;
  }

  .benefit h3 {
    font-size: 1.1rem;
  }

  .benefit p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}



.superendividamento {
  display: grid;
  grid-template-columns: 1fr 1fr; /* duas colunas */
  gap: 2rem;
  padding: 2rem;
}

.grid-imagens {
  display: grid;
  grid-template-columns: 2fr 1fr; /* esquerda maior, direita menor */
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}

.img-grande {
  grid-row: span 2; /* ocupa as duas linhas */
}

.grid-imagens img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.conteudo h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.conteudo p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.destaque {
  color: #b23a2c;
  font-weight: bold;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background: #a2fc82;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  border: 1px solid #000;

  animation: respirar 1.5s infinite;
  transition: background 0.3s;
}

.btn-whatsapp:hover {
  animation: none; /* para a animação */
}

.header-text a svg {
  margin-left: 8px;
  fill: #000
}

@keyframes respirar {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 10px #a2fc82;
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
    box-shadow: 0 0 20px #a2fc82;
  }
}

@media (max-width: 768px) {
  .superendividamento {
    grid-template-columns: 1fr; /* só uma coluna */
  }

  /* ordem: imagens primeiro, conteúdo depois */
  .grid-imagens {
    order: -1;
  }

  .conteudo {
    text-align: center;
    margin-top: 1.5rem;
  }

  .btn-whatsapp {
    align-self: center;
  }
}



/* container centralizador (use o max-width do seu site) */
.atendimento-section {
  padding: 80px 16px;
  background: linear-gradient(180deg, #fbfbfb 0%, #f6f6f6 100%);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.atendimento-container {
  max-width: 1180px;
  margin: 0 auto;
}

/* título */
.atendimento-title {
  text-align: center;
  font-size: 40px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 40px;
  font-family: Georgia, "Times New Roman", serif;
}
.atendimento-title .atendimento-destaque {
  font-weight: 600;
}

/* grid dos cards */
.atendimento-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* cada card */
.atendimento-benefit {
  position: relative;
  background: #fff;
  border-radius: var(--card-radius);
  padding: 64px 24px 28px;
  box-shadow: 0 12px 24px rgba(18,18,18,0.06);
  text-align: center;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* bloco de ícone */
.atendimento-benefit-img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -32px;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}
.atendimento-benefit-img img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

/* título e texto do card */
.atendimento-benefit h3 {
  margin-top: 12px;
  font-size: 18px;
  color: var(--text);
  font-weight: 700;
}
.atendimento-benefit p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  padding: 0 6px;
}

/* botão centralizado */
.cta{
  text-align: center;
  margin-top: 34px;
}

.btn-whatsapp{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background: #a2fc82;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}
.btn-whatsapp:hover{ transform: translateY(-3px); }

/* responsividade */
@media (max-width: 768px) {
  .atendimento-benefits {
    grid-template-columns: 1fr; /* uma coluna */
    gap: 20px; /* diminui o espaçamento */
  }

  .atendimento-benefit {
    padding: 48px 20px 24px; /* ajusta os espaçamentos pra caber melhor */
  }

  .atendimento-title {
    font-size: 28px; /* título menor no mobile */
  }

  .btn-whatsapp {
    font-size: 16px;
    padding: 0.7rem 1.2rem;
  }
}



.footer {
  background: #000; /* Vermelho jurídico */
  color: #fff;
  padding: 1.2rem 1rem; /* antes 2rem */
  font-size: 0.85rem;   /* antes 0.9rem */
}

.footer-contacts p {
  margin: 0.25rem 0;   /* menos espaço entre linhas */
  display: flex;
  align-items: center;
  font-size: 0.85rem;  /* texto menor */
}

.footer-contacts i {
  margin-right: 0.4rem;
  font-size: 1rem;     /* ícone menor */
}

.footer-logo img {
  max-height: 120px; /* antes 120px */
  height: auto;
  max-width: 100%;
}

.footer-logo h5 {
  margin-top: 0.5rem;
  font-size: 1rem;  /* menor título */
}

.footer-logo p {
  margin: 0;
  font-size: 0.85rem;
}

.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 1rem 0; /* menos espaço */
}

.footer-copy {
  text-align: center;
  font-size: 0.75rem; /* menor */
  color: #ddd;
  line-height: 1.3;
}





/* Responsividade */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.6rem;
  }

  .about {
    flex-direction: column;
    text-align: center;
  }
}

.info {
  background: #fff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; /* centraliza ícone, título e texto */
  gap: 1rem; /* espaço entre ícone, título e texto */
  margin-bottom: 12px;
}

.info p {
  font-size: 18px;
}
