:root {
  --black: #020814;
  --blue: #37b8ff;
  --blue-dark: #0b2641;
  --lime: #e6f200;
  --white: #ffffff;
  --milk: #fff7ec;
  --text-soft: #dcecf7;
  --border: rgba(103, 180, 255, 0.16);
  --panel: rgba(9, 27, 48, 0.72);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 15% 0%, rgba(55, 184, 255, 0.18), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(54, 122, 255, 0.16), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(11, 38, 65, 0.26), transparent 34%),
    linear-gradient(180deg, #020814 0%, #06111f 26%, #08192d 58%, #091726 100%);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.25s;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--lime);
  color: #000000;
  padding: 14px 22px;
  font-weight: 800;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(0, 174, 239, 0.45);
  padding: 14px 22px;
}

.btn-sm {
  padding: 10px 16px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
}

/* =========================
   HEADER COM PNG TRANSPARENTE SOBREPOSTA
   ========================= */

.topbar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: transparent;
  border-bottom: none;
  overflow: visible;
  isolation: isolate;
  transition:
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
  will-change: transform, opacity;
}

.topbar.is-hidden {
  transform: translateY(calc(-100% - 460px));
  opacity: 0;
  pointer-events: none;
}

.topbar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 170px;
  background: linear-gradient(
    to bottom,
    rgba(3, 12, 24, 0.62) 0%,
    rgba(3, 12, 24, 0.42) 48%,
    rgba(3, 12, 24, 0.00) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.topbar-overlay {
  position: absolute;
  top: -2px;
  left: 50%;
  width: 100%;
  min-width: 1180px;
  max-width: 1920px;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  line-height: 0;
}

.topbar-overlay img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.topbar-content {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0 16px;
  position: relative;
  z-index: 4;
}

.brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 4;
}

.brand-logo {
  height: 180px;
  width: auto;
  display: block;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.42));
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  position: relative;
  z-index: 4;
}

.nav a {
  color: #ffffff;
  transition: 0.25s;
  font-weight: 700;
  text-shadow:
    0 3px 16px rgba(0, 0, 0, 0.95),
    0 0 8px rgba(0, 0, 0, 0.8);
}

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

.nav .btn-primary,
.nav .btn-primary:hover,
.nav .btn-primary:focus,
.nav .btn-primary:active,
.nav .btn-primary:visited {
  color: #000000;
  text-shadow: none;
}

/* =========================
   HERO
   ========================= */

.hero {
  position: relative;
  overflow: hidden;
  padding: 315px 0 58px;
  margin-top: -118px;
  background:
    linear-gradient(rgba(7, 27, 49, 0.32), rgba(2, 8, 20, 0.58)),
    url("imagens/background.png") center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 18, 34, 0.14), rgba(4, 14, 28, 0.34));
  backdrop-filter: blur(2px);
  z-index: 1;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(110px);
  opacity: 0.16;
  pointer-events: none;
  z-index: 1;
}

.hero-glow-1 {
  width: 320px;
  height: 320px;
  background: var(--blue);
  top: -80px;
  right: 5%;
}

.hero-glow-2 {
  width: 260px;
  height: 260px;
  background: var(--lime);
  left: -70px;
  top: 160px;
  opacity: 0.1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.tag,
.section-title span,
.small-label {
  display: inline-block;
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.65);
}

.hero-text h1 {
  margin-top: 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.1;
  font-weight: 900;
  max-width: 900px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.75);
}

.hero-text h1 span {
  color: var(--blue);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.75);
}

.hero-text p {
  margin-top: 24px;
  max-width: 780px;
  color: var(--text-soft);
  font-size: 18px;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.7);
}

.hero-text strong {
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.7);
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-highlights {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mini-card,
.card,
.section-box,
.form-panel,
.faq-item,
.cta-box {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(10, 30, 52, 0.88), rgba(6, 18, 33, 0.86));
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  border-radius: 24px;
}

.mini-card {
  padding: 18px;
  backdrop-filter: blur(6px);
}

.mini-card strong {
  display: block;
  color: var(--lime);
  font-size: 16px;
}

.mini-card span {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 14px;
}

.hero-panel {
  padding: 12px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(10, 40, 70, 0.88), rgba(4, 15, 29, 0.88));
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.info-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(10, 34, 56, 0.68);
  border: 1px solid rgba(0, 174, 239, 0.2);
  backdrop-filter: blur(8px);
}

.info-card + .info-card {
  margin-top: 18px;
}

.info-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.info-header p,
.info-card > p:first-child {
  color: var(--blue);
  font-size: 14px;
}

.info-header h2,
.info-card h2 {
  margin-top: 6px;
  font-size: 28px;
}

.pill,
.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
}

.pill {
  padding: 7px 12px;
  background: rgba(230, 242, 0, 0.12);
  color: var(--lime);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.info-box {
  background: rgba(10, 28, 48, 0.78);
  border-radius: 18px;
  padding: 18px;
}

.info-box small {
  display: block;
  color: #9bb2c3;
}

.info-box strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
}

.muted {
  color: var(--text-soft);
  margin-top: 12px;
}

.chip-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 8px 12px;
  border: 1px solid rgba(0, 174, 239, 0.25);
  color: var(--white);
  background: rgba(0, 174, 239, 0.08);
}

.description,
.products,
.advantages,
.faq,
.cta-final {
  padding: 30px 0;
}

/* =========================
   ESPAÇO PRINCIPAL PARA IMAGEM
   Desktop: exibe a arte principal centralizada e sem cortes.
   ========================= */

.main-image-space {
  padding: 6px 0 24px;
  margin-top: -2px;
}

.main-image-frame {
  width: 100%;
  display: block;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.main-image-picture {
  display: block;
  width: 100%;
}

.main-image-banner {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  border-radius: 20px;
  box-shadow: none;
}

@media (max-width: 980px) {
  .main-image-banner {
    border-radius: 18px;
  }
}

@media (max-width: 640px) {
  .main-image-space {
    padding: 6px 0 74px;
  }

  .main-image-frame {
    display: flex;
    justify-content: center;
  }

  .main-image-picture {
    width: 100%;
    max-width: 430px;
  }

  .main-image-banner {
    width: 100%;
    border-radius: 14px;
  }


  .advantages {
    padding-top: 44px;
  }
}

.section-box {
  padding: 28px;
}

.section-box h2,
.section-title h2,
.cta-box h2,
.form-panel h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 900;
}

.section-box p,
.section-title p,
.card p,
.form-panel p,
.audience-box p,
.faq-item p,
.cta-box p {
  margin-top: 16px;
  color: var(--text-soft);
}

.section-title {
  margin-bottom: 30px;
}

.section-title.center {
  text-align: center;
}

.section-title.center p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.product-image-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}

.product-image-card {
  position: relative;
  display: block;
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a2238;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-image-card img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.35s ease;
}

.product-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 5%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.product-image-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.35s ease;
}

.product-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(230, 242, 0, 0.14);
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.product-image-overlay h3 {
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 8px;
  color: #ffffff;
}

.product-image-overlay p {
  color: #d9e4ea;
  font-size: 16px;
}

.product-image-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
  border-color: rgba(0, 174, 239, 0.45);
}

.product-image-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.product-image-card:hover .product-image-overlay {
  transform: translateY(-4px);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  padding: 28px;
  transition: 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 174, 239, 0.4);
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 174, 239, 0.12);
  border: 1px solid rgba(0, 174, 239, 0.3);
  color: var(--blue);
  margin-bottom: 18px;
  font-size: 22px;
}

.card h3 {
  font-size: 22px;
}

.benefits-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.benefit-item {
  padding: 18px;
  border-radius: 18px;
  color: var(--white);
  background: rgba(10, 34, 56, 0.55);
  border: 1px solid rgba(0, 174, 239, 0.14);
}

.audience-box {
  margin-top: 24px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(55, 184, 255, 0.08);
  border: 1px solid rgba(55, 184, 255, 0.16);
}

.audience-box h3 {
  font-size: 22px;
  color: var(--lime);
}

.form-panel {
  padding: 28px;
  background: rgba(10, 34, 56, 0.35);
  border: 1px solid rgba(0, 174, 239, 0.22);
}

.lead-form {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: block;
}

.lead-form span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 14px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  outline: none;
  font-size: 15px;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #cfe3ee;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "▼";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 12px;
  pointer-events: none;
}

.lead-form select {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 42px;
}

.lead-form select option {
  background: #0a2238;
  color: #ffffff;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.15);
}

.form-note,
.form-message {
  font-size: 13px;
  color: #9bb2c3;
  margin-top: 14px;
}

.form-message.success {
  color: var(--lime);
}

.form-message.error {
  color: #ff8a8a;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 20px 22px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 19px;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.cta-box {
  text-align: center;
  padding: 40px 28px;
  background: linear-gradient(90deg, rgba(14, 49, 82, 0.96), rgba(7, 28, 48, 0.96));
}

.cta-box p {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box .btn {
  margin-top: 22px;
}

/* =========================
   FOOTER COM LEITE NA BASE
   ========================= */

.footer {
  position: relative;
  margin-top: 40px;
  padding: 96px 0 28px;
  overflow: hidden;
  border-top: none;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 22%, rgba(55, 184, 255, 0.10), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(36, 122, 255, 0.10), transparent 26%),
    linear-gradient(
      to bottom,
      #031020 0%,
      #07182c 48%,
      #0a2238 100%
    );
}

.footer-milk {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: block;
  width: 100%;
  max-width: 2048px;
  height: auto;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  opacity: 1;
  filter: none;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(3, 16, 32, 0.02) 0%,
      rgba(3, 16, 32, 0.05) 22%,
      rgba(3, 16, 32, 0.09) 46%,
      rgba(3, 16, 32, 0.14) 68%,
      rgba(3, 16, 32, 0.22) 100%
    );
}

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

.footer-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: end;
}

.footer-brand {
  max-width: 650px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(4, 14, 28, 0.58), rgba(4, 14, 28, 0.24));
  border: 1px solid rgba(103, 180, 255, 0.10);
  backdrop-filter: blur(5px);
}

.footer-brand h3 {
  margin-top: 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.footer-brand p {
  margin-top: 14px;
  color: #f5fbff;
  font-size: 16px;
  max-width: 560px;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.38);
}

.footer-contact-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 18, 33, 0.90);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.30);
}

.footer-contact-title {
  display: inline-block;
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.footer-social-list {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.05);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.footer-social-link:hover {
  transform: translateY(-3px);
  border-color: rgba(230, 242, 0, 0.4);
  background: rgba(255, 255, 255, 0.09);
}

.social-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--lime);
  background: rgba(230, 242, 0, 0.12);
  border: 1px solid rgba(230, 242, 0, 0.18);
}

.social-icon svg {
  width: 22px;
  height: 22px;
}

.footer-social-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-social-text strong {
  font-size: 16px;
  color: var(--white);
}

.footer-social-text span {
  font-size: 14px;
  color: #f2f8fc;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: #ffffff;
  font-size: 14px;
}

.footer-bottom span {
  color: #ffffff;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.55);
  background: rgba(4, 12, 24, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

/* =========================
   RESPONSIVO
   ========================= */

@media (max-width: 1024px) {

  .main-image-space {
    padding: 0 0 22px;
    margin-top: -4px;
  }

  .main-image-frame {
    min-height: 160px;
    aspect-ratio: 16 / 6.2;
    border-radius: 22px;
    background-position: center center;
  }
  .hero-grid,
  .advantages-grid,
  .cards-grid,
  .product-image-links {
    grid-template-columns: 1fr;
  }

  .hero-highlights,
  .benefits-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .topbar::before {
    height: 140px;
  }

  .topbar-overlay {
    min-width: 1040px;
    top: 0;
  }

  .topbar-content {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    min-height: 118px;
    padding: 12px 0 18px;
  }

  .brand-logo {
    height: 120px;
  }

  .nav {
    width: 100%;
    justify-content: center;
    gap: 10px 14px;
  }

  .nav a {
    font-size: 14px;
  }

  .topbar.is-hidden {
    transform: translateY(calc(-100% - 360px));
  }

  .hero {
    padding-top: 292px;
    margin-top: -96px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .hero {
    padding-bottom: 56px;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .btn-secondary,
  .btn-primary {
    width: 100%;
  }

  .section-box,
  .card,
  .form-panel,
  .cta-box,
  .faq-item,
  .mini-card {
    border-radius: 18px;
  }

  .info-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-header h2,
  .info-card h2 {
    font-size: 24px;
  }

  .section-box h2,
  .section-title h2,
  .cta-box h2,
  .form-panel h2 {
    font-size: 30px;
  }

  .faq-item summary {
    font-size: 17px;
  }

  .product-image-card,
  .product-image-card img {
    min-height: 320px;
  }

  .product-image-overlay h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {

  .main-image-space {
    padding: 0 0 18px;
  }

  .main-image-frame {
    min-height: 145px;
    aspect-ratio: 16 / 8;
    border-radius: 18px;
  }
  .topbar::before {
    height: 122px;
  }

  .topbar-overlay {
    min-width: 920px;
    top: 0;
  }

  .topbar-content {
    padding: 12px 0 14px;
  }

  .brand-logo {
    height: 104px;
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
  }

  .nav a {
    text-align: center;
  }

  .topbar.is-hidden {
    transform: translateY(calc(-100% - 300px));
  }

  .hero {
    padding-top: 260px;
    margin-top: -82px;
  }

  .hero-grid,
  .advantages-grid,
  .cards-grid,
  .hero-highlights,
  .benefits-grid,
  .info-grid,
  .product-image-links {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .tag,
  .section-title span,
  .small-label {
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    font-size: 16px;
  }
}

/* =========================
   RESPONSIVO DO FOOTER
   ========================= */

@media (max-width: 900px) {
  .footer {
    padding: 78px 0 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 720px) {
  .footer {
    padding: 64px 0 22px;
  }

  .footer-milk {
    width: 128%;
    max-width: none;
  }

  .footer-brand {
    padding: 16px 16px 18px;
  }

  .footer-contact-card {
    padding: 20px;
    border-radius: 20px;
  }

  .social-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .footer-brand h3 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 54px 0 20px;
  }

  .footer-milk {
    width: 150%;
  }

  .footer-social-link {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .footer-social-text strong {
    font-size: 15px;
  }

  .footer-social-text span,
  .footer-bottom {
    font-size: 13px;
  }

  .footer-bottom {
    gap: 10px;
  }

  .footer-bottom span {
    width: 100%;
    text-align: center;
  }
}


/* =========================================================
   MOBILE ONLY - NAVBAR/LEITE ACIMA DO BACKGROUND
   Correção feita somente no mobile.
   Mantém a navbar/leite por cima e faz o background começar
   atrás do leite para remover a faixa azul.
   ========================================================= */

@media (max-width: 640px) {
  .topbar {
    z-index: 1000 !important;
    overflow: visible !important;
    isolation: isolate !important;
    background: transparent !important;
  }

  .topbar::before {
    z-index: 1 !important;
    pointer-events: none !important;
  }

  .topbar-overlay {
    top: 0 !important;
    z-index: 2 !important;
    overflow: visible !important;
    max-height: none !important;
  }

  .topbar-content,
  .brand,
  .brand-logo,
  .nav {
    position: relative !important;
    z-index: 10 !important;
  }

  .hero {
    position: relative !important;
    z-index: 0 !important;
    margin-top: -205px !important;
    padding-top: 365px !important;
    background-position: center top !important;
  }

  .hero::before {
    z-index: 1 !important;
  }

  .hero-grid,
  .hero-text,
  .hero-panel {
    position: relative !important;
    z-index: 2 !important;
  }
}

@media (max-width: 480px) {
  .topbar-overlay {
    top: 0 !important;
  }

  .hero {
    margin-top: -220px !important;
    padding-top: 380px !important;
  }
}

/* =========================================================
   DESKTOP - LEITE DA NAVBAR UM POUCO MAIS ESCURO
   Escurece suavemente o leite no desktop, sem afetar mobile.
   ========================================================= */

@media (min-width: 641px) {
  .topbar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -22px;
    height: 240px;
    z-index: 3;
    pointer-events: none;
    background:
      radial-gradient(
        ellipse at 12% 36%,
        rgba(0, 0, 0, 0.38) 0%,
        rgba(0, 0, 0, 0.28) 32%,
        rgba(0, 0, 0, 0.14) 58%,
        rgba(0, 0, 0, 0.05) 80%,
        rgba(0, 0, 0, 0) 100%
      ),
      linear-gradient(
        to bottom,
        rgba(2, 8, 20, 0.34) 0%,
        rgba(2, 8, 20, 0.24) 36%,
        rgba(2, 8, 20, 0.12) 64%,
        rgba(2, 8, 20, 0.04) 84%,
        rgba(2, 8, 20, 0) 100%
      );
    filter: blur(9px);
    transform: translateY(-6px) scaleY(1.04);
    opacity: 0.82;
    -webkit-mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 66%,
      rgba(0, 0, 0, 0.68) 84%,
      rgba(0, 0, 0, 0) 100%
    );
    mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 66%,
      rgba(0, 0, 0, 0.68) 84%,
      rgba(0, 0, 0, 0) 100%
    );
  }
}

/* =========================================================
   DESKTOP - RESTAURAR ESCRITAS ACIMA DO LEITE
   Mantém as escritas por cima do leite e mais legíveis.
   ========================================================= */

@media (min-width: 641px) {
  .hero-grid,
  .hero-text,
  .hero-text .tag,
  .hero-text h1,
  .hero-text p,
  .hero-actions,
  .hero-highlights,
  .hero-panel {
    position: relative;
    z-index: 1200;
  }

  .hero-text .tag,
  .hero-text h1,
  .hero-text p,
  .hero-text strong,
  .hero-text h1 span {
    text-shadow:
      0 2px 4px rgba(0, 0, 0, 0.98),
      0 6px 16px rgba(0, 0, 0, 0.88),
      0 0 24px rgba(0, 0, 0, 0.72);
  }

  .hero-text .tag {
    color: var(--lime);
    font-weight: 900;
    -webkit-text-stroke: 0.35px rgba(0, 0, 0, 0.55);
  }

  .topbar-content,
  .brand,
  .brand-logo,
  .nav {
    position: relative;
    z-index: 1300;
  }
}

/* =========================================================
   MOBILE ONLY - LOGO COM TONALIDADE REALÇADA
   Realça a logo apenas no mobile.
   ========================================================= */

@media (max-width: 640px) {
  .brand-logo {
    filter:
      drop-shadow(0 12px 16px rgba(0, 0, 0, 0.78))
      drop-shadow(0 2px 5px rgba(0, 0, 0, 0.86))
      saturate(1.18)
      brightness(1.08)
      contrast(1.12) !important;
  }
}

/* =========================================================
   MOBILE ONLY - LEITE DA NAVBAR MAIS SUAVE
   Mantém leve escurecimento no mobile, mas sem pesar demais.
   ========================================================= */

@media (max-width: 640px) {
  .topbar::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: -4px !important;
    height: 265px !important;
    z-index: 3 !important;
    pointer-events: none !important;
    display: block !important;
    background:
      radial-gradient(
        ellipse at 50% 26%,
        rgba(0, 0, 0, 0.22) 0%,
        rgba(0, 0, 0, 0.16) 36%,
        rgba(0, 0, 0, 0.08) 64%,
        rgba(0, 0, 0, 0.03) 84%,
        rgba(0, 0, 0, 0) 100%
      ),
      linear-gradient(
        to bottom,
        rgba(2, 8, 20, 0.20) 0%,
        rgba(2, 8, 20, 0.13) 40%,
        rgba(2, 8, 20, 0.06) 70%,
        rgba(2, 8, 20, 0.02) 88%,
        rgba(2, 8, 20, 0) 100%
      ) !important;
    filter: blur(6px) !important;
    transform: translateY(-2px) scaleY(1.02) !important;
    opacity: 0.50 !important;
    -webkit-mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 60%,
      rgba(0, 0, 0, 0.54) 82%,
      rgba(0, 0, 0, 0) 100%
    ) !important;
    mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 60%,
      rgba(0, 0, 0, 0.54) 82%,
      rgba(0, 0, 0, 0) 100%
    ) !important;
  }

  .topbar-overlay {
    z-index: 2 !important;
  }

  .topbar-content,
  .brand,
  .brand-logo,
  .nav {
    position: relative !important;
    z-index: 10 !important;
  }
}

@media (max-width: 480px) {
  .topbar::after {
    top: -3px !important;
    height: 280px !important;
    filter: blur(5px) !important;
    opacity: 0.46 !important;
  }
}

/* =========================================================
   MOBILE ONLY - BACKGROUND REALMENTE VISÍVEL
   Mostra melhor a imagem da home no mobile sem afetar desktop.
   ========================================================= */

@media (max-width: 640px) {
  .hero {
    background:
      linear-gradient(
        180deg,
        rgba(2, 8, 20, 0.02) 0%,
        rgba(2, 8, 20, 0.08) 48%,
        rgba(2, 8, 20, 0.20) 100%
      ),
      url("imagens/background.png") 66% 36% / auto 138% no-repeat !important;
  }

  .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(2, 8, 20, 0.00) 0%,
        rgba(2, 8, 20, 0.05) 46%,
        rgba(2, 8, 20, 0.18) 100%
      ) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .hero-text .tag,
  .hero-text h1,
  .hero-text h1 span,
  .hero-text p,
  .hero-text strong {
    text-shadow:
      0 3px 5px rgba(0, 0, 0, 1),
      0 8px 20px rgba(0, 0, 0, 0.96),
      0 0 30px rgba(0, 0, 0, 0.86) !important;
  }

  .hero-text .tag {
    -webkit-text-stroke: 0.45px rgba(0, 0, 0, 0.72);
  }
}

@media (max-width: 480px) {
  .hero {
    background:
      linear-gradient(
        180deg,
        rgba(2, 8, 20, 0.02) 0%,
        rgba(2, 8, 20, 0.07) 48%,
        rgba(2, 8, 20, 0.20) 100%
      ),
      url("imagens/background.png") 67% 36% / auto 140% no-repeat !important;
  }
}

/* =========================================================
   MOBILE ONLY - LEITE DA NAVBAR ESCURO CONTROLADO
   Recoloca contraste no leite do mobile sem pesar demais.
   ========================================================= */

@media (max-width: 640px) {
  .topbar::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: -4px !important;
    height: 270px !important;
    z-index: 3 !important;
    pointer-events: none !important;
    display: block !important;
    background:
      radial-gradient(
        ellipse at 50% 26%,
        rgba(0, 0, 0, 0.34) 0%,
        rgba(0, 0, 0, 0.24) 36%,
        rgba(0, 0, 0, 0.12) 64%,
        rgba(0, 0, 0, 0.04) 84%,
        rgba(0, 0, 0, 0) 100%
      ),
      linear-gradient(
        to bottom,
        rgba(2, 8, 20, 0.30) 0%,
        rgba(2, 8, 20, 0.20) 40%,
        rgba(2, 8, 20, 0.09) 70%,
        rgba(2, 8, 20, 0.03) 88%,
        rgba(2, 8, 20, 0) 100%
      ) !important;
    filter: blur(6px) !important;
    transform: translateY(-2px) scaleY(1.02) !important;
    opacity: 0.68 !important;
    -webkit-mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 60%,
      rgba(0, 0, 0, 0.54) 82%,
      rgba(0, 0, 0, 0) 100%
    ) !important;
    mask-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 60%,
      rgba(0, 0, 0, 0.54) 82%,
      rgba(0, 0, 0, 0) 100%
    ) !important;
  }
}

@media (max-width: 480px) {
  .topbar::after {
    top: -3px !important;
    height: 285px !important;
    filter: blur(5px) !important;
    opacity: 0.64 !important;
  }
}


/* =========================================================
   AJUSTE FINAL MOBILE - IMAGEM MAIOR E MAIS NÍTIDA
   Correção feita no código: remove rasterização por transform/filter
   e usa a imagem em alta resolução no máximo de largura útil.
   ========================================================= */

@media (max-width: 640px) {
  .main-image-space {
    padding-top: 6px !important;
    padding-bottom: 10px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .main-image-space .container {
    width: calc(100vw - 6px) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .main-image-frame {
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: auto !important;
    display: block !important;
    overflow: visible !important;
    border-radius: 0 !important;
  }

  .main-image-picture {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
  }

  .main-image-banner {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    border-radius: 14px !important;
    object-fit: contain !important;

    /* Nitidez: evita blur causado por rasterização do navegador */
    transform: none !important;
    filter: none !important;
    backface-visibility: visible !important;
    image-rendering: auto !important;
  }

  .advantages {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 480px) {
  .main-image-space .container {
    width: calc(100vw - 4px) !important;
  }

  .main-image-space {
    padding-bottom: 8px !important;
  }

  .main-image-banner {
    border-radius: 12px !important;
  }
}


/* =========================================================
   V14 - AJUSTES FINAIS MOBILE APÓS LANÇAMENTO
   1) Nova imagem das vacas no início da home (somente mobile)
   2) Logo maior sem alterar o espaçamento real da navbar
   3) Corrigir sensação de zoom / ocupar toda a largura sem desalinhar
   ========================================================= */
@media (max-width: 640px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  body {
    position: relative;
  }

  .container {
    width: min(100%, calc(100% - 24px)) !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .topbar {
    overflow: visible !important;
  }

  .topbar-overlay {
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  .topbar-content {
    padding-top: 12px !important;
    padding-bottom: 14px !important;
    gap: 14px !important;
  }

  .brand {
    overflow: visible !important;
  }

  .brand-logo {
    height: 104px !important;
    transform: scale(1.22) !important;
    transform-origin: center center !important;
  }

  .hero {
    margin-top: -206px !important;
    padding-top: 368px !important;
    background:
      linear-gradient(
        180deg,
        rgba(2, 8, 20, 0.06) 0%,
        rgba(2, 8, 20, 0.14) 48%,
        rgba(2, 8, 20, 0.26) 100%
      ),
      url("imagens/background-mobile-cows.png") center 36% / cover no-repeat !important;
  }

  .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(2, 8, 20, 0.02) 0%,
        rgba(2, 8, 20, 0.08) 48%,
        rgba(2, 8, 20, 0.20) 100%
      ) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .main-image-space .container {
    width: calc(100% - 12px) !important;
    max-width: 100% !important;
  }

  .main-image-banner {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100%, calc(100% - 20px)) !important;
  }

  .brand-logo {
    transform: scale(1.18) !important;
  }

  .hero {
    margin-top: -218px !important;
    padding-top: 382px !important;
    background:
      linear-gradient(
        180deg,
        rgba(2, 8, 20, 0.06) 0%,
        rgba(2, 8, 20, 0.14) 48%,
        rgba(2, 8, 20, 0.28) 100%
      ),
      url("imagens/background-mobile-cows.png") center 38% / cover no-repeat !important;
  }

  .main-image-space .container {
    width: calc(100% - 8px) !important;
  }
}


/* =========================================================
   V15 - CORREÇÃO MOBILE DA NAVBAR/LEITE/LOGO
   Restaura o tamanho do escorrido de leite, aumenta a logo
   de forma real e aproxima a navbar sem mexer no desktop.
   ========================================================= */
@media (max-width: 640px) {
  .topbar {
    overflow: visible !important;
  }

  .topbar-overlay {
    left: 50% !important;
    top: -4px !important;
    transform: translateX(-50%) !important;
    width: 162% !important;
    min-width: 680px !important;
    max-width: none !important;
    z-index: 2 !important;
  }

  .topbar-overlay img {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    display: block !important;
  }

  .topbar-content {
    min-height: 118px !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    gap: 0 !important;
  }

  .brand {
    margin-bottom: -22px !important;
    line-height: 0 !important;
  }

  .brand-logo {
    height: 142px !important;
    transform: none !important;
    transform-origin: center center !important;
  }

  .nav {
    margin-top: -4px !important;
    gap: 8px 12px !important;
  }

  .hero {
    margin-top: -218px !important;
    padding-top: 390px !important;
  }
}

@media (max-width: 480px) {
  .topbar-overlay {
    top: -6px !important;
    width: 185% !important;
    min-width: 700px !important;
  }

  .topbar-content {
    min-height: 112px !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    gap: 0 !important;
  }

  .brand {
    margin-bottom: -28px !important;
  }

  .brand-logo {
    height: 150px !important;
    transform: none !important;
  }

  .nav {
    margin-top: -6px !important;
    gap: 7px 10px !important;
  }

  .nav a {
    font-size: 13.5px !important;
  }

  .hero {
    margin-top: -230px !important;
    padding-top: 405px !important;
  }
}


/* =========================================================
   V16 - AJUSTES NOVOS
   1) Novo background desktop da home
   2) Em mobile deitado, manter a imagem mobile e remover espaço à direita
   3) Favicon configurado nos HTMLs
   ========================================================= */
.hero {
  background:
    linear-gradient(rgba(7, 27, 49, 0.32), rgba(2, 8, 20, 0.58)),
    url("imagens/background-desktop-cows.png") center center / cover no-repeat !important;
}

@media (max-width: 950px) and (orientation: landscape) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .container {
    width: min(100%, calc(100% - 24px)) !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .topbar {
    overflow: visible !important;
  }

  .topbar-overlay {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  .topbar-content {
    width: 100% !important;
  }

  .hero {
    margin-top: -118px !important;
    padding-top: 315px !important;
    background:
      linear-gradient(rgba(7, 27, 49, 0.32), rgba(2, 8, 20, 0.58)),
      url("imagens/background-mobile-cows.png") center center / cover no-repeat !important;
  }

  .main-image-space,
  .main-image-space .container,
  .main-image-banner {
    width: 100% !important;
    max-width: 100% !important;
  }
}
