/* ==================================================
   Paradigm Vector — Landing Page
   Arquivo: style/styles.css
   ================================================== */

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BASE */
html {
    font-size: 16px;
}

body {
    min-height: 100vh;
    background-color: #ffffff;
    color: #111111;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* PAGE */
.page {
    min-height: calc(100vh - 96px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 48px 24px 24px;
}

/* HERO */
.hero {
    width: 100%;
    max-width: 920px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__header {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

/* LOGO PRINCIPAL */
.hero__logo {
    width: 18vw;
    max-width: 240px;
    min-width: 130px;
    border-radius: 0;
}

/* TEXTO */
.hero__content {
    max-width: 760px;
    margin-bottom: 42px;
}

.hero__title {
    margin-bottom: 22px;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero__paragraph {
    margin-bottom: 22px;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.55;
    font-weight: 400;
}

.hero__highlight {
    margin-top: 8px;
    font-size: clamp(1.1rem, 1.45vw, 1.4rem);
    line-height: 1.45;
    font-weight: 700;
}

/* ASSINATURA DA MARCA */
.brand-signature {
    width: min(420px, 82vw);
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-signature__logo {
    width: 100%;
    max-width: 380px;
    border-radius: 0;
}

.pv-table {
  width: 100%;
  max-width: 300px;
  margin: 30px auto;

  border: 7px solid #EED6AA;
  border-radius: 15px;

  border-collapse: collapse;
  overflow: hidden;
}

.pv-table td {
  border: 2px solid #000000;
  padding: 14px;
  text-align: center;

  font-family: "Arial", serif;
  font-size: 15px;
  color: #000000;
}

/* FOOTER */
.footer {
    padding: 18px 24px 24px;
    text-align: center;
}

.footer__brand {
    margin-bottom: 6px;
    font-size: 0.875rem;
    color: #666666;
}

.footer__copy {
    margin-bottom: 6px;
    font-size: 0.75rem;
    color: #888888;
}

.footer__legal a {
    font-size: 0.75rem;
    color: #999999;
    text-decoration: none;
}

.footer__legal a:hover {
    text-decoration: underline;
}

/* PRIVACIDADE */
.document-page {
    min-height: calc(100vh - 96px);
    display: flex;
    justify-content: center;
    padding: 56px 24px 32px;
}

.document {
    width: 100%;
    max-width: 820px;
    text-align: left;
}

.document__title {
    margin-bottom: 28px;
    font-size: clamp(1.6rem, 2.4vw, 2.3rem);
    line-height: 1.25;
}

.document__section {
    margin-bottom: 28px;
}

.document__subtitle {
    margin-bottom: 10px;
    font-size: 1.15rem;
    line-height: 1.35;
}

.document__paragraph {
    margin-bottom: 14px;
    font-size: 1rem;
    line-height: 1.65;
    color: #333333;
}

.document__link {
    color: #111111;
    text-decoration: none;
    border-bottom: 1px solid #111111;
}

/* MOBILE */
@media (max-width: 768px) {

    .page {
        min-height: auto;
        padding: 40px 22px 20px;
    }

    .hero__header {
        margin-bottom: 34px;
    }

    .hero__logo {
        width: 38vw;
        max-width: 200px;
        min-width: 120px;
    }

    .hero__content {
        margin-bottom: 36px;
    }

    .hero__paragraph {
        margin-bottom: 20px;
    }

    .brand-signature {
        width: min(360px, 88vw);
    }

    .footer {
        padding-bottom: 28px;
    }

    .document-page {
        padding: 40px 22px 24px;
    }

    @media (max-width: 480px) {
    .pv-box div {
        font-size: 14px;
    }

        .whatsapp-btn {
      display: block;
      width: fit-content;

      margin-top: 50px auto;
      margin: 30px auto;

      padding: 14px 24px;

      background-color: #25D366;
      color: #ffffff;

      font-size: 16px;
      font-weight: 600;
      text-decoration: none;

      border-radius: 8px;
}
}
}