/* ================================
   TRANSFER UBERLÂNDIA BLOG
   OTIMIZADO PARA PC E CELULAR
================================ */

:root {
  --bg: #02040a;
  --bg-2: #050914;
  --panel: rgba(255,255,255,.065);
  --panel-2: rgba(255,255,255,.035);
  --blue: #0b66ff;
  --blue-2: #18d2ff;
  --text: #f5f8ff;
  --muted: #a7b4cb;
  --line: rgba(255,255,255,.12);
  --success: #18d260;
  --shadow: 0 24px 70px rgba(0,0,0,.42);
  --radius: 28px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 0%, rgba(11,102,255,.28), transparent 34rem),
    radial-gradient(circle at 90% 8%, rgba(24,210,255,.16), transparent 28rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 48%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

/* Header */

.topbar {
  position: fixed;
  z-index: 100;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--container), calc(100% - 28px));
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(2,4,10,.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0,0,0,.38);
}

.brand {
  display: flex;
  align-items: center;
  min-width: max-content;
}

.text-brand span {
  position: relative;
  display: block;
  padding-left: 16px;
}

.text-brand span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 3px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue), var(--blue-2));
  box-shadow: 0 0 22px rgba(24,210,255,.75);
}

.brand strong {
  display: block;
  font-size: 17px;
  letter-spacing: -.03em;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .11em;
  line-height: 1.2;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.nav a {
  transition: .22s ease;
  white-space: nowrap;
}

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

.top-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: .24s ease;
  white-space: nowrap;
}

.top-cta,
.btn.primary {
  background: linear-gradient(135deg, var(--blue), #08a7ff);
  color: #fff;
  box-shadow: 0 16px 42px rgba(11,102,255,.34);
}

.top-cta:hover,
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(11,102,255,.45);
}

.btn.ghost {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  color: #fff;
}

.btn.ghost:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}

.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
  transition: .22s ease;
}

.menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Layout */

.section {
  width: min(var(--container), calc(100% - 28px));
  margin: 0 auto;
  padding: 86px 0;
  scroll-margin-top: 110px;
}

.first-section {
  padding-top: 160px;
}

.section-title {
  max-width: 850px;
}

.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.centered .eyebrow {
  justify-content: center;
}

.centered p,
.centered h1,
.centered h2 {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
}

.start-title,
.section-title h2,
.quote-card h2 {
  margin-top: 18px;
  max-width: 920px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: .94;
  letter-spacing: -.07em;
}

.section-title h2,
.quote-card h2 {
  font-size: clamp(34px, 4.4vw, 58px);
}

.section-title p,
.quote-card p,
.info-card p,
.feature p,
.process-card p,
.staff-card p,
details p {
  color: var(--muted);
}

.section-title p,
.quote-card p {
  margin-top: 18px;
  font-size: 17px;
  max-width: 680px;
}

/* Cards */

.cards-grid,
.features,
.process-grid,
.staff-grid {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.cards-grid,
.features {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid,
.staff-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.feature,
.process-card,
.staff-card,
.quote-card,
details,
.dark-panel {
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 0%, rgba(24,210,255,.15), transparent 16rem),
    linear-gradient(145deg, var(--panel), var(--panel-2));
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
}

.info-card,
.feature,
.process-card,
.staff-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 26px;
  border-radius: var(--radius);
}

.info-card::after,
.feature::after,
.process-card::after,
.staff-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -78px;
  bottom: -78px;
  background: rgba(11,102,255,.18);
  border-radius: 50%;
  filter: blur(4px);
}

.icon,
.process-card > span,
.staff-avatar {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 18px 45px rgba(11,102,255,.34);
}

.process-card > span {
  font-size: 28px;
}

.info-card h3,
.feature h3,
.process-card h3,
.staff-card h3 {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  font-size: 23px;
  line-height: 1.1;
  letter-spacing: -.04em;
}

.info-card p,
.feature p,
.process-card p,
.staff-card p {
  position: relative;
  z-index: 2;
  margin-top: 12px;
}

/* Requisitos */

.dark-panel {
  padding: 50px;
  border-radius: 40px;
}

/* Staff */

.staff-card {
  min-height: 300px;
}

.staff-avatar {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  font-size: 26px;
  letter-spacing: -.06em;
}

.staff-card span {
  display: inline-flex;
  margin-top: 24px;
  color: var(--blue-2);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 900;
}

/* Formulários */

.quote-card {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 40px;
  padding: 44px;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.client-section {
  opacity: .92;
}

.contact-line {
  display: inline-flex;
  flex-direction: column;
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(0,0,0,.22);
}

.contact-line span {
  color: var(--muted);
  font-size: 13px;
}

.contact-line strong {
  margin-top: 2px;
  font-size: 22px;
}

.quote-form {
  display: grid;
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #dcecff;
  font-weight: 800;
  font-size: 14px;
}

.quote-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: #fff;
  outline: none;
  background: rgba(0,0,0,.24);
}

.quote-form input::placeholder {
  color: rgba(167,180,203,.68);
}

.quote-form input:focus {
  border-color: rgba(24,210,255,.85);
  box-shadow: 0 0 0 4px rgba(11,102,255,.16);
}

.full {
  width: 100%;
  margin-top: 6px;
}

.quote-form small {
  color: var(--muted);
  line-height: 1.45;
}

/* FAQ */

.faq {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 44px;
  align-items: start;
}

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

details {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: none;
}

summary {
  padding: 22px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--blue-2);
  font-size: 22px;
  line-height: 1;
}

details[open] summary::after {
  content: "−";
}

details p {
  padding: 0 22px 22px;
}

/* Footer */

.footer {
  width: min(var(--container), calc(100% - 28px));
  margin: 0 auto 28px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  display: flex;
  justify-content: center;
  gap: 24px;
  background: rgba(255,255,255,.045);
  text-align: center;
}

.simple-footer p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

/* WhatsApp */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--success), #04a848);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
}

/* Animação */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: .65s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Desktop intermediário */

@media (max-width: 1120px) {
  .nav {
    gap: 11px;
    font-size: 12px;
  }

  .top-cta {
    padding: 0 16px;
  }

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

/* Tablet e celular */

@media (max-width: 900px) {
  .topbar {
    top: 12px;
    width: min(100% - 22px, var(--container));
    border-radius: 24px;
  }

  .brand small {
    letter-spacing: .08em;
  }

  .top-cta {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav {
    position: fixed;
    top: 82px;
    left: 11px;
    right: 11px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(2,4,10,.98);
    box-shadow: 0 26px 70px rgba(0,0,0,.55);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 16px;
    border-radius: 16px;
    font-size: 15px;
  }

  .nav a:hover {
    background: rgba(255,255,255,.07);
  }

  .first-section {
    padding-top: 136px;
  }

  .quote-card,
  .faq {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .staff-grid {
    grid-template-columns: 1fr;
  }

  .dark-panel,
  .quote-card {
    padding: 30px;
    border-radius: 32px;
  }
}

/* Celular */

@media (max-width: 640px) {
  .topbar {
    min-height: 66px;
    padding: 10px 12px 10px 14px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 9px;
  }

  .menu-btn {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .section {
    width: min(100% - 22px, var(--container));
    padding: 56px 0;
    scroll-margin-top: 92px;
  }

  .first-section {
    padding-top: 120px;
  }

  .start-title {
    font-size: clamp(38px, 12vw, 50px);
  }

  .section-title h2,
  .quote-card h2 {
    font-size: 34px;
    letter-spacing: -.055em;
  }

  .section-title p,
  .quote-card p {
    font-size: 16px;
  }

  .cards-grid,
  .features {
    grid-template-columns: 1fr;
  }

  .info-card,
  .feature,
  .process-card,
  .staff-card {
    min-height: auto;
    padding: 22px;
    border-radius: 24px;
  }

  .dark-panel,
  .quote-card {
    padding: 22px;
    border-radius: 28px;
  }

  .quote-form input {
    min-height: 54px;
    font-size: 16px;
  }

  .btn {
    width: 100%;
    min-height: 54px;
  }

  .contact-line {
    width: 100%;
  }

  .faq {
    gap: 24px;
  }

  summary {
    padding: 18px;
  }

  details p {
    padding: 0 18px 18px;
  }

  .footer {
    width: calc(100% - 22px);
    padding: 22px 18px;
    margin-bottom: 88px;
  }

  .simple-footer p {
    font-size: 13px;
  }

  .whatsapp-float {
    left: 14px;
    right: 14px;
    bottom: 16px;
    width: auto;
  }
}

/* Celulares muito pequenos */

@media (max-width: 380px) {
  .brand strong {
    font-size: 13px;
  }

  .brand small {
    font-size: 8px;
  }

  .start-title {
    font-size: 36px;
  }
}
