:root {
  --bg: #f3f7fb;
  --bg-soft: #eaf1f8;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: #ffffff;
  --surface-soft: rgba(246, 249, 253, 0.92);

  --text: #0B1326;
  --text-soft: #435064;
  --muted: #6f7c8d;

  --line: rgba(11, 19, 38, 0.13);
  --line-strong: rgba(22, 112, 214, 0.30);

  --dark: #0B1326;
  --dark-soft: #0B1220;

  --accent: #1670D6;
  --accent-strong: #0F3D5A;
  --accent-hover: #18A7FF;
  --accent-soft: rgba(22, 112, 214, 0.12);

  --success: #25d366;
  --white: #ffffff;

  --shadow: 0 22px 55px rgba(11, 19, 38, 0.16);
  --shadow-soft: 0 14px 34px rgba(11, 19, 38, 0.10);

  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 12%, rgba(22, 112, 214, 0.18) 0, rgba(22, 112, 214, 0) 34%),
    linear-gradient(115deg, #f7fbff 0%, #eaf2fb 42%, #dfeaf6 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(22, 112, 214, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 112, 214, 0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.08));
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

main {
  display: block;
}

section {
  padding: 88px 0;
}

section + section {
  padding-top: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.04em;
  overflow-wrap: break-word;
  color: var(--text);
}

h1 {
  font-size: clamp(38px, 4.8vw, 60px);
}

h2 {
  font-size: clamp(30px, 3.7vw, 46px);
}

h3 {
  font-size: clamp(20px, 2.2vw, 24px);
}

p {
  margin: 0;
}

.lead {
  margin-top: 22px;
  max-width: 760px;
  color: var(--text-soft);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.75;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(22, 112, 214, 0.08);
  border: 1px solid rgba(22, 112, 214, 0.14);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(22, 112, 214, 0.05);
}

.section-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-tag-tight {
  margin-bottom: 10px;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(22, 112, 214, 0.08);
  border: 1px solid rgba(22, 112, 214, 0.14);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(22, 112, 214, 0.05);
}

.text-light-tag {
  color: rgba(255, 255, 255, 0.76);
}

.section-head {
  max-width: 950px;
  margin-bottom: 34px;
}

.section-desc,
.section-desc-sm {
  margin-top: 18px;
  color: var(--text-soft);
  line-height: 1.75;
}

.section-desc {
  font-size: 18px;
  max-width: 760px;
}

.section-desc-sm {
  font-size: 16px;
}

.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(248,250,250,0.95));
  border: 1px solid rgba(142, 148, 146, 0.18);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(22,58,95,0.22), rgba(255,255,255,0));
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(22, 112, 214, 0.18);
}

.card-tech {
  background:
    radial-gradient(circle at 92% 0%, rgba(24, 167, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.99), rgba(246,249,253,0.96));
}

.card-tech::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(22, 112, 214, 0.18);
  border-radius: 24px;
  transform: rotate(12deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 14px 28px rgba(22, 112, 214, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(22, 112, 214, 0.28);
}

.btn-secondary {
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(22, 112, 214, 0.18);
}

.btn-secondary:hover {
  color: var(--accent);
  border-color: rgba(22, 112, 214, 0.32);
  box-shadow: 0 12px 26px rgba(22, 112, 214, 0.10);
}

.topbar .btn-secondary,
.dark-section .btn-secondary,
.contact-box .btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.20);
}

.topbar .btn-secondary:hover,
.dark-section .btn-secondary:hover,
.contact-box .btn-secondary:hover {
  color: #ffffff;
  border-color: rgba(24, 167, 255, 0.55);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0B1326;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 84px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  max-height: 66px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.topbar-cta {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(22, 112, 214, 0.18) 0, rgba(22, 112, 214, 0) 34%),
    linear-gradient(115deg, #f7fbff 0%, #eaf2fb 42%, #dfeaf6 100%);
  border-bottom: 1px solid rgba(142, 148, 146, 0.14);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -220px;
  top: 50%;
  transform: translateY(-50%);
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(22, 112, 214, 0.14) 0%,
    rgba(22, 112, 214, 0.09) 36%,
    rgba(22, 112, 214, 0.04) 58%,
    rgba(255, 255, 255, 0) 76%
  );
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  min-height: 420px;
  padding: 56px 0;
}

.page-hero-content {
  width: min(60%, 760px);
}

.page-hero-content h1 {
  max-width: 100%;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
}

.page-hero-content .lead {
  font-size: clamp(16px, 1.7vw, 18px);
  max-width: 700px;
}

.page-hero-image {
  width: min(40%, 460px);
  flex-shrink: 0;
}

.page-hero-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 22px 40px rgba(53, 59, 64, 0.12);
  object-fit: cover;
}

.hero {
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0));
}

.hero-badge-row {
  padding-top: 10px;
  margin-bottom: 22px;
}

.hero-badge-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: min(860px, 94%);
}

.hero-badge-list .badge-hero-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 0;
  padding: 11px 22px;
  font-size: 12px;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.hero-main,
.hero-cards {
  min-width: 0;
}

.hero-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-main h1 {
  margin-bottom: 20px;
}

.hero-main .lead + .lead {
  margin-top: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-cards {
  display: grid;
  gap: 16px;
}

.mini-grid,
.service-grid,
.diff-grid,
.segment-grid,
.plan-grid,
.steps,
.contact-grid,
.about-layout,
.segment-layout,
.plans-layout {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card h3,
.step-card h3,
.plan-card h3 {
  margin-bottom: 12px;
}

.service-card p,
.step-card p,
.plan-card p,
.card p {
  color: var(--text-soft);
  line-height: 1.75;
}

.dark-section,
.plans-wrap {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dark-section .section-tag,
.plans-wrap .section-tag,
.dark-section h2,
.plans-wrap h2,
.dark-section p,
.plans-wrap p {
  color: inherit;
}

.dark-section .section-desc,
.dark-section .section-desc-sm,
.plans-wrap .section-desc,
.plans-wrap .section-desc-sm {
  color: rgba(255, 255, 255, 0.78);
}

.diff-item,
.segment-item {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.dark-section .diff-item {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: none;
}

.step-number,
.plan-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.field {
  width: 100%;
  margin-bottom: 14px;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(142, 148, 146, 0.22);
  background: rgba(255, 255, 255, 0.99);
  color: var(--text);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

textarea.field {
  min-height: 150px;
  resize: vertical;
}

.field:focus {
  border-color: rgba(22, 112, 214, 0.30);
  box-shadow: 0 0 0 4px rgba(22, 112, 214, 0.08);
}

.footer {
  margin-top: 88px;
  padding: 26px 0;
  background: #0B1326;
  color: rgba(255, 255, 255, 0.80);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

.whatsapp-float-wrap {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-float-wrap.is-hidden {
  display: none;
}

.whatsapp-float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--success);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 18px 32px rgba(37, 211, 102, 0.28);
}

.whatsapp-close {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 999px;
  background: rgba(22, 112, 214, 0.92);
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .topbar-inner {
    grid-template-columns: auto auto;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 14px;
  }

  .topbar-cta {
    justify-self: end;
  }
}

@media (max-width: 980px) {
  section {
    padding: 72px 0;
  }

  .topbar-inner {
    grid-template-columns: auto auto;
    min-height: 78px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .topbar-cta {
    display: none;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 14px;
    padding: 12px;
    border-radius: 18px;
    background: #0B1326;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: var(--shadow-soft);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    justify-content: flex-start;
    padding: 12px 14px;
  }

  .page-hero-inner,
  .hero-grid,
  .service-grid,
  .segment-layout,
  .plans-layout,
  .contact-grid,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .page-hero-inner {
    display: grid;
    min-height: auto;
  }

  .page-hero-content,
  .page-hero-image {
    width: 100%;
    max-width: none;
  }

  .page-hero-image {
    max-width: 620px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  section {
    padding: 60px 0;
  }

  .page-hero-inner {
    padding: 42px 0;
    gap: 24px;
  }

  .page-hero-content h1 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .hero-actions,
  .service-grid {
    gap: 12px;
  }

  .hero-actions .btn,
  .btn-full-mobile {
    width: 100%;
  }

  .card {
    padding: 22px;
    border-radius: 24px;
  }

  .whatsapp-float-wrap {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-float {
    min-height: 44px;
    padding: 10px 16px;
  }
}

@media (max-width: 760px) {
  .hero-badge-list {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-badge-list .badge-hero-item {
    white-space: normal;
  }
}
/* =========================================================
   NOVA IDENTIDADE NEXTNODE — visão laranja / dark tech
   Baseada no mockup institucional enviado
   ========================================================= */
:root {
  --bg: #0B0F19;
  --bg-soft: #161B26;
  --surface: rgba(16, 22, 32, 0.88);
  --surface-strong: #111722;
  --surface-soft: rgba(22, 27, 38, 0.92);

  --text: #F7F7F7;
  --text-soft: #D7D8DC;
  --muted: #9EA3AD;

  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 106, 0, 0.42);

  --dark: #0B0F19;
  --dark-soft: #161B26;

  --accent: #FF6A00;
  --accent-strong: #FFB066;
  --accent-hover: #FF8A2A;
  --accent-soft: rgba(255, 106, 0, 0.14);

  --shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.28);
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 106, 0, 0.16) 0, rgba(255, 106, 0, 0) 30%),
    radial-gradient(circle at 15% 85%, rgba(255, 176, 102, 0.10) 0, rgba(255, 176, 102, 0) 34%),
    linear-gradient(135deg, #0B0F19 0%, #0D141F 46%, #161B26 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(255, 106, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 106, 0, 0.06) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 106, 0, 0.18) 1px, transparent 1.5px);
  background-size: 64px 64px, 64px 64px, 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.60), rgba(0,0,0,0.08));
}

body::after {
  content: "";
  position: fixed;
  inset: auto 0 0 0;
  height: 220px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255, 106, 0, 0.20), transparent 62%);
}

h1, h2, h3 { color: var(--text); }

.lead,
.section-desc,
.section-desc-sm,
.card p,
.about-content p,
.about-lead,
.contact-copy p,
.segment-item,
.step-card p {
  color: var(--text-soft);
}

.badge,
.about-tag {
  background: rgba(255, 106, 0, 0.10);
  border-color: rgba(255, 106, 0, 0.34);
  color: var(--accent);
  box-shadow: 0 0 28px rgba(255, 106, 0, 0.08);
}

.section-tag,
.step-number {
  color: var(--accent);
}

.card,
.service-card,
.feature-card,
.step-card,
.contact-form-wrap {
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.055), rgba(255,255,255,0) 42%),
    linear-gradient(180deg, rgba(22, 27, 38, 0.96), rgba(11, 15, 25, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow-soft);
}

.card::before,
.service-card::before,
.feature-card::before,
.step-card::before {
  background: linear-gradient(90deg, rgba(255,106,0,0.70), rgba(255,176,102,0.08), rgba(255,255,255,0));
}

.card:hover,
.service-card:hover,
.feature-card:hover,
.step-card:hover {
  border-color: rgba(255, 106, 0, 0.36);
  box-shadow: 0 24px 64px rgba(255, 106, 0, 0.10), var(--shadow-soft);
}

.card-tech {
  background:
    radial-gradient(circle at 85% 8%, rgba(255, 106, 0, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(22,27,38,0.98), rgba(11,15,25,0.98));
}

.card-tech::after {
  border-color: rgba(255, 106, 0, 0.28);
}

.btn-primary {
  background: linear-gradient(135deg, #FF6A00 0%, #FFB066 100%);
  color: #0B0F19;
  box-shadow: 0 16px 34px rgba(255, 106, 0, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 20px 44px rgba(255, 106, 0, 0.36);
}

.btn-secondary {
  color: #F7F7F7;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover {
  color: #FFFFFF;
  border-color: rgba(255, 106, 0, 0.55);
  box-shadow: 0 16px 34px rgba(255, 106, 0, 0.10);
}

.topbar {
  background: rgba(11, 15, 25, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 106, 0, 0.16);
}

.brand-logo {
  max-height: 72px;
}

.nav a:hover,
.nav a.active {
  background: rgba(255, 106, 0, 0.14);
  color: #FFFFFF;
}

.page-hero {
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 106, 0, 0.22) 0, rgba(255, 106, 0, 0) 32%),
    linear-gradient(135deg, #0B0F19 0%, #101722 48%, #161B26 100%);
  border-bottom: 1px solid rgba(255, 106, 0, 0.15);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,106,0,0.12) 1px, transparent 1px),
    linear-gradient(rgba(255,106,0,0.08) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: .34;
  mask-image: radial-gradient(circle at 80% 30%, rgba(0,0,0,.70), transparent 70%);
}

.page-hero::after {
  background: radial-gradient(circle, rgba(255, 106, 0, 0.22) 0%, rgba(255, 106, 0, 0.10) 38%, rgba(255, 106, 0, 0.02) 62%, transparent 78%);
}

.page-hero-image img,
.mockup-card img {
  border: 1px solid rgba(255, 106, 0, 0.22);
  box-shadow: 0 24px 60px rgba(0,0,0,0.44), 0 0 42px rgba(255,106,0,0.12);
  background: #0B0F19;
}

.hero {
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 106, 0, 0.09), transparent 36%),
    linear-gradient(180deg, rgba(11,15,25,0.96), rgba(11,15,25,0));
}

.hero-badge-list .badge-hero-item {
  background: rgba(255, 106, 0, 0.08);
}

.service-grid a:hover,
.contact-details a:hover {
  color: var(--accent);
}

.footer {
  background: #0B0F19;
  border-top: 1px solid rgba(255,106,0,0.18);
}

.footer-inner {
  color: rgba(255,255,255,0.78);
}

.whatsapp-float {
  background: linear-gradient(135deg, #FF6A00, #FFB066);
  color: #0B0F19;
}

.field,
input.field,
textarea.field {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #FFFFFF;
}

.field::placeholder,
textarea.field::placeholder {
  color: rgba(255,255,255,0.56);
}

.flash-message {
  background: rgba(255, 106, 0, 0.10);
  border-color: rgba(255, 106, 0, 0.28);
}

@media (max-width: 900px) {
  .brand-logo { max-height: 58px; }
}
