@font-face {
  font-family: 'Nexa';
  src: local('Nexa Bold'), local('Nexa-Bold'), local('Nexa Heavy'), local('NexaBlack'), local('Nexa Regular'), local('Nexa');
  font-weight: 700 900;
  font-display: swap;
}

@font-face {
  font-family: 'Nexa';
  src: local('Nexa Light'), local('Nexa-Light'), local('Nexa Book'), local('Nexa Regular'), local('Nexa');
  font-weight: 300 400;
  font-display: swap;
}

:root {
  --color-green: #4ab164;
  --color-white: #fef9f1;
  --color-dark-blue: #08253e;
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Nexa', 'Nexa Bold', 'Nexa Black', 'Plus Jakarta Sans', sans-serif;

  /* ==========================================================================
     Pattern
     ========================================================================== */
  --footer-pattern-scale: 2;
  --footer-pattern-color: #0d2c46;
  --footer-pattern-angle: 0deg;
  --footer-pattern-size: 30px;
  --footer-pattern-gap-x: 5px;
  --footer-pattern-gap-y: 5px;
  --footer-pattern-offset-y: 17px;
  --footer-pattern-opacity: 1.0;

  --footer-icon-w: var(--footer-pattern-size);
  --footer-icon-h: calc(var(--footer-pattern-size) * 0.88457);
  --footer-step-x: calc(var(--footer-icon-w) + var(--footer-pattern-gap-x));
  --footer-step-y: calc(var(--footer-icon-h) + var(--footer-pattern-gap-y));
  --footer-tile-w: calc(var(--footer-step-x) * 2);
  --footer-tile-h: var(--footer-step-y);

  --bg-shape-x: 0px;
  --bg-shape-y: 0px;
  --bg-shape-width: auto;
  --bg-shape-height: 160%;
  --bg-shape-scale: 1;
  --bg-shape-opacity: 1.0;

  --slogan-x: 0px;
  --slogan-y: 0px;
  --slogan-size: 2.8rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-white);
  color: var(--color-dark-blue);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.one-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: var(--color-white);
  overflow: hidden;
}

/* Background Shape */
.main-bg-shape {
  position: absolute;
  top: 50%;
  left: 0;
  height: var(--bg-shape-height);
  width: auto;
  max-width: 80vw;
  pointer-events: none;
  z-index: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  opacity: var(--bg-shape-opacity);
  transform: translate(var(--bg-shape-x), calc(-50% + var(--bg-shape-y)));
}

.main-bg-shape img {
  height: 100%;
  width: auto;
  min-width: 480px;
  max-width: none;
  transform: scale(var(--bg-shape-scale));
  transform-origin: left center;
  object-fit: cover;
  object-position: left center;
  display: block;
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Header & Navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(254, 249, 241, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(8, 37, 62, 0.08);
  z-index: 100;
}

.site-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}

.navbar-container {
  width: 100%;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo img {
  height: 42px;
  width: auto;
  display: block;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-contact-group {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(8, 37, 62, 0.25);
  border-radius: 99px;
  background-color: transparent;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-contact-group:hover {
  border-color: var(--color-dark-blue);
  background-color: rgba(8, 37, 62, 0.04);
}

.btn-contact-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-dark-blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 12px 12px 18px;
  border-radius: 99px 0 0 99px;
  transition: color 0.2s ease;
}

.btn-contact-main:hover {
  color: var(--color-green);
}

.btn-contact-main svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn-contact-pipe {
  color: rgba(8, 37, 62, 0.25);
  font-weight: 300;
  font-size: 0.9rem;
  user-select: none;
  line-height: 1;
}

.btn-contact-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 16px 12px 10px;
  color: var(--color-dark-blue);
  border-radius: 0 99px 99px 0;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.btn-contact-copy:hover {
  color: var(--color-green);
  transform: scale(1.08);
}

.btn-contact-copy svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}

.copy-reveal-badge {
  position: absolute;
  inset: 0;
  background-color: var(--color-dark-blue);
  color: #83e7a7;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  pointer-events: none;
  clip-path: circle(0% at calc(100% - 18px) 50%);
  transition: clip-path 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: none;
  z-index: 10;
}

.copy-reveal-badge svg {
  width: 17px;
  height: 17px;
  fill: #83e7a7;
}

.btn-contact-group.copied .copy-reveal-badge {
  clip-path: circle(160% at calc(100% - 18px) 50%);
  pointer-events: auto;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-green);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 99px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-whatsapp:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Hero Content */
.hero-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 120px 24px 80px;
}

.slogan-container {
  flex: 1;
  max-width: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  transform: translate(var(--slogan-x), var(--slogan-y));
  position: relative;
  z-index: 5;
}

.hero-slogan {
  font-family: var(--font-heading);
  font-size: var(--slogan-size);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-dark-blue);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.desktop-slogan {
  display: flex;
}

.mobile-slogan {
  display: none;
}

.hero-slogan strong {
  font-weight: 900;
  color: var(--color-dark-blue);
}

.hero-content {
  flex: 1;
  max-width: 560px;
  z-index: 2;
  position: relative;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: -24px;
  bottom: -24px;
  left: -28px;
  right: -50vw;
  background-color: var(--color-white);
  border-radius: 28px 0 0 28px;
  z-index: -1;
  pointer-events: none;
}

.hero-product-title {
  font-family: var(--font-heading);
  font-size: 3.0rem;
  font-weight: bolder;
  color: var(--color-dark-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.hero-content p {
  font-size: 0.98rem;
  color: #334e68;
  line-height: 1.65;
  text-align: justify;
}

.hero-content p+p {
  margin-top: 16px;
}

.highlight {
  font-weight: 700;
  background-color: #83e7a7;
  color: var(--color-dark-blue);
  padding: 1px 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-content strong {
  font-weight: 700;
  color: var(--color-dark-blue);
}

.hero-qualities {
  margin-top: 28px;
  background-color: var(--color-green);
  border-radius: 24px 0 24px 0;
  padding: 24px 28px;
  width: 100%;
  box-sizing: border-box;
}

.hero-qualities picture {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-qualities img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Footer */
.footer {
  position: relative;
  background-color: var(--color-dark-blue);
  text-align: center;
  padding: 40px 24px;
  overflow: hidden;
}

.footer-pattern-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250vmax;
  height: 250vmax;
  background-color: var(--footer-pattern-color);
  transform: translate(-50%, -50%) rotate(var(--footer-pattern-angle));
  transform-origin: center center;
  opacity: var(--footer-pattern-opacity);
  pointer-events: none;
  z-index: 1;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer p {
  color: #a0aec0;
  /* cinza */
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-link {
  color: #a0aec0;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--color-white);
  text-decoration: underline;
}

/* Legal / Privacy Policy Page (Minimalist & Editorial) */
.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
}

.legal-main {
  flex: 1;
  padding: 140px 24px 90px;
}

.legal-container {
  max-width: 740px;
  margin: 0 auto;
}

.legal-header {
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(8, 37, 62, 0.12);
}

.legal-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  color: var(--color-dark-blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.legal-updated {
  font-size: 0.88rem;
  color: #718096;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.legal-section h2 {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  color: var(--color-dark-blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}

.legal-section p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #2d3748;
  margin-bottom: 14px;
  text-align: justify;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-list {
  list-style: none;
  padding-left: 0;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-list li {
  position: relative;
  padding-left: 20px;
  font-size: 1.0rem;
  line-height: 1.75;
  color: #2d3748;
}

.legal-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 700;
}

.legal-section strong {
  color: var(--color-dark-blue);
  font-weight: 700;
}

.legal-contact-info {
  margin-top: 14px;
  padding-left: 18px;
  border-left: 2px solid var(--color-green);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-contact-info p {
  margin-bottom: 0;
  font-size: 0.98rem;
  color: #2d3748;
}

.legal-contact-info a {
  color: var(--color-green);
  font-weight: 700;
  text-decoration: none;
}

.legal-contact-info a:hover {
  text-decoration: underline;
}

.legal-actions {
  margin-top: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(8, 37, 62, 0.1);
}

.legal-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-dark-blue);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.legal-back-link:hover {
  color: var(--color-green);
  transform: translateX(-4px);
}

.legal-back-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

/* Unsubscribe Page */
.unsubscribe-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.unsubscribe-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-dark-blue);
}

.unsubscribe-input {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--color-dark-blue);
  background-color: #ffffff;
  border: 1px solid rgba(8, 37, 62, 0.22);
  border-radius: 8px;
  outline: none;
}

.unsubscribe-input:focus {
  border-color: var(--color-green);
}

.unsubscribe-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 13px 30px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
  background-color: var(--color-green);
  border: none;
  border-radius: 99px;
  cursor: pointer;
}

.unsubscribe-hint {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #718096;
}

.unsubscribe-hint strong {
  color: var(--color-dark-blue);
}

/* Responsive */

@media (max-width: 1150px) {
  .navbar {
    padding: 16px 0;
  }

  .brand-logo img {
    height: 38px;
  }

  .navbar-actions {
    gap: 8px;
  }

  .btn-contact-main {
    padding: 8px 8px 8px 12px;
    font-size: 0.8rem;
    gap: 5px;
  }

  .btn-contact-main svg {
    width: 15px;
    height: 15px;
  }

  .btn-contact-pipe {
    font-size: 0.8rem;
  }

  .btn-contact-copy {
    padding: 8px 10px 8px 6px;
  }

  .btn-contact-copy svg {
    width: 14px;
    height: 14px;
  }

  .copy-reveal-badge {
    font-size: 0.8rem;
    gap: 5px;
  }

  .copy-reveal-badge svg {
    width: 14px;
    height: 14px;
  }

  .btn-whatsapp {
    padding: 9px 16px;
    font-size: 0.82rem;
    gap: 7px;
  }

  .btn-whatsapp svg {
    width: 17px;
    height: 17px;
  }

  .hero-container {
    padding: 135px 16px 60px;
    gap: 36px;
    align-items: center;
    text-align: center;
  }

  /* Forma de fundo oculta no mobile */
  .main-bg-shape {
    display: none !important;
  }

  .desktop-slogan {
    display: none;
  }

  .mobile-slogan {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 36px auto -10px;
  }

  .slogan-container {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
    transform: none;
    margin: 0 auto;
  }

  .hero-slogan {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.25;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    text-align: center;
  }

  .hero-content::before {
    display: none;
  }

  .hero-product-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 16px;
  }

  .hero-content p {
    font-size: 1.05rem;
    line-height: 1.68;
    text-align: justify;
  }

  .hero-content p+p {
    margin-top: 16px;
  }

  .hero-qualities {
    padding: 16px 20px;
    border-radius: 18px 0 18px 0;
    margin: 26px auto 0;
    width: 100%;
    max-width: 320px;
  }

  .hero-qualities img {
    max-width: 100%;
  }

  .footer {
    padding: 36px 20px;
  }

  .legal-main {
    padding: 135px 20px 60px;
  }

  .legal-title {
    font-size: 2.1rem;
  }

  .legal-section h2 {
    font-size: 1.15rem;
  }

  .legal-section p,
  .legal-list li {
    font-size: 0.95rem;
    text-align: left;
  }
}

@media (max-width: 580px) {
  .container {
    padding: 0 16px;
  }

  .navbar {
    padding: 10px 0;
    gap: 8px;
    justify-content: center;
  }

  .brand-logo img {
    height: 30px;
  }

  .navbar-actions {
    gap: 6px;
  }

  .btn-contact-main {
    padding: 7px 6px 7px 10px;
    font-size: 0.72rem;
    gap: 4px;
  }

  .btn-contact-main svg {
    width: 13px;
    height: 13px;
  }

  .btn-contact-pipe {
    font-size: 0.75rem;
  }

  .btn-contact-copy {
    padding: 7px 8px 7px 4px;
  }

  .btn-contact-copy svg {
    width: 12px;
    height: 12px;
  }

  .copy-reveal-badge {
    font-size: 0.72rem;
    gap: 4px;
  }

  .copy-reveal-badge svg {
    width: 12px;
    height: 12px;
  }

  .btn-whatsapp {
    padding: 8px 12px;
    font-size: 0.74rem;
    gap: 5px;
  }

  .btn-whatsapp svg {
    width: 14px;
    height: 14px;
  }

  .hero-container {
    padding: 130px 14px 50px;
    gap: 28px;
  }

  .legal-main {
    padding: 125px 16px 50px;
  }

  .mobile-slogan {
    max-width: 280px;
    margin: 28px auto -12px;
  }

  .hero-slogan {
    font-size: 1.55rem;
  }

  .hero-product-title {
    font-size: 1.85rem;
    margin-bottom: 14px;
  }

  .hero-content {
    padding: 0 10px;
  }

  .hero-content p {
    font-size: 1.0rem;
    line-height: 1.65;
    text-align: justify;
  }

  .hero-qualities {
    padding: 14px 16px;
    border-radius: 16px 0 16px 0;
    margin: 22px auto 0;
    max-width: 280px;
  }
}