* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

:root {
  --verde-botao: #0B8A36;
  --verde-botao-hover: #0E9E3E;

  --amarelo-titulo: #F7D117;
  --amarelo-vivo: #FFD84A;

  --preto-fundo: #050505;
  --preto-secundario: #0B0B0B;
  --preto-gradiente: #111111;

  --texto-principal: #F2F2F2;
  --texto-secundario: #CFCFCF;
  --texto-suave: #AFAFAF;

  --dourado: #C8A63A;
  --dourado-claro: #E1C15A;
}

body {
  background: linear-gradient(90deg, #050505 0%, #0B0B0B 50%, #050505 100%);
  color: var(--texto-principal);
  font-family: 'Poppins', sans-serif;
}


html {
  scroll-behavior: smooth;
}

.menu-de-navegacao {
  position: fixed;
  top: 0;
  color: #EAEAEA;
  width: 100%;
  z-index: 100;
  padding: 1.5rem;
  background: rgba(8, 8, 8, 0.96);
  border-bottom: 1px solid rgba(225, 193, 90, 0.10);
  backdrop-filter: blur(8px);
}

.menu {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 3.5rem;
}

.menu-link {
  text-decoration: none;
  color: var(--texto-secundario);
  font-weight: 500;
  position: relative;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.menu-link:hover {
  color: var(--texto-principal);
}

.menu-link::after {
  content: '';
  height: 2px;
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg,
      #C8A63A,
      #FFD84A,
      #E1C15A);
  transition: width 0.4s ease;
  box-shadow: 0 0 6px rgba(255, 216, 74, 0.3);
}

.menu-link:hover::after {
  width: 100%;
}

.contato {
    padding: 6rem 2rem;
    margin-top: 1px;
}

.contato-titulo {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--dourado);
    text-shadow: 0 0 4px rgba(212, 166, 58, 0.08);
}

.formulario-contato {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(18, 6, 10, 0.96), rgba(24, 10, 14, 0.96));
    backdrop-filter: blur(8px);
    padding: 2rem;
    border: 1px solid rgba(212, 166, 58, 0.18);
    border-radius: 16px;
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.45),
        0 0 22px rgba(212, 166, 58, 0.05);
}

.formulario-contato:hover {
    border: 1px solid rgba(201, 162, 74, 0.45);
}

.campo-form {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    color: var(--cor-texto);
    border: 1px solid rgba(212, 166, 58, 0.10);
    transition: all 0.3s ease;

    outline: none;
}

.campo-form:focus {
    border: 1px solid rgba(240, 201, 106, 0.55);
    box-shadow: 0 0 0 4px rgba(240, 201, 106, 0.08);
    background: rgba(255, 255, 255, 0.045);
}

.grupo-form {
    margin-bottom: 1.5rem;
}

.botao-form {
    color: #14090a;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    transition: all 0.5s ease;
     background: linear-gradient(90deg, #c9962f, #f0c96a);
     box-shadow: 0 12px 24px rgba(201, 150, 47, 0.18);
}

.botao-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(201, 150, 47, 0.24);
    filter: brightness(1.03);
}

.campo-form::placeholder {
   color: rgba(255,255,255,0.42);
}

.social-section {
    text-align: center;
    margin-top: 12px;
}

.social-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--cor-texto-suave);
    letter-spacing: 1px;
}

.social-section-bankle{
    text-align: center;
    margin-top: 60px;
}

.social-title-bankle{
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--cor-texto-suave);
    letter-spacing: 1px;
}

.social-section-icon{
        display: flex;
    justify-content: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.social-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

/* cores */
.whatsapp { background: #25D366; }
.instagram {
    background: linear-gradient(45deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5);
}
.youtube { background: #FF0000; }
.banlek { background: #0c4a61; }

/* hover premium */
.social-btn:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 12px 25px rgba(0,0,0,0.5);
}

.voltar {
    display: block;
    width: fit-content;
    margin: 60px auto 0;
    color: #d9b24c;
    text-decoration: none;
    font-size: 15px;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(217, 178, 76, 0.4);
    transition: 0.3s;
}

.voltar:hover {
    color: #f0c35a;
    border-bottom: 1px solid #f0c35a;
}

.benefits {
  background: linear-gradient(90deg, #00110c, #001a13, #00110c);
  border-top: 1px solid rgba(217, 178, 76, 0.3);
  border-bottom: 1px solid rgba(217, 178, 76, 0.3);

  padding: 22px 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: -30px;
}

/* BARRA DE BENEFÍCIOS */
.benefits {
  background: linear-gradient(90deg, #00110c, #001a13, #00110c);
  border-top: 1px solid rgba(217, 178, 76, 0.3);
  border-bottom: 1px solid rgba(217, 178, 76, 0.3);
  padding: 22px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: -30px;
}

/* CADA ITEM */
.benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 100px;
}

/* ÍCONE */
.benefit i {
  font-size: 32px;
  color: #d9b24c;
  margin-top: 2px;
  cursor: pointer;
}

/* TÍTULO */
.benefit h4 {
  font-size: 14px;
  font-weight: 800;
  color: #f0c35a;
  margin: 0 0 6px 0;
}

/* DESCRIÇÃO */
.benefit p {
  font-size: 13px;
  color: #cfcfcf;
  margin: 0;
  line-height: 1.4;
}

/* FOOTER */
.footer-0 {
  background: linear-gradient(90deg, #00110c 0%, #001a13 45%, #00140f 100%);
  color: #fff;
  border-top: 1px solid rgba(217, 178, 76, 0.45);
  overflow: hidden;
  position: relative;
}

.footer-0::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  pointer-events: none;
}

.footer hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(200, 166, 58, 0.4),
      transparent);
}

/* TOPO */
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
    padding: 30px 25px;
  background: linear-gradient(90deg, #00110c 0%, #001911 45%, #00140f 100%);
  border-bottom: 1px solid rgba(217, 178, 76, 0.4);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column h3 {
  font-size: 20px;
  font-weight: 800;
  color: #f0c35a;
  margin-bottom: 16px;
}

.footer-column h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background: #d9b24c;
  margin-top: 14px;
}

.footer-column a,
.footer-column p {
  color: #f2f2f2;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.8;
}

.footer-column p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-column p i {
  color: #d9b24c;
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.footer-column a:hover {
  color: #f0c35a;
}

/* MEIO */
.footer-bottom {
  display: grid;
  grid-template-columns: 0.85fr 0.9fr 1.15fr 0.8fr;
  align-items: center;
  min-height: 170px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.08)),
    linear-gradient(90deg, #00110c 0%, #001911 45%, #00140f 100%);
  position: relative;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(50deg,
      rgba(255, 255, 255, 0.015) 0px,
      rgba(255, 255, 255, 0.015) 70px,
      transparent 70px,
      transparent 140px);
  opacity: 0.4;
  pointer-events: none;
}

.footer-box {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 14px;
  position: relative;
}

.footer-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 85px;
  background: rgba(217, 178, 76, 0.45);
}

.footer-logo img {
  width: 155px;
  max-width: 100%;
  display: block;
}

/* REDES */
.footer-social {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-social i {
  color: #f0c35a;
  font-size: 28px;
}

.footer-social a {
  color: #d9b24c;
  text-decoration: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* RODAPÉ LEGAL */
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 12px 16px;
  background: linear-gradient(90deg, #000d09 0%, #00140f 50%, #000f0b 100%);
  border-top: 1px solid rgba(217, 178, 76, 0.28);
}

.logo-texto-1 {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-11-1 {
  font-size: 20px;
  font-weight: 900;
  color: #d9b24c;
  letter-spacing: 2px;
}

.logo-titular-1 {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #e7c96a;
  margin-top: 3px;
}

.footer-legal-texto {
  max-width: 860px;
}

.footer-legal-texto p {
  margin: 0;
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
  color: #d7d7d7;
}

.footer-column i {
  text-align: center;
  font-size: 18px;
}

/* ESTRELAS */
.rate {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #d9b24c;
  font-size: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.people-rate {
  margin-left: 6px;
  color: #f0c35a;
  font-size: 12px;
  font-weight: 700;
}

/* TITULO */
.footer-copy {
  display: flex;
  justify-content: center;
  width: 100%;
}

.footer-copy p {
  color: #f2f2f2;
  font-size: 28px;
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding: 0 14px;
  letter-spacing: 0.5px;
}

.footer-copy p::before,
.footer-copy p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 58px;
  height: 1px;
  background: rgba(217, 178, 76, 0.45);
}

.footer-copy p::before {
  right: 100%;
  margin-right: 10px;
}

.footer-copy p::after {
  left: 100%;
  margin-left: 10px;
}

/* RESPONSIVO - CONTATO */

/* Tablet */
@media (max-width: 1024px) {
  .menu {
    gap: 1.8rem;
  }

  .contato {
    padding: 5rem 2rem;
  }

  .benefits {
    flex-wrap: wrap;
    justify-content: center;
    padding: 22px 35px;
    gap: 25px;
  }

  .benefit {
    width: 45%;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    padding: 40px 30px;
    gap: 35px;
  }

  .footer-bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Celular */
@media (max-width: 600px) {
  .menu-de-navegacao {
    padding: 0.8rem;
    overflow-x: auto;
  }

  .menu {
    justify-content: flex-start;
    gap: 1rem;
    width: max-content;
  }

  .menu-link {
    font-size: 13px;
    white-space: nowrap;
  }

  .contato {
    padding: 4.5rem 1rem 3rem;
    margin-top: 15px;
  }

  .contato-titulo {
    font-size: 2rem;
    margin-bottom: 24px;
  }

  .formulario-contato {
    padding: 1.4rem;
    border-radius: 14px;
  }

  .campo-form {
    padding: 0.9rem;
    font-size: 14px;
  }

  .grupo-form {
    margin-bottom: 1.1rem;
  }

  .botao-form {
    padding: 0.9rem 1rem;
    font-size: 14px;
  }

  .social-title {
    font-size: 1.2rem;
  }

  .social-icons {
    gap: 14px;
  }

  .social-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .voltar {
    font-size: 14px;
    margin-top: 40px;
  }

  .benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 16px;
    margin-top: -20px;
  }

  .benefit {
    width: calc(50% - 8px);
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .benefit i {
    font-size: 26px;
  }

  .benefit h4 {
    font-size: 13px;
  }

  .benefit p {
    font-size: 12px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 35px 24px;
  }

  .footer-column h3 {
    font-size: 18px;
  }

  .footer-column a,
  .footer-column p {
    font-size: 13px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-box {
    min-height: auto;
    padding: 18px 12px;
  }

  .footer-box:not(:last-child)::after {
    display: none;
  }

  .footer-logo img {
    width: 120px;
  }

  .rate {
    font-size: 20px;
  }

  .people-rate {
    font-size: 11px;
  }

  .footer-copy p {
    font-size: 22px;
  }

  .footer-copy p::before,
  .footer-copy p::after {
    width: 25px;
  }

  .footer-social i {
    font-size: 26px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 12px;
    padding: 20px 18px;
  }

  .footer-legal-texto p {
    font-size: 9px;
    line-height: 1.5;
  }
}

/* Celular pequeno */
@media (max-width: 380px) {
  .contato-titulo {
    font-size: 1.8rem;
  }

  .formulario-contato {
    padding: 1.2rem;
  }

  .benefits {
    padding: 24px 14px;
    gap: 14px;
  }

  .benefit {
    width: calc(50% - 7px);
  }

  .footer-copy p {
    font-size: 20px;
  }
}