
:root {
  --navy:        #004E74;
  --navy-dark:   #003452;
  --navy-deeper: #00253B;
  --green:       #A6C94B;
  --green-dark:  #8AB539;
  --gold:        #ECBB2E;
  --teal:        #117992;
  --teal-dark:   #0C6176;
  --cyan-light:  #5CBEBD;
  --cream:       #FAEBCC;
  --white:       #FFFFFF;
  --off-white:   #FAFBFC;
  --gray:        #F2F6F8;
  --border:      #E2EAF0;
  --text-dark:   #030406;
  --text-body:   #4A5568;
  --text-muted:  #718096;

  --r-sm:   6px;
  --r:      12px;
  --r-lg:   16px;
  --r-full: 999px;

  --shadow-xs: 0 1px 4px rgba(0,78,116,.06);
  --shadow-sm: 0 2px 12px rgba(0,78,116,.08);
  --shadow:    0 6px 28px rgba(0,78,116,.10);
  --shadow-lg: 0 16px 56px rgba(0,78,116,.14);
  --shadow-xl: 0 32px 80px rgba(0,0,0,.22);

  --transition: .25s ease;
  --max-w: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.mobile-br { display: none; }
.desktop-br { display: block; }

@media (max-width: 900px) {
  .mobile-br { display: block; }
  .desktop-br { display: none; }
}
html { scroll-behavior: auto; }
body { font-family: 'Lato', sans-serif; font-size: 16px; color: var(--text-body); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 72px 0 96px;
  position: relative;
}
.section-dark   { background: var(--navy); }
#app.section-dark { background: var(--navy-dark); padding-top: 96px; }
.section-gray   { background: var(--gray); }
.section-white  { background: var(--white); }
.section-teal   { background: linear-gradient(138deg, var(--teal-dark) 0%, var(--teal) 100%); }

.ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: var(--navy-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.15rem 0;
}
.ticker__item {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
}

#beneficios { padding-bottom: 64px; }
#modulos { padding-bottom: 48px; padding-top: 56px; }

#beneficios::before {
  content: '';
  position: absolute;
  top: -47px;
  left: 0;
  width: 100%;
  height: 48px;
  pointer-events: none;
  z-index: 2;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48'><path d='M0,48 C480,0 960,0 1440,48 L1440,48 L0,48 Z' fill='%23F2F6F8'/></svg>") bottom/100% no-repeat;
}

#beneficios::after {
  content: '';
  position: absolute;
  bottom: -47px;
  left: 0;
  width: 100%;
  height: 48px;
  pointer-events: none;
  z-index: 2;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48'><path d='M0,0 C480,48 960,48 1440,0 Z' fill='%23F2F6F8'/></svg>") top/100% no-repeat;
}

#modulos::before {
  content: '';
  position: absolute;
  top: -47px;
  left: 0;
  width: 100%;
  height: 48px;
  pointer-events: none;
  z-index: 2;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48'><path d='M0,48 C480,0 960,0 1440,48 L1440,48 L0,48 Z' fill='%23FFFFFF'/></svg>") bottom/100% no-repeat;
}

.section-header { margin-bottom: 4rem; }
.section-header.centered { text-align: center; }
.section-header h2 { margin-top: .5rem; }
.section-header p  { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: .75rem auto 0; }

.section-cta { text-align: center; margin-top: 3rem; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col-reverse { direction: rtl; }
.two-col-reverse > * { direction: ltr; }

h1 { font-size: clamp(2rem, 4.2vw, 3.25rem); font-weight: 900; line-height: 1.12; color: var(--text-dark); letter-spacing: -.5px; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight: 700; line-height: 1.2; color: var(--text-dark); letter-spacing: -.3px; }
h3 { font-size: 1.15rem; font-weight: 700; line-height: 1.3; color: var(--text-dark); }
h4 { font-size: 1rem; font-weight: 700; color: var(--text-dark); }
p  { line-height: 1.75; }

.overline {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: .25rem;
}
.overline-light { color: var(--green); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(169,209,75,.22);
  color: #d4ed6e;
  border: 1px solid rgba(169,209,75,.55);
  border-radius: var(--r-full);
  padding: .35rem 1rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: var(--r-full);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-sm  { padding: .5rem 1.5rem; font-size: .9rem; }
.btn-md  { padding: .7rem 2rem; font-size: 1rem; }
.btn-lg  { padding: .85rem 2.25rem; font-size: 1.05rem; }

.btn-primary {
  background: var(--green);
  color: var(--navy-dark);
  box-shadow: 0 4px 14px rgba(169,209,75,.35);
}
.btn-primary:hover {
  background: #b8de5c;
  box-shadow: 0 8px 24px rgba(166,201,75,.50);
}

.btn-white {
  background: var(--white);
  color: var(--navy-dark);
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.btn-white:hover {
  background: var(--green);
  color: var(--navy-dark);
  box-shadow: 0 8px 24px rgba(166,201,75,.50);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn-outline-dark {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
}
.btn-outline-dark:hover {
  background: var(--green);
  color: var(--navy-dark);
  border-color: var(--green);
  box-shadow: 0 8px 24px rgba(166,201,75,.50);
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav .nav__links a { color: var(--navy) !important; font-weight: 400; }
.nav .nav__links a:hover,
.nav .nav__links a.active { color: var(--navy-dark) !important; }
.nav .nav__hamburger span { background: var(--navy); }

.nav__logo-img { height: 54px; width: auto; }
.nav .nav__logo-white { display: none; }
.nav .nav__logo-dark  { display: block; }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: .95rem;
  font-weight: 400;
  position: relative;
  transition: color .3s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 1rem; }

.nav-mobile-cta { display: none; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background .3s;
  transition: var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  padding-top: 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--navy-deeper);
  position: relative;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.65) 0%,
    rgba(0,0,0,.70) 60%,
    rgba(0,0,0,.82) 100%
  );
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 100px;
}

.hero__content {
  max-width: 780px;
}

.hero__content h1 {
  color: var(--white);
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -.02em;
  text-wrap: balance;
  margin-bottom: 1rem;
}

.hero__subheadline {
  color: var(--green);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  text-wrap: balance;
  margin-bottom: 1.25rem;
}

.hero__sub {
  color: rgba(255,255,255,1);
  font-size: .975rem;
  line-height: 1.7;
  text-wrap: balance;
  margin-bottom: 2.25rem;
}

.hero__ctas {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.hero__trust strong { color: var(--green); }
.hero__trust .dot { opacity: .4; }

.hero__visual {
  position: relative;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.dashboard-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
  width: 100%;
}

.dc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.dc-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 900;
  font-size: .95rem;
  color: var(--navy);
}
.dc-logo i { color: var(--green); font-size: 1.1rem; }
.dc-live {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  color: #16a34a;
  background: rgba(22,163,74,.1);
  border-radius: var(--r-full);
  padding: .25rem .75rem;
}
.dc-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #16a34a;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

.dc-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 1rem;
}
.dc-metric {
  background: var(--gray);
  border-radius: var(--r);
  padding: .875rem 1rem;
}
.dc-label {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .2rem;
}
.dc-value {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: .2rem;
}
.dc-change { font-size: .72rem; font-weight: 700; }
.dc-change.up { color: #16a34a; }
.dc-change i { font-size: .6rem; }

.dc-chart {
  background: var(--gray);
  border-radius: var(--r);
  padding: .875rem 1rem;
  margin-bottom: 1rem;
}
.dc-chart-title {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .75rem;
}
.dc-bar-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
  font-size: .72rem;
  color: var(--text-body);
}
.dc-bar-row > span:first-child { width: 70px; flex-shrink: 0; }
.dc-bar {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.dc-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--teal), var(--green));
  border-radius: 4px;
  transition: width 1.2s ease;
}
.dc-fill.animated { width: var(--w); }
.dc-pct { width: 28px; text-align: right; font-size: .7rem; font-weight: 700; color: var(--navy); }

.dc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dc-active-badge {
  font-size: .72rem;
  font-weight: 700;
  color: var(--green-dark);
  background: rgba(169,209,75,.12);
  border: 1px solid rgba(169,209,75,.3);
  border-radius: var(--r-full);
  padding: .25rem .75rem;
}
.dc-time { font-size: .7rem; color: var(--text-muted); }

.hero-float {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: var(--r);
  padding: .875rem 1.125rem;
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  display: flex;
  align-items: center;
  gap: .875rem;
  font-size: .82rem;
}
.hero-float i { color: var(--green); font-size: 1.5rem; }
.hero-float strong { display: block; color: var(--navy); font-weight: 700; font-size: .9rem; }
.hero-float span { color: var(--text-muted); font-size: .75rem; }

.hero-wave {
  position: relative;
  margin-top: -1px;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 60px; }

.problems-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.problems-grid .glass-card { grid-column: span 2; }
.problems-grid .glass-card:nth-child(5) { grid-column: 2 / span 2; }
.problems-grid .glass-card:nth-child(6) { grid-column: 4 / span 2; }
.problems-grid .glass-card:nth-child(7) { grid-column: 6 / span 2; }

.glass-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: background var(--transition), border-color var(--transition),
              transform var(--transition);
}
.glass-card:hover {
  background: rgba(169,209,75,.1);
  border-color: rgba(169,209,75,.3);
  transform: translateY(-6px);
}
.glass-card-header {
  display: flex;
  align-items: center;
  gap: .625rem;
  margin-bottom: .6rem;
}
.glass-icon i { color: var(--green); font-size: 1.1rem; }
.glass-icon-img { width: 1.1rem; height: 1.1rem; filter: brightness(0) saturate(100%) invert(62%) sepia(52%) saturate(405%) hue-rotate(37deg) brightness(96%) contrast(88%); }
.glass-card h4 { color: rgba(255,255,255,.95); font-size: 1rem; }
.glass-card p  { color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.6; }

.problems-cta {
  text-align: center;
  margin: 0 auto;
}
.problems-cta p {
  color: rgba(255,255,255,.85);
  font-size: 1.15rem;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}
.problems-cta strong { color: var(--green); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem 2rem;
  border-top: 3px solid var(--green);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 7rem;
  margin-bottom: 3rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.feature-row:nth-child(even) .feature-visual { order: 2; }
.feature-row:nth-child(even) .feature-content { order: 1; }

.feature-visual {
  display: flex;
  justify-content: center;
}
.feature-img {
  width: 80%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  display: block;
}

.feature-content h3 { font-size: 1.5rem; margin-bottom: .75rem; color: var(--text-dark); }
.feature-content p  { color: var(--text-muted); font-size: .95rem; line-height: 1.7; }

.fc-icon-img {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
  flex-shrink: 0;
}

.feature-card-header {
  display: flex;
  align-items: center;
  gap: .625rem;
  margin-bottom: .6rem;
}
.feature-card h3 { color: var(--text-dark); font-size: 1rem; }
.feature-card p  { color: var(--text-muted); font-size: .88rem; line-height: 1.6; }

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.highlights-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 420px;
}
.highlights-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% center;
  display: block;
}

.highlights-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.highlight-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition), transform var(--transition);
}
.highlight-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.highlight-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.highlight-card__icon i {
  font-size: 1.1rem;
  color: var(--white);
}
.hl-card-icon-img { width: 1.25rem; height: 1.25rem; filter: brightness(0) invert(1); }

.highlight-card__body h3 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: .35rem;
}
.highlight-card__body p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.tabs-wrapper {
  display: flex;
  flex-direction: column;
}

.tabs-nav {
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: .5rem;
  margin-bottom: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tabs-dropdown {
  display: none;
  position: relative;
  padding: 0;
  margin-bottom: 2rem;
  background: transparent;
}
.tabs-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: .625rem;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--green);
  border-radius: var(--r-sm);
  padding: .75rem 1rem;
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
}
.dd-icon { width: 1rem; height: 1rem; flex-shrink: 0; }
.dd-chevron { width: .75rem; height: .75rem; opacity: .5; }
.tabs-dropdown__chevron {
  margin-left: auto;
  transition: transform var(--transition);
}
.tabs-dropdown.open .tabs-dropdown__chevron { transform: rotate(180deg); }
.tabs-dropdown__menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + .25rem);
  left: 0; right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  overflow: hidden;
  max-height: 70vh;
  overflow-y: auto;
}
.tabs-dropdown.open .tabs-dropdown__menu { display: flex; }
.tabs-dropdown__opt {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .75rem 1rem;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  font-family: 'Lato', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition), color var(--transition);
}
.tabs-dropdown__opt:last-child { border-bottom: none; }
.tabs-dropdown__opt:hover { background: #F8FAFC; color: var(--navy); }
.tabs-dropdown__opt.active {
  background: rgba(169,209,75,.07);
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.tabs-dropdown__opt.active::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: .6rem;
  margin-left: auto;
  color: var(--green);
  flex-shrink: 0;
  transform: rotate(180deg);
}

.tabs-dropdown__sub {
  display: none;
  flex-direction: column;
  background: #FAFBFC;
}
.tabs-dropdown__opt.active + .tabs-dropdown__sub { display: flex; }
.tabs-dropdown__sub-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1rem .55rem 2.5rem;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,.04);
  font-family: 'Lato', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
}
.tabs-dropdown__sub-item:last-child { border-bottom: 1px solid var(--border); }
.tabs-dropdown__sub-item:hover { color: var(--navy); background: rgba(169,209,75,.04); }
.tabs-dropdown__sub-item.active {
  color: var(--navy);
  font-weight: 700;
}
.tabs-dropdown__sub-item.active::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-align: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: .5rem 1.15rem;
  font-family: 'Lato', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn i { font-size: .85rem; }
.tab-icon { width: 1rem; height: 1rem; display: inline-block; vertical-align: middle; opacity: .5; transition: opacity var(--transition); }
.tab-btn:hover .tab-icon { opacity: .8; }
.tab-btn.active .tab-icon { opacity: 1; }
.tab-btn:hover {
  border-color: var(--green);
  color: var(--navy);
}
.tab-btn.active {
  background: var(--green);
  color: var(--navy-dark);
  border-color: var(--green);
}

.tabs-content { padding: 0; text-align: center; }

.tab-panel { display: none; animation: fadeTab .25s ease; }
.tab-panel.active { display: block; }
@keyframes fadeTab {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.module-layout {
  display: flex;
  gap: 2rem;
  text-align: left;
  align-items: center;
}
.module-sidebar {
  flex: 0 0 35%;
  border-right: 1px solid var(--border);
  padding-right: 1.5rem;
}
.module-sidebar h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: .4rem; }
.module-sidebar > p { font-size: .82rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.5; }
.module-sidebar__nav { display: flex; flex-direction: column; gap: .25rem; }

.feature-btn {
  display: flex;
  align-items: center;
  gap: .625rem;
  width: 100%;
  text-align: left;
  padding: .7rem 1rem;
  border: none;
  border-left: 3px solid transparent;
  border-radius: var(--r-sm);
  background: transparent;
  font-family: 'Lato', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.feature-btn:hover { background: #F8FAFC; color: var(--navy); }
.feature-btn.active {
  background: rgba(169,209,75,.07);
  color: var(--navy);
  border-left-color: var(--green);
}
.feature-btn i { font-size: .9rem; color: var(--green-dark); flex-shrink: 0; }
.check-icon { width: .9rem; height: .9rem; flex-shrink: 0; }

.module-detail { flex: 1; min-width: 0; min-height: 250px; }
.feature-detail { display: none; animation: fadeTab .25s ease; }
.feature-detail.active { display: flex; gap: 2rem; align-items: center; }
.feature-detail__text { flex: 0 0 35%; min-width: 0; }
.feature-detail__text h4 { font-size: 1.15rem; color: var(--navy); margin-bottom: .75rem; }
.feature-detail__text p { font-size: .9rem; color: var(--text-body); line-height: 1.65; }

.feature-detail__gallery {
  flex: 1;
  position: relative;
  aspect-ratio: 1/1;
  margin-top: 1.5rem;
}
.feature-detail__gallery .feat-img,
.feature-placeholder {
  position: absolute;
  width: 58%;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  cursor: pointer;
  transition: transform .4s cubic-bezier(.25,.8,.25,1), box-shadow .4s ease, z-index 0s;
}

.feature-detail__gallery .feat-img:nth-child(1),
.feature-placeholder:nth-child(1) { top: 0; right: 5%; z-index: 3; }
.feature-detail__gallery .feat-img:nth-child(2),
.feature-placeholder:nth-child(2) { bottom: 8%; right: 0; z-index: 2; }
.feature-detail__gallery .feat-img:nth-child(3),
.feature-placeholder:nth-child(3) { top: 28%; left: 0; z-index: 1; }

.feature-detail__gallery .feat-img:hover,
.feature-placeholder:hover {
  transform: scale(1.06) translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  z-index: 10 !important;
}

.feature-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.feature-placeholder:nth-child(2) { opacity: .7; }
.feature-placeholder:nth-child(3) { opacity: .4; }
.feature-placeholder i { font-size: 1.5rem; color: rgba(255,255,255,.25); }
.feature-placeholder span { font-size: .7rem; color: rgba(255,255,255,.35); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }

.col-text { display: flex; flex-direction: column; }
.col-text .btn { align-self: flex-start; }
.col-text h2 { margin-bottom: .75rem; }

.value-cards { display: flex; flex-direction: column; gap: .875rem; }

.value-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--r);
  border-left: 4px solid var(--green);
  padding: 1.125rem 1.25rem;
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.vc-icon { flex-shrink: 0; }
.vc-icon i { color: var(--teal); font-size: 1.1rem; }
.value-card h4 { margin-bottom: .25rem; font-size: .9rem; }
.value-card p  { font-size: .82rem; color: var(--text-muted); line-height: 1.55; }

.col-visual { display: flex; align-items: center; justify-content: center; }

.screen-mockup {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  width: 100%;
  max-width: 460px;
  border: 1px solid var(--border);
}

.sm-bar {
  background: #F0F4F8;
  padding: .6rem 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  border-bottom: 1px solid var(--border);
}
.sm-dots { display: flex; gap: .35rem; }
.sm-dots span { width: 10px; height: 10px; border-radius: 50%; background: #CBD5E0; }
.sm-dots span:nth-child(1) { background: #FC8181; }
.sm-dots span:nth-child(2) { background: #F6AD55; }
.sm-dots span:nth-child(3) { background: #68D391; }
.sm-bar > span { font-size: .7rem; color: var(--text-muted); }

.sm-body { display: flex; }

.sm-sidebar {
  width: 44px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .75rem 0;
  gap: .5rem;
}
.sm-nav-item {
  width: 30px; height: 30px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  cursor: pointer;
  transition: all var(--transition);
}
.sm-nav-item.active,
.sm-nav-item:hover {
  background: rgba(169,209,75,.2);
  color: var(--green);
}

.sm-main { flex: 1; padding: 1rem; }

.sm-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .5rem; margin-bottom: .875rem; }
.sm-kpi {
  background: var(--gray);
  border-radius: var(--r-sm);
  padding: .625rem .75rem;
}
.sm-kpi.green { background: rgba(169,209,75,.12); }
.sm-kpi > span { display: block; font-size: .9rem; font-weight: 900; color: var(--navy); line-height: 1.1; margin-bottom: .15rem; }
.sm-kpi.green > span { color: var(--green-dark); }
.sm-kpi small { font-size: .65rem; color: var(--text-muted); }
.sm-kpi > span small { font-size: .65rem; font-weight: 400; }

.sm-chart-area {
  display: flex;
  align-items: flex-end;
  gap: .375rem;
  height: 70px;
  padding: .5rem;
  background: var(--gray);
  border-radius: var(--r-sm);
  margin-bottom: .5rem;
}
.sm-chart-bar {
  flex: 1;
  background: rgba(18,122,148,.25);
  border-radius: 3px 3px 0 0;
  transition: background var(--transition);
}
.sm-chart-bar.active { background: var(--green); }
.sm-label { font-size: .62rem; color: var(--text-muted); text-align: center; }

.phone-wrap { position: relative; display: inline-flex; justify-content: center; width: 100%; }

.phone {
  width: 220px;
  background: #0A0A0A;
  border-radius: 36px;
  padding: 14px 10px 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,.5), inset 0 0 0 2px rgba(255,255,255,.08);
  position: relative;
}
.phone-notch {
  width: 60px; height: 20px;
  background: #0A0A0A;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 6px;
  position: relative;
  z-index: 1;
}
.phone-screen {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
}

.phone-bar {
  background: var(--navy);
  padding: .5rem .75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .7rem;
  font-weight: 700;
  color: var(--white);
}
.phone-bar i { color: var(--green); }

.offline-tag {
  background: rgba(255,255,255,.15);
  border-radius: var(--r-full);
  padding: .15rem .5rem;
  font-size: .62rem;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.offline-tag i { color: rgba(255,255,255,.5); }

.phone-content { padding: .75rem; }
.phone-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem .5rem;
  border-bottom: 1px solid var(--border);
}
.phone-row label {
  font-size: .65rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.phone-row span { font-size: .75rem; font-weight: 700; color: var(--navy); }

.phone-save {
  background: var(--green);
  color: var(--navy-dark);
  font-size: .72rem;
  font-weight: 700;
  text-align: center;
  padding: .625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}

.phone-bar-bottom {
  width: 80px; height: 4px;
  background: rgba(255,255,255,.25);
  border-radius: 2px;
  margin: 8px auto 0;
}

.sync-toast {
  position: absolute;
  bottom: -1rem;
  right: -2.5rem;
  background: var(--white);
  border-radius: var(--r);
  padding: .625rem 1rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.sync-toast i { color: var(--teal); }

.check-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-weight: 600;
}
.check-list li i { color: var(--green); font-size: 1rem; flex-shrink: 0; }

.section-armazem {
  background: var(--gold);
  padding-top: 96px;
}
.section-armazem h2 {
  color: var(--navy) !important;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  text-wrap: balance;
}
.section-armazem p {
  color: rgba(0,78,116,.9) !important;
  max-width: 30rem;
  text-wrap: balance;
}

.section-armazem .hl-rows {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr));
  gap: .5rem;
}
.section-armazem .hl-row {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .6rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(0,52,82,.16);
  border-radius: var(--r-lg);
  padding: 1.1rem .55rem;
  font-size: .8rem;
  line-height: 1.3;
  text-wrap: balance;
  transition: background var(--transition), border-color var(--transition),
              transform var(--transition);
}
.section-armazem .hl-row:hover {
  background: rgba(0,52,82,.035);
  border-color: rgba(0,52,82,.28);
  transform: translateY(-2px);
}
.section-armazem .hl-row span {
  color: var(--navy);
}
.section-armazem .hl-icon {
  background: none;
}
.section-armazem .btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.section-armazem .btn-primary:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.section-armazem .two-col { align-items: stretch; }
.section-armazem .col-visual { align-self: stretch; }
.section-armazem .armazem-img { height: 100%; object-fit: cover; object-position: 70% center; }

.armazem-badge {
  display: block;
  width: 160px;
  height: auto;
  margin-bottom: 1rem;
}
.armazem-img {
  width: 100%;
  border-radius: var(--r-lg);
  object-fit: cover;
}
#app .armazem-img {
  aspect-ratio: 5/4;
  object-position: center;
}
.section-armazem .armazem-img {
  box-shadow: var(--shadow-lg);
}

.hl-rows { display: flex; flex-direction: column; gap: .875rem; }
.hl-row {
  display: flex;
  align-items: center;
  gap: .875rem;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.hl-icon {
  flex-shrink: 0;
  width: 1.5rem;
  text-align: center;
}
.hl-icon i { color: var(--green); font-size: 1.1rem; }
.hl-icon-img { width: 1.25rem; height: 1.25rem; display: block; }

.stats-section {
  padding: 96px 0;
  background: linear-gradient(148deg, var(--navy-deeper) 0%, var(--navy-dark) 100%);
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0 2rem;
}
.stat-block {
  flex: 1;
  text-align: center;
  padding: 2rem 3rem;
  max-width: 280px;
}
.stat-num {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: .5rem;
  letter-spacing: -1px;
}
.stat-label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

.partners-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: -1rem;
  margin-bottom: 2rem;
}
.partner-logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--border);
}
.partner-logo:last-child { border-right: none; }
.partner-logo img {
  height: 32px;
  width: auto;
  opacity: .45;
  filter: grayscale(100%);
  transition: opacity var(--transition), filter var(--transition);
}
.partner-logo:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

.partner-logo__placeholder {
  height: 32px;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #B0BEC5;
  transition: color var(--transition);
}
.partner-logo:hover .partner-logo__placeholder {
  color: var(--navy);
}

.testimonials-wrapper {
  overflow-x: auto;
  overflow-y: visible;
  padding: 1.5rem 0 2.5rem;
  margin: -1.5rem 0 -2.5rem;
  scrollbar-width: none;
}
.testimonials-wrapper::-webkit-scrollbar { display: none; }
.testimonials-wrapper { cursor: grab; }
.testimonials-wrapper.dragging { cursor: grabbing; scroll-behavior: auto; }
.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}
.testimonials-prev,
.testimonials-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-arrow-img { width: 1rem; height: 1rem; filter: brightness(0) invert(1); opacity: .7; }
.testimonials-prev:hover,
.testimonials-next:hover {
  background: var(--green);
  color: var(--navy-dark);
  border-color: var(--green);
}
.testimonials-prev:hover .testimonial-arrow-img,
.testimonials-next:hover .testimonial-arrow-img { filter: brightness(0); opacity: 1; }
.testimonials-grid {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  display: flex;
  flex-direction: column;
  flex: 0 0 340px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,.2);
}
.tc-stars { color: var(--green); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.tc-quote {
  font-size: .9rem;
  color: var(--text-body);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin-bottom: 1.5rem;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.tc-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tc-author strong { display: block; font-size: .9rem; color: var(--navy); font-weight: 700; }
.tc-author span   { font-size: .78rem; color: var(--text-muted); }

.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.faq-item {
  background: var(--gray);
  border-radius: var(--r);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--green-dark); }

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.375rem;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  user-select: none;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform var(--transition), color var(--transition);
}
.faq-item summary:hover { color: var(--green); }
.faq-item[open] summary { color: var(--green); }

.faq-body {
  padding: 0 1.375rem 1.25rem;
  font-size: .9rem;
  color: var(--text-body);
  line-height: 1.75;
}

.contact-form {
  max-width: 680px;
  margin: 0 auto;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.contact-form__field {
  margin-bottom: 1.25rem;
}
.contact-form__field label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .4rem;
}
.contact-form__field .required {
  color: #e53e3e;
}
.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: inherit;
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0,78,116,.1);
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: var(--text-muted);
  opacity: .7;
}
.contact-form__field textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form__field input.invalid,
.contact-form__field textarea.invalid {
  border-color: #e53e3e;
}

.contact-form__submit {
  width: 100%;
  transition: background var(--transition), opacity var(--transition), transform var(--transition);
}
.contact-form__submit:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none !important;
}

.contact-form__feedback {
  margin-top: 1rem;
  font-size: .9rem;
  text-align: center;
  min-height: 1.5em;
}
.contact-form__feedback.success {
  color: var(--green-dark);
}
.contact-form__feedback.error {
  color: #e53e3e;
}

.contact-form__field select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: inherit;
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23718096' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.contact-form__field select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0,78,116,.1);
}
.contact-form__field select.invalid {
  border-color: #e53e3e;
}

.cadastro-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy) 50%, var(--teal) 100%);
  min-height: 100vh;
}
.cadastro-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.cadastro-hero__text {
  color: var(--white);
}
.cadastro-hero__text h1 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 1rem 0 1.25rem;
  color: var(--green);
}
.cadastro-hero__text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
}
.cadastro-hero__trust {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.cadastro-hero__trust span {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .95rem;
  color: rgba(255,255,255,.95);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r);
  padding: .75rem 1.1rem;
  backdrop-filter: blur(4px);
}
.cadastro-hero__trust i {
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cadastro-form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem 2.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
}
.cadastro-form .contact-form__field {
  margin-bottom: .85rem;
}
.cadastro-form .contact-form__row {
  gap: 1rem;
}
.cadastro-form .contact-form__field input,
.cadastro-form .contact-form__field textarea,
.cadastro-form .contact-form__field select {
  padding: .6rem .85rem;
  font-size: .9rem;
}
.cadastro-form .contact-form__field label {
  margin-bottom: .3rem;
  font-size: .8rem;
}
.cadastro-form .contact-form__field textarea {
  min-height: 80px;
}
.cadastro-form__title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 1.1rem;
  text-align: left;
}

@media (max-width: 1024px) {
  .cadastro-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .cadastro-hero__text h1 {
    font-size: 2.2rem;
  }
  .cadastro-hero {
    padding: 120px 0 60px;
  }
}

@media (max-width: 768px) {
  .cadastro-hero__text h1 {
    font-size: 1.8rem;
  }
  .cadastro-form {
    padding: 1.75rem;
  }
  .cadastro-hero {
    padding: 100px 0 40px;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy-deeper);
  padding: 1.25rem 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
  animation: cookieSlideUp .4s ease;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cookie-banner__inner p {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  margin: 0;
}
.cookie-banner__inner p a {
  color: var(--green);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
}

.footer {
  background: var(--navy-deeper);
  padding-top: 64px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  display: block;
  margin-bottom: 1.125rem;
}
.footer-logo__img {
  height: 56px;
  width: auto;
}
.footer-brand p {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 280px;
}

.footer-social { display: flex; gap: 1rem; align-items: center; }
.footer-social a {
  display: block;
  line-height: 0;
  transition: opacity var(--transition);
}
.footer-social a img {
  width: 20px;
  height: 20px;
  opacity: .5;
  filter: brightness(0) invert(1);
}
.footer-social a:hover img { opacity: 1; }

.footer-col h5 {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 1.25rem;
}
.footer-sitemap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
}
.footer-col a {
  display: block;
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .625rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-phone-label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: .25rem;
  margin-bottom: .125rem;
}
.footer-col p {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}
.footer-col__subtitle {
  margin-top: 1.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
}
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom div { display: flex; align-items: center; gap: .75rem; }
.footer-bottom a { color: rgba(255,255,255,.3); transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }
.footer-bottom span { opacity: .4; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-right {
  transform: translateX(28px);
}
.reveal-right.visible { transform: translateX(0); }

@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { gap: 3rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: span 2; }

  .nav__links { display: none; position: absolute; top: 80px; left: 0; right: 0; background: var(--white); flex-direction: column; align-items: flex-start; gap: 0; border-bottom: 1px solid var(--border); padding: .5rem 0; box-shadow: var(--shadow-sm); z-index: 999; }
  .nav__links.open { display: flex; }
  .nav .nav__links.open > a { color: var(--text-muted) !important; font-weight: 600; }
  .nav .nav__links.open > a:hover,
  .nav .nav__links.open > a.active { color: var(--navy) !important; font-weight: 600; }
  .nav__links > a { padding: .875rem 2rem; width: 100%; border-radius: 0; }
  .nav__links > a::after { display: none; }
  .nav__hamburger { display: flex; }
  .nav__actions .btn { display: none; }

  .nav__links .nav-mobile-cta { display: block; padding: 1rem 2rem; width: 100%; border-top: 1px solid var(--border); margin-top: .25rem; text-align: left; }
  .nav .nav__links .nav-mobile-cta .btn { color: var(--navy-dark) !important; text-decoration: none !important; font-weight: 700; background: var(--green); border-radius: 999px; padding: .65rem 2.5rem; width: auto; font-size: .9rem; }
  .nav .nav__links .nav-mobile-cta .btn:hover { background: #b8de5c; }

  .tabs-nav { display: none; }
  .tabs-dropdown { display: block; }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; padding-top: 72px; padding-bottom: 80px; max-width: 100%; text-align: center; }
  .hero__content h1 { font-size: 2.4rem; }
  .hero__ctas { justify-content: center; }
  .hero__trust { justify-content: center; margin-bottom: 0; }
  .two-col { grid-template-columns: 1fr; }
  .two-col-reverse { direction: ltr; }
  .section-armazem .col-visual { order: -1; }
  .section-armazem .armazem-img { height: auto; }
  .highlights-grid { grid-template-columns: 1fr; }
  .highlights-image { min-height: 280px; }
  .testimonial-card { flex: 0 0 280px; }
  .stats-row { justify-content: center; text-align: center; }
  .stat-divider { display: none; }
  .stat-block { padding: 1.5rem 1rem; }
  .feature-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-row:nth-child(even) .feature-visual { order: 0; }
  .feature-row:nth-child(even) .feature-content { order: 0; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .contact-form__row { grid-template-columns: 1fr; }
  .cookie-banner__inner { flex-direction: column; text-align: center; gap: 1rem; }
  .cookie-banner__inner p { font-size: .8rem; }
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .problems-grid .glass-card { grid-column: span 1 !important; }
  .glass-card-header { flex-direction: column; align-items: flex-start; }
  .partners-card { flex-direction: column; align-items: center; }
  .partner-logo { border-right: none; position: relative; width: 100%; }
  .partner-logo::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 120px; height: 1px; background: var(--border); }
  .partner-logo:last-child::after { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom__inner { flex-direction: column; gap: .5rem; text-align: center; }

  .module-layout { flex-direction: column; gap: 1.25rem; }
  .module-sidebar { display: none; }
  .module-detail { min-height: auto; }
  .feature-detail.active { flex-direction: column; gap: 1.5rem; align-items: stretch; }
  .feature-detail__gallery {
    flex: none;
    width: 100%;
    margin: 0 auto;
    position: static;
    aspect-ratio: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
  }
  .feature-detail__gallery .feat-img,
  .feature-detail__gallery .feature-placeholder {
    position: static;
    width: 100%;
    opacity: 1 !important;
    transform: none !important;
    cursor: default;
  }
  .feature-detail__gallery .feat-img:nth-child(3),
  .feature-detail__gallery .feature-placeholder:nth-child(3) { display: none; }
  .feature-detail__gallery .feat-img:hover,
  .feature-detail__gallery .feature-placeholder:hover {
    transform: none !important;
    box-shadow: var(--shadow);
    z-index: auto;
  }

  .hero__ctas {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__ctas .btn { width: 100%; }

  .section-armazem .hl-rows { grid-template-columns: 1fr; }
  .section-armazem .hl-row {
    flex-direction: row;
    text-align: left;
    gap: .875rem;
    padding: .9rem 1.1rem;
    font-size: .9rem;
  }
  .armazem-badge { width: 120px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero__inner { padding-top: 56px; padding-bottom: 64px; max-width: 100%; }
  .hero__content h1 { font-size: 1.75rem; letter-spacing: -.01em; }
  .hero__subheadline { font-size: 1.05rem; }
  .hero__sub br { display: none; }
  .hero__ctas { gap: .75rem; }
  .hero__ctas .btn { padding: .75rem 1rem; font-size: .9rem; }
  .stats-row { flex-direction: column; align-items: center; }
  .tabs-content { padding: 0; }
  .two-col { gap: 2rem; }
}
