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

:root {
  --green: #19c15f;
  --green-soft: #9cffc3;
  --green-dark: #0d8a41;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #fff;
  line-height: 1.5;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top right, rgba(25, 193, 95, 0.22), transparent 22%),
    radial-gradient(circle at left center, rgba(25, 193, 95, 0.10), transparent 20%),
    linear-gradient(135deg, #020202 0%, #07140c 34%, #0f2617 62%, #020202 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

code {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 8px;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 10px 0;
  transition: padding 0.3s ease;
  overflow: hidden;
}

.site-header.scrolled {
  padding: 6px 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  flex-wrap: nowrap;
  background: linear-gradient(180deg, rgba(7, 12, 10, 0.78), rgba(7, 12, 10, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 22px;
  padding: 10px 16px;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(25, 193, 95, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 18%);
  z-index: -1;
}

.nav-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 35%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(25, 193, 95, 0.95) 50%, transparent 100%);
  animation: menuBorderSweep 4s linear infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes menuBorderSweep {
  from { left: -35%; }
  to { left: 100%; }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 0 0 auto;
}

.brand-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.brand-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.brand-text span {
  display: block;
  color: var(--green-soft);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 2px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: 16px;
  flex-wrap: nowrap;
}

.desktop-nav a,
.site-footer a {
  font-size: 0.93rem;
  font-weight: 700;
  transition: 0.2s;
}

.desktop-nav a {
  position: relative;
  padding: 6px 2px;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  font-size: 0.88rem;
}

.desktop-nav a:hover {
  color: #fff;
  transform: translateY(-1px);
  text-shadow: 0 0 16px rgba(25, 193, 95, 0.18);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.header-switch {
  position: relative;
  width: 235px;
  height: 52px;
  flex: 0 0 235px;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.18));
}

.switch-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.switch-btn.front {
  z-index: 2;
  background: linear-gradient(135deg, #19c15f, #12a94f);
  color: #fff;
  border: none;
  box-shadow: 0 14px 28px rgba(25, 193, 95, 0.28);
  transform: translateY(0) scale(1);
  opacity: 1;
}

.switch-btn.back {
  z-index: 1;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transform: translateY(8px) scale(0.96);
  opacity: 0.92;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: 0.2s;
  cursor: pointer;
}

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

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: #fff;
  color: #111;
}

.btn-dark {
  background: #101010;
  color: #fff;
}

.btn-dark:hover,
.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green-soft);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.mobile-menu {
  width: min(1180px, 92%);
  margin: 8px auto 0;
  background: linear-gradient(180deg, rgba(6, 10, 8, 0.96), rgba(6, 10, 8, 0.90));
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 10px;
  display: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  position: relative;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
}

.mobile-menu a:hover {
  background: rgba(25, 193, 95, 0.12);
  color: var(--green-soft);
}

.mobile-menu a:not(.mobile-cta)::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.mobile-cta { margin-top: 8px; }

.hero { padding-top: 150px; }

.hero-grid,
.jobs-box {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.hero-grid { padding: 70px 0 90px; }

.eyebrow,
.section-head span,
.section-kicker,
.jobs-info span,
.quote-badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(25, 193, 95, 0.10);
  color: var(--green-soft);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(25, 193, 95, 0.18);
}

.hero-copy h1,
.section-head h2,
.jobs-info h2,
.quote-top h3 {
  margin-top: 18px;
  font-size: clamp(2.2rem, 4.3vw, 4rem);
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.hero-copy h1 span { color: var(--green-soft); }

.hero-copy p,
.section-head p,
.benefit-card p,
.jobs-info p,
.jobs-info li,
.footer-top p,
.store-content p,
.quote-top p,
.quote-card span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.02rem;
}

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

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

.mini-highlights div,
.benefit-card,
.plan-card,
.mobile-card,
.jobs-box,
.backbone-grid span,
.quote-card,
.quote-panel,
.city-selector {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
}

.mini-highlights div {
  padding: 18px;
  font-weight: 700;
}

.hero-card {
  background: rgba(0, 0, 0, 0.58);
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.26);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(25, 193, 95, 0.15);
  color: #78ffb0;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero-card h2 {
  margin-top: 22px;
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
}

.speed-pill {
  display: inline-flex;
  margin-top: 14px;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

.price-label {
  color: rgba(255, 255, 255, 0.66);
  margin-top: 28px;
}

.price {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  color: #6dffab;
  margin-top: 6px;
}

.price small {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.included {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.included span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 12px;
  text-align: center;
  font-weight: 700;
}

.section {
  padding: 90px 0;
}

.section-head {
  max-width: 860px;
  margin: 0 auto 42px auto;
}

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

.section-head.center span,
.section-head.center h2,
.section-head.center p {
  margin-left: auto;
  margin-right: auto;
}

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

.plan-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  transition: 0.35s;
}

.plan-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
  border-color: rgba(25, 193, 95, 0.35);
}

.plan-card.featured {
  background: rgba(0, 0, 0, 0.56);
  border-color: rgba(25, 193, 95, 0.2);
}

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

.plan-top p {
  color: var(--green-soft);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.9rem;
}

.tag {
  background: var(--green);
  color: white;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.plan-card h3 {
  margin-top: 18px;
  font-size: 3.3rem;
  line-height: 0.95;
  font-weight: 900;
}

.plan-card h3 small { font-size: 1.45rem; }

.plan-card strong {
  display: block;
  margin-top: 18px;
  font-size: 2rem;
  font-weight: 900;
}

.plan-card ul {
  list-style: none;
  margin: 22px 0 28px;
}

.plan-card li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.84);
}

.benefits-grid,
.mobile-plans,
.backbone-grid,
.footer-top,
.quote-grid {
  display: grid;
  gap: 22px;
}

.benefits-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
}

.benefit-card,
.mobile-card {
  padding: 28px;
}

.benefit-card h3,
.mobile-card h3,
.quote-card strong {
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.mobile-plans {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.mobile-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.4rem;
  color: var(--green-soft);
}

.backbone-grid {
  grid-template-columns: repeat(3, 1fr);
}

.backbone-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 12px 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
}

.store-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 42px;
}

.store-track {
  display: flex;
  gap: 20px;
  align-items: stretch;
  transition: transform 0.8s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.store-card {
  min-width: calc(50% - 10px);
  flex: 0 0 calc(50% - 10px);
  height: 360px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  transform: scale(0.94);
  opacity: 0.6;
  transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.5s ease;
}

.store-card.active {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.30);
}

.store-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  width: 100%;
}

.store-dots button {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.35s ease;
}

.store-dots button.active {
  width: 34px;
  background: #19c15f;
  box-shadow: 0 0 12px rgba(25, 193, 95, 0.6);
}

.store-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #fff;
  padding: 14px;
  box-sizing: border-box;
}

.store-shadow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72)), radial-gradient(circle at top right, rgba(25, 193, 95, 0.22), transparent 28%);
}

.store-content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(25, 193, 95, 0.14);
  border: 1px solid rgba(25, 193, 95, 0.22);
  color: #9cffc3;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.store-content h3 {
  margin-top: 12px;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
}

.store-content p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
}



.dedicated-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: start;
}

.dedicated-layout.premium {
  grid-template-columns: 360px 1fr;
  gap: 28px;
  align-items: start;
}

.city-selector {
  padding: 14px;
  display: grid;
  gap: 10px;
  max-height: 620px;
  overflow: auto;
}

.city-selector.premium {
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.city-search-wrap {
  position: sticky;
  top: 0;
  z-index: 8;
  width: 100%;
  margin: 0 0 14px 0;
  padding: 0 0 14px 0;
  background: transparent;
}

.city-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.58);
  pointer-events: none;
}

.city-search-input {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 52px;
  box-sizing: border-box;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 0 16px 0 44px;
  outline: none;
  box-shadow: none;
}

.city-search-input::placeholder { color: rgba(255, 255, 255, 0.45); }

.city-selector-list {
  display: grid;
  gap: 10px;
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
}

.city-selector-list::-webkit-scrollbar { width: 8px; }
.city-selector-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.city-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-radius: 18px;
  padding: 0 16px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: 0.2s;
}

.city-option:hover {
  border-color: rgba(25, 193, 95, 0.35);
  color: var(--green-soft);
}

.city-option.active {
  background: rgba(25, 193, 95, 0.16);
  border-color: rgba(25, 193, 95, 0.42);
  color: #9cffc3;
}

.city-option span:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.city-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.95rem;
}

.quote-panel { padding: 28px; }

.quote-panel.premium {
  position: relative;
  overflow: hidden;
}

.quote-panel-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(25, 193, 95, 0.24), transparent 70%);
  pointer-events: none;
}

.quote-top {
  position: relative;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.quote-top.animating {
  opacity: 0.25;
  transform: translateY(8px);
}

.quote-top h3 { margin-top: 14px; }

.quote-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.quote-card { padding: 20px; }

.quote-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.02rem;
  color: #fff;
}

.quote-card,
.quote-list li {
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.quote-panel.premium:hover .quote-card {
  border-color: rgba(25, 193, 95, 0.22);
}

.quote-list {
  list-style: none;
  margin: 24px 0;
  display: grid;
  gap: 12px;
}

.quote-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.jobs-box {
  gap: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
}

.jobs-info ul {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.jobs-info a,
.footer-links a {
  color: var(--green-soft);
  font-weight: 700;
}

.jobs-form {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.jobs-form input,
.jobs-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  padding: 16px 18px;
  outline: none;
}

.jobs-form > input,
.jobs-form textarea { margin-top: 14px; }

.field-grid input { margin-top: 0 !important; }

.form-note {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(25, 193, 95, 0.35);
  border: none;
  cursor: pointer;
}

.chat-widget {
  position: fixed;
  right: 18px;
  bottom: 84px;
  width: min(360px, calc(100vw - 24px));
  background: rgba(7, 7, 7, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  z-index: 1000;
  display: none;
}

.chat-widget.open { display: block; }

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--green), #0d8a41);
  color: #fff;
}

.chat-header strong {
  display: block;
  font-size: 1rem;
}

.chat-header span {
  display: block;
  font-size: 0.8rem;
  opacity: 0.9;
}

.chat-close {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.chat-body { padding: 18px; }

.chat-bubble {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 14px;
}

.chat-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 8px;
}

.chat-textarea {
  width: 100%;
  min-height: 110px;
  resize: vertical;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 14px;
  outline: none;
}

.chat-send {
  width: 100%;
  margin-top: 14px;
}

.chat-note {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
  margin-top: 20px;
}

.footer-top {
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 40px 0 24px;
}

.footer-top h3,
.footer-top h4 { margin-bottom: 12px; }

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  padding: 18px 0 28px;
  color: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1200px) {
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 0.84rem; }
  .header-switch { width: 220px; flex-basis: 220px; }
  .switch-btn { font-size: 0.92rem; padding: 0 16px; }
}

@media (max-width: 1100px) {
  .plans-grid,
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-grid,
  .jobs-box,
  .footer-top,
  .mobile-plans,
  .quote-grid,
  .dedicated-layout,
  .dedicated-layout.premium { grid-template-columns: 1fr; }

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

@media (max-width: 960px) {
  .desktop-nav,
  .header-switch,
  .desktop-cta { display: none !important; }

  .menu-toggle { display: inline-block !important; }

  .nav-shell { padding: 10px 12px; gap: 10px; }
  .brand { gap: 10px; }

  .brand-badge {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    padding: 7px;
  }

  .brand-text strong { font-size: 0.78rem; letter-spacing: 0.08em; }
  .brand-text span { font-size: 0.52rem; letter-spacing: 0.08em; }

  .mobile-menu {
    display: none;
    width: min(1180px, 92%);
    margin: 8px auto 0;
  }

  .mobile-menu.open { display: block; }

  .mini-highlights,
  .included,
  .field-grid,
  .plans-grid,
  .benefits-grid,
  .mobile-plans,
  .backbone-grid,
  .quote-grid { grid-template-columns: 1fr; }

  .hero { padding-top: 118px; }
  .hero-grid { padding: 52px 0 72px; }
  .store-track { gap: 14px; }

  .store-card {
    min-width: 100%;
    flex: 0 0 100%;
    height: 280px;
  }

  .store-card img { padding: 10px; }
  .store-content { left: 16px; right: 16px; bottom: 16px; }
  .store-content h3 { font-size: 1.5rem; }
  .store-content p { font-size: 0.9rem; }
}

@media (max-width: 560px) {
  .container { width: min(1180px, 94%); }

  .nav-shell {
    padding: 10px 12px;
    gap: 10px;
    border-radius: 20px;
  }

  .site-header.scrolled .nav-shell {
    transform: scale(0.985);
    transform-origin: top center;
  }

  .brand-badge {
    width: 50px;
    height: 50px;
    padding: 6px;
  }

  .brand-text strong { font-size: 0.72rem; letter-spacing: 0.08em; }
  .brand-text span { font-size: 0.5rem; letter-spacing: 0.08em; }

  .hero-copy h1,
  .section-head h2,
  .jobs-info h2,
  .quote-top h3 { font-size: 2rem; }

  .city-search-input { min-height: 46px; }
  .store-card { height: 240px; }
  .store-card img { padding: 8px; }
  .store-content h3 { font-size: 1.25rem; }
  .store-content p { font-size: 0.85rem; }

  .floating-whatsapp {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }

  .chat-widget {
    right: 12px;
    left: 12px;
    bottom: 78px;
    width: auto;
  }

  .mobile-menu { width: min(1180px, 94%); }
}



/* Ajustes para hospedagem estática / HostGator */
.store-slider {
  position: relative;
  overflow: hidden;
}

.store-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.8s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

.store-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 22px;
}

.store-dots button {
  transition: all 0.35s ease;
}

.store-dots button.active {
  box-shadow: 0 0 12px rgba(25,193,95,0.6);
}


/* Correções finais para hospedagem estática */
.store-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 42px;
}

.store-track {
  display: flex;
  gap: 20px;
  align-items: stretch;
  transition: transform 0.8s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

.store-card {
  min-width: calc(50% - 10px);
  flex: 0 0 calc(50% - 10px);
}

.store-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.store-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 22px;
}

.store-dots button {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  cursor: pointer;
  transition: all 0.35s ease;
}

.store-dots button.active {
  width: 34px;
  background: #19c15f;
  box-shadow: 0 0 12px rgba(25,193,95,0.6);
}

.city-option {
  position: relative;
  z-index: 2;
}

.quote-panel,
.city-selector {
  position: relative;
}

.floating-whatsapp {
  z-index: 1200;
}

.chat-widget {
  z-index: 1300;
}

@media (max-width: 960px) {
  .store-card {
    min-width: 100%;
    flex: 0 0 100%;
  }
}


/* Central do assinante no menu mobile */
.mobile-menu .mobile-central{
  margin-top:8px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:16px;
  padding:14px 16px;
  font-weight:700;
}

.mobile-menu .mobile-central:hover{
  border-color:var(--green);
  color:var(--green-soft);
}


/* Botão verde Central do assinante no mobile */
.mobile-menu .mobile-central{
  display:block;
  margin-top:8px;
  text-align:center;
}
