:root {
  --aw-blue: #0b2c5c;
  --aw-blue-soft: #1a4a7a;
  --aw-green: #25d366;
  --aw-green-deep: #128c7e;
  --aw-header: #061a38;
  --aw-header-end: #030f22;
  --aw-body: #eef3f7;
  --aw-footer: #2a2d32;
  --aw-surface: #ffffff;
  --aw-text: #0f2744;
  --aw-muted: #4a6280;
  --aw-line: rgba(11, 44, 92, 0.1);
  --aw-shadow: 0 12px 32px rgba(11, 44, 92, 0.1);
  --aw-font: "Plus Jakarta Sans", system-ui, sans-serif;
  --aw-brand: Nunito, "Plus Jakarta Sans", sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body.aw-page {
  margin: 0;
  font-family: var(--aw-font);
  color: var(--aw-text);
  background: var(--aw-body);
  min-height: 100vh;
}

.aw-wrap {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.aw-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(180deg, var(--aw-header) 0%, var(--aw-header-end) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}
.aw-nav.is-scrolled {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
}
.aw-nav.is-scrolled .aw-nav__inner {
  min-height: 72px;
}
.aw-nav__inner {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 88px;
  transition: min-height .25s ease;
}
.aw-brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  background: transparent;
  padding: 0;
}
.aw-brand img {
  height: 64px;
  width: 64px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
  border-radius: 0;
  padding: 0;
  flex-shrink: 0;
  transition: height .25s ease, width .25s ease;
}
.aw-nav.is-scrolled .aw-brand img {
  height: 48px;
  width: 48px;
}
.aw-brand__name {
  font-family: var(--aw-brand);
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateX(-6px);
  transition: max-width .3s ease, opacity .25s ease, transform .25s ease;
}
.aw-brand__name span {
  color: var(--aw-green);
}
.aw-nav.is-scrolled .aw-brand__name {
  max-width: 10rem;
  opacity: 1;
  transform: translateX(0);
}
.aw-nav__links {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}
.aw-nav__links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  font-size: .95rem;
}
.aw-nav__links a.is-active,
.aw-nav__links a:hover {
  color: #fff;
}

.aw-hero {
  position: relative;
  padding: 3.75rem 0 3rem;
  background: var(--aw-body);
  scroll-margin-top: 100px;
}
.aw-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: center;
}
.aw-hero__brand {
  margin: 0 0 .55rem;
  font-family: var(--aw-brand);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 4.4rem);
  color: var(--aw-blue);
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.aw-hero__brand span {
  color: var(--aw-green);
}
.aw-hero__title {
  margin: 0 0 .85rem;
  font-size: clamp(1.15rem, 2.3vw, 1.5rem);
  font-weight: 800;
  color: var(--aw-blue-soft);
  letter-spacing: -0.02em;
}
.aw-hero__text {
  margin: 0;
  max-width: 36rem;
  color: var(--aw-muted);
  line-height: 1.65;
  font-size: 1.05rem;
  font-weight: 500;
}
.aw-hero__card {
  background: var(--aw-surface);
  border: 1px solid var(--aw-line);
  border-radius: 24px;
  padding: 1.6rem 1.4rem;
  box-shadow: var(--aw-shadow);
  text-align: center;
}
.aw-hero__card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: .75rem;
}
.aw-hero__card p {
  margin: 0;
  color: var(--aw-blue);
  font-weight: 700;
  line-height: 1.45;
}

.aw-section {
  padding: 3.25rem 0;
  background: var(--aw-body);
  scroll-margin-top: 100px;
}
.aw-section#beneficios,
.aw-section#funcoes {
  background: var(--aw-body);
  border: none;
}
.aw-section__head {
  margin-bottom: 1.75rem;
  max-width: 40rem;
}
.aw-kicker {
  display: inline-block;
  margin-bottom: .45rem;
  padding: .2rem .65rem;
  border-radius: 999px;
  background: rgba(18, 140, 126, 0.14);
  color: var(--aw-green-deep);
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .72rem;
}
.aw-section__head h2 {
  margin: 0 0 .5rem;
  font-family: var(--aw-brand);
  font-weight: 800;
  color: var(--aw-blue);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  letter-spacing: -0.03em;
}
.aw-section__head p {
  margin: 0;
  color: var(--aw-muted);
  line-height: 1.55;
  font-weight: 500;
}

.aw-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.aw-benefit {
  background: var(--aw-surface);
  border: 1px solid var(--aw-line);
  border-radius: 18px;
  padding: 1.2rem 1.15rem;
  box-shadow: 0 8px 20px rgba(11, 44, 92, 0.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.aw-benefit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11, 44, 92, 0.1);
}
.aw-benefit:nth-child(1) { border-top: 3px solid var(--aw-green); }
.aw-benefit:nth-child(2) { border-top: 3px solid var(--aw-green-deep); }
.aw-benefit:nth-child(3) { border-top: 3px solid var(--aw-blue-soft); }
.aw-benefit:nth-child(4) { border-top: 3px solid #3d8bfd; }
.aw-benefit:nth-child(5) { border-top: 3px solid #5b7c99; }
.aw-benefit:nth-child(6) { border-top: 3px solid #25d366; }
.aw-benefit:nth-child(7) { border-top: 3px solid #0b78c4; }
.aw-benefit h3 {
  margin: 0 0 .45rem;
  color: var(--aw-blue);
  font-size: 1.08rem;
  font-weight: 800;
}
.aw-benefit p {
  margin: 0;
  color: var(--aw-muted);
  line-height: 1.5;
  font-size: .95rem;
}

.aw-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.aw-features li {
  background: var(--aw-surface);
  border: 1px solid var(--aw-line);
  border-left: 4px solid var(--aw-green-deep);
  border-radius: 14px;
  padding: 1.05rem 1.15rem;
  display: grid;
  gap: .25rem;
}
.aw-features li:nth-child(even) {
  border-left-color: var(--aw-blue-soft);
}
.aw-features strong {
  color: var(--aw-blue);
  font-size: 1.02rem;
  font-weight: 800;
}
.aw-features span {
  color: var(--aw-muted);
  line-height: 1.45;
  font-weight: 500;
}
.aw-features-note {
  margin: 1.25rem 0 0;
  padding: 0.9rem 1rem;
  border-left: 3px solid rgba(11, 44, 92, 0.25);
  color: var(--aw-muted);
  font-size: .88rem;
  line-height: 1.5;
  font-weight: 500;
}

.aw-footer {
  margin-top: 0;
  padding: 2.4rem 0 2.6rem;
  text-align: center;
  background: var(--aw-footer);
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}
.aw-footer__logo {
  height: 32px;
  width: auto;
  margin-bottom: .6rem;
}
.aw-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.aw-contact-section {
  background: #e7eef5;
}
.aw-contact {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.aw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.4rem;
  border: none;
  border-radius: 12px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
}
.aw-btn--primary {
  background: var(--aw-blue);
  color: #fff;
}
.aw-btn--primary:hover {
  filter: brightness(1.05);
  color: #fff;
}
.aw-btn--whatsapp {
  min-height: 52px;
  padding: 0 1.6rem;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
}
.aw-btn--whatsapp:hover {
  filter: brightness(0.96);
  color: #fff;
}
.aw-contact-form {
  text-align: left;
  background: #fff;
  padding: 1.4rem 1.35rem 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--aw-line);
  box-shadow: var(--aw-shadow);
}
.aw-form-group {
  margin-bottom: 0.95rem;
}
.aw-form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--aw-text);
}
.aw-form-group input {
  width: 100%;
  border: 1px solid rgba(11, 44, 92, 0.16);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  color: var(--aw-text);
  background: #fbfcfe;
}
.aw-form-group input:focus {
  outline: 2px solid rgba(11, 120, 196, 0.35);
  border-color: #0b78c4;
}
.aw-contact-form .aw-btn--primary {
  width: 100%;
  margin-top: 0.35rem;
}
.aw-form-note {
  margin: 0.75rem 0 0;
  text-align: center;
  color: var(--aw-muted);
  font-size: 0.88rem;
  font-weight: 600;
}
.aw-contact-message {
  margin-top: 0.85rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
}
.aw-contact-message.is-ok {
  background: #e8f8ef;
  color: #0f5c38;
}
.aw-contact-message.is-error {
  background: #fdebec;
  color: #8a1f2b;
}

.aw-nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: rgba(11, 44, 92, 0.08);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.aw-nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
}
.aw-nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.aw-nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.aw-nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.aw-nav__toggle span {
  transition: transform .2s ease, opacity .2s ease;
}

@media (max-width: 900px) {
  .aw-hero__grid,
  .aw-benefits,
  .aw-features {
    grid-template-columns: 1fr;
  }
  .aw-nav__inner {
    flex-wrap: wrap;
    min-height: 72px;
    position: relative;
  }
  .aw-nav__toggle {
    display: inline-flex;
    margin-left: auto;
  }
  #aw-nav-menu {
    display: none;
    width: 100%;
    order: 3;
    padding: 0.35rem 0 0.85rem;
  }
  .aw-nav.is-open #aw-nav-menu {
    display: block;
  }
  .aw-nav__links {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }
  .aw-nav__links a {
    display: block;
    padding: 0.7rem 0.85rem;
    border-radius: 10px;
  }
  .aw-nav__links a.is-active,
  .aw-nav__links a:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .aw-hero { padding-top: 2.2rem; }
}

/* Páginas de status (inativo / inativoAdmin) */
body.aw-status-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.aw-status-page .aw-nav {
  position: sticky;
  top: 0;
}
.aw-status {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0 4rem;
}
.aw-status__box {
  max-width: 34rem;
  text-align: center;
  background: var(--aw-surface);
  border: 1px solid var(--aw-line);
  border-radius: 18px;
  box-shadow: var(--aw-shadow);
  padding: 2.4rem 1.75rem 2.1rem;
}
.aw-status__icon {
  display: block;
  margin: 0 auto 1.1rem;
  border-radius: 16px;
}
.aw-status__box h1 {
  margin: 0 0 0.75rem;
  font-family: var(--aw-brand);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--aw-blue);
  letter-spacing: -0.02em;
}
.aw-status__box > p {
  margin: 0 0 1.5rem;
  color: var(--aw-muted);
  line-height: 1.55;
  font-size: 1.02rem;
}
.aw-status__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.aw-status__email {
  margin: 0.35rem 0 0 !important;
  font-size: 0.95rem !important;
}
.aw-status__email a {
  color: var(--aw-blue);
  font-weight: 700;
  text-decoration: none;
}
.aw-status__email a:hover {
  text-decoration: underline;
}
.aw-btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(11, 44, 92, 0.18);
  background: transparent;
  color: var(--aw-blue);
  font-weight: 700;
  text-decoration: none;
}
.aw-btn--ghost:hover {
  background: rgba(11, 44, 92, 0.05);
}
