* {
    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;
}

.sobre {
  max-width: 900px;
  margin: 90px auto 30px;
  padding: 0 20px;
  text-align: center;
}

.sobre-titulo {
  font-size: 32px;
  color: #d9b24c;
  margin-bottom: 28px;
}

.sobre-box {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 36px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(217,178,76,0.12);
  border-top: 2px solid rgba(217, 178, 76, 0.35);
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.18);
}

.sobre-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #d8d8d8;
  margin-bottom: 16px;
}

.sobre-box p:last-child {
  margin-bottom: 0;
}

.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;
}

.voltar {
    display: block;
    width: fit-content;
    margin: 24px 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;
}

/* 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: 48px 65px 42px;
    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: 20px 28px;
    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 - PÁGINA SOBRE */

/* Tablet */
@media (max-width: 1024px) {
  .sobre {
    max-width: 850px;
    margin-top: 70px;
    padding: 0 24px;
  }

  .benefits {
    padding: 22px 35px;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .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) {
  .sobre {
    margin: 50px auto 25px;
    padding: 0 16px;
  }

  .sobre-titulo {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 22px;
  }

  .sobre-box {
    padding: 24px 18px;
    border-radius: 12px;
  }

  .sobre-box p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .voltar {
    font-size: 14px;
    margin-top: 22px;
  }

.benefits {
  display: flex;
  flex-wrap: wrap; /* 👈 permite quebrar linha */
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 16px;
  margin-top: -20px;
}

.benefit {
  width: calc(50% - 8px); /* 👈 2 por linha */
  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) {
  .sobre-titulo {
    font-size: 23px;
  }

  .sobre-box {
    padding: 20px 15px;
  }

  .sobre-box p {
    font-size: 13px;
  }

  .benefits {
    padding: 24px 18px;
  }

  .footer-copy p {
    font-size: 20px;
  }
}