* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

:root {
    --cor-primaria: #0B7A3B;
    --cor-primaria-escura: #075A2B;
    --cor-secundaria: #F4B400;
    --cor-secundaria-escura: #D89E00;
    --cor-branca: #FFFFFF;
    --cor-preta: #111111;
    --cor-cinza-claro: #F5F5F5;
    --cor-cinza-medio: #D9D9D9;
    --cor-cinza-escuro: #555555;
    --cor-cinza-claro-mudado: #EFEFEF;
}

body {
    background: linear-gradient(90deg, #050505 0%, #0B0B0B 50%, #050505 100%);
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

h1,
h2,
h3,
.subtitle-logo {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 700;
}

/* HEADER */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 110px;
    margin-bottom: 50px;
    background: linear-gradient(90deg, #050505 0%, #0B0B0B 50%, #050505 100%);
    gap: 20px;
    padding: 0;
    width: 100%;
}

.subtitle-top {
    background: linear-gradient(90deg, #001a13, #00251c, #001a13);
    width: 100%;
    padding: 26px 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.subtitle {
    font-size: 30px;
    color: #d9b24c;
    margin: 0;
}

/* BLOCO PRINCIPAL */
.body-text {
    max-width: 880px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    text-align: start;
    padding: 34px 36px;
    font-size: 15px;

    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(217, 178, 76, 0.12);
    border-radius: 14px;

    box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
}

.body-text::before {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #d9b24c;
    margin-bottom: 20px;
    border-radius: 999px;
}

.paragrafo-de-cima {
    margin-top: 0;
    margin-bottom: 26px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: #ffffff;
}

.info-subtitle {
    margin-top: 28px;
    margin-bottom: 6px;
    font-size: 19px;
    color: #d9b24c;
    font-weight: 600;
}

.info-paragrafo {
    color: #dcdcdc;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.9;
}

.text {
    font-size: 15px;
    text-align: center;
    color: #F5F5F5;
    font-family: 'Poppins', sans-serif;
}

.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;
}

/* 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: 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 - TERMOS DE USO */

/* Tablet */
@media (max-width: 1024px) {
  .header {
    margin-top: 80px;
    margin-bottom: 40px;
  }

  .body-text {
    max-width: 850px;
    margin: 0 24px 50px;
    padding: 32px 30px;
  }

  .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) {
  .header {
    margin-top: 45px;
    margin-bottom: 28px;
  }

  .subtitle-top {
    padding: 22px 16px;
  }

  .subtitle {
    font-size: 26px;
  }

  .body-text {
    margin: 0 16px 35px;
    padding: 24px 18px;
    border-radius: 12px;
  }

  .paragrafo-de-cima,
  .info-paragrafo {
    font-size: 14px;
    line-height: 1.75;
  }

  .info-subtitle {
    font-size: 17px;
    margin-top: 24px;
  }

  .voltar {
    font-size: 14px;
    margin-top: 22px;
  }

  .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) {
  .subtitle {
    font-size: 23px;
  }

  .body-text {
    margin: 0 12px 32px;
    padding: 20px 15px;
  }

  .paragrafo-de-cima,
  .info-paragrafo {
    font-size: 13px;
  }

  .info-subtitle {
    font-size: 16px;
  }

  .benefits {
    padding: 24px 14px;
    gap: 14px;
  }

  .benefit {
    width: calc(50% - 7px);
  }

  .footer-copy p {
    font-size: 20px;
  }
}