/* ============================================================
   Política de Privacidade - Colorkrew
   Tokens: Marketing UI Kit (Figma: HHeEjvwIn4iYv4LuVhnPHr)
   ============================================================ */

:root {
  --color-primary:     #0276F1;
  --color-text-high:   #1A3755;
  --color-text-mid:    #535D6E;
  --color-surface-low: #F2F4FA;
  --color-bg-contact:  #FAFAFA;
  --color-footer-bg:   #1A3755;
  --color-white:       #FFFFFF;

  --sp-sm:  8px;
  --sp-md:  16px;
  --sp-lg:  24px;
  --sp-xl:  32px;
  --sp-2xl: 40px;
  --sp-3xl: 64px;

  --fs-sm:  14px;
  --fs-md:  16px;
  --fs-lg:  18px;
  --fs-xl:  24px;
  --fs-2xl: 32px;
  --fs-3xl: 48px;

  --lh-sm:  21px;
  --lh-md:  24px;
  --lh-lg:  27px;
  --lh-xl:  36px;
  --lh-2xl: 48px;
  --lh-3xl: 72px;
  --lh-p:   21px;
}

/* ---- Reset ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-sm);
  color: var(--color-text-high);
  background: var(--color-white);
  line-height: var(--lh-p);
}

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--sp-xl);
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: var(--sp-2xl);
}

/* Logo */
.logo {
  text-decoration: none;
  display: block;
  flex-shrink: 0;
}

.logo-wrap {
  position: relative;
  width: 145px;
  height: 32px;
  overflow: hidden;
}

.logo-icon-part {
  position: absolute;
  top: 0;
  left: 0;
  right: 77.95%;
  bottom: 0;
}

.logo-icon-part img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  max-width: none;
}

.logo-text-part {
  position: absolute;
  top: 26.56%;
  right: 0;
  bottom: 26.56%;
  left: 27.62%;
}

.logo-text-part img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  max-width: none;
}

/* Nav */
.main-nav {
  display: flex;
  gap: var(--sp-lg);
  align-items: center;
}

.main-nav a {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--color-text-high);
  text-decoration: none;
  line-height: var(--lh-md);
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--color-primary);
}

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 100px;
  padding: var(--sp-sm) var(--sp-lg);
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 400;
  line-height: var(--lh-sm);
  text-decoration: none;
  white-space: nowrap;
  height: 32px;
}

.btn-cta:hover {
  background: #0265d0;
}

/* ---- Main Content ---- */
.main-content {
  padding-top: 64px;
}

.content-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: var(--sp-3xl) var(--sp-2xl);
}

.content-inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3xl);
  max-width: 1200px;
  width: 100%;
}

/* Page Title */
.page-title {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--color-text-high);
  line-height: var(--lh-2xl);
  text-align: center;
  white-space: nowrap;
}

/* ---- Policy Section ---- */
.policy-section {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
  width: 100%;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
  width: 100%;
}

.section-title {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-text-high);
  line-height: var(--lh-xl);
}

.section-title ol {
  list-style: decimal;
  padding-left: 36px;
}

.section-divider {
  width: 230px;
  height: 3px;
  background: var(--color-text-high);
  border: none;
  flex-shrink: 0;
}

/* Section Body */
.section-body {
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--color-text-high);
  line-height: var(--lh-p);
  width: 100%;
}

.section-body p {
  line-height: var(--lh-p);
}

.section-body strong {
  font-weight: 700;
}

.section-body a {
  color: var(--color-text-high);
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.section-body a:hover {
  color: var(--color-primary);
}

/* ---- Contact Section ---- */
.contact-section {
  background: var(--color-bg-contact);
  display: flex;
  justify-content: center;
  padding: var(--sp-3xl) var(--sp-2xl);
}

.contact-container {
  display: flex;
  gap: var(--sp-3xl);
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.contact-left {
  flex: 1 0 0;
  min-width: 0;
  text-align: center;
  color: var(--color-text-high);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}

.contact-title {
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--color-text-high);
  line-height: var(--lh-3xl);
}

.contact-desc {
  font-size: var(--fs-sm);
  font-weight: 400;
  line-height: var(--lh-p);
}

.contact-right {
  flex: 1 0 0;
  min-width: 0;
  background: var(--color-white);
  padding: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.contact-form-title {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--color-text-high);
  line-height: var(--lh-2xl);
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.form-input {
  display: block;
  width: 100%;
  background: var(--color-surface-low);
  border: none;
  border-radius: 8px;
  padding: var(--sp-sm) var(--sp-md);
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-md);
  font-weight: 400;
  color: var(--color-text-mid);
  line-height: var(--lh-md);
  outline: none;
}

.form-input::placeholder {
  color: var(--color-text-mid);
}

.form-input:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 0;
}

.form-textarea {
  resize: vertical;
  min-height: 88px;
}

.captcha-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.captcha-placeholder img {
  max-width: 256px;
  height: 60px;
  object-fit: contain;
}

.btn-submit {
  display: block;
  width: 100%;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 100px;
  padding: var(--sp-md) var(--sp-2xl);
  font-family: 'Roboto', 'Inter', sans-serif;
  font-size: var(--fs-md);
  font-weight: 500;
  line-height: normal;
  text-align: center;
  cursor: pointer;
}

.btn-submit:hover {
  background: #0265d0;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--color-footer-bg);
  padding: var(--sp-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3xl);
}

.footer-top {
  display: flex;
  align-items: center;
}

.footer-certs {
  display: inline-flex;
  gap: var(--sp-lg);
  align-items: center;
  background: var(--color-white);
  padding: 16px var(--sp-lg);
  border-radius: 1000px;
}

.footer-certs-title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-text-high);
  line-height: var(--lh-lg);
  white-space: nowrap;
}

.footer-certs img {
  object-fit: contain;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.footer-links {
  color: var(--color-white);
  font-size: var(--fs-sm);
  font-weight: 400;
  line-height: var(--lh-sm);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  max-width: 844px;
}

.footer-social {
  display: flex;
  gap: var(--sp-lg);
  align-items: flex-end;
  flex-shrink: 0;
}

.footer-social a {
  display: block;
}

.footer-social img {
  width: 40px;
  height: 40px;
  display: block;
}
