
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

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

:root {
  --navy: #001533;
  --navy-light: #001f4d;
  --gold: #f4a300;
  --white: #ffffff;
  --text: #061739;
  --muted: #5d6b85;
  --border: #e5e9f1;
  --whatsapp: #25d366;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--text);
}

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

/* =========================
   HEADER
========================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 92px;
  background: linear-gradient(90deg, #00132f, #001a42);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 54px;
  color: var(--white);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
}

.logo > span > span {
  color: var(--gold);
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #ffffff 45%,
    var(--gold) 45%,
    var(--gold) 100%
  );
  color: var(--navy);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 16px;
  font-weight: 600;
}

.nav a {
  transition: 0.3s;
}

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

.btn-whatsapp {
  border: 1.5px solid var(--gold);
  border-radius: 10px;
  padding: 15px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  background: rgba(244, 163, 0, 0.12);
}

.btn-whatsapp i {
  color: var(--whatsapp);
  font-size: 21px;
}

/* =========================
   HERO
========================= */

.hero {
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Fundo com ônibus ocupando toda a hero */
.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 750px;
  min-height: 750px;
  overflow: hidden;
  z-index: 1;
}

.hero-visual .bus-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 750px;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  display: block;
}

/* Degradê por cima dos ônibus */
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.98) 24%,
    rgba(255, 255, 255, 0.82) 38%,
    rgba(255, 255, 255, 0.48) 52%,
    rgba(255, 255, 255, 0.18) 64%,
    rgba(255, 255, 255, 0) 78%
  );
  z-index: 2;
  pointer-events: none;
}

/* Profissional por cima do fundo */
.hero-visual .person-img {
  position: absolute;
  right: -110px;
  bottom: 0;
  height: 670px;
  width: auto;
  object-fit: contain;
  z-index: 8;
  display: block;
}

/* Esconde badge antigo, caso ainda esteja dentro do hero-visual */
.hero-visual .mini-card {
  display: none;
}

/* Botão verde flutuante */
.hero-visual .floating-whatsapp {
  position: absolute;
  right: 32px;
  bottom: 36px;
  width: 64px;
  height: 64px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  z-index: 25;
  box-shadow: 0 14px 28px rgba(0, 120, 55, 0.28);
}

/* Conteúdo da esquerda */
.hero-content {
  grid-column: 1 / 2;
  grid-row: 1;
  padding: 64px 0 40px 54px;
  position: relative;
  z-index: 30;
}

.tag {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 22px;
}

.tag span {
  width: 38px;
  height: 3px;
  background: var(--gold);
  display: block;
}

.tag.center {
  justify-content: center;
  font-size: 27px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.12;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: -1.3px;
  margin-bottom: 24px;
}

.hero h1 strong {
  color: var(--gold);
}

.hero p {
  max-width: 500px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--navy);
  margin-bottom: 34px;
}

.benefits {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 34px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-item i {
  color: var(--gold);
  font-size: 28px;
}

.benefit-item span {
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--navy);
}

.benefit-line {
  width: 1px;
  height: 42px;
  background: var(--border);
}

.main-button {
  width: fit-content;
  background: var(--navy);
  color: var(--white);
  padding: 20px 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 12px 25px rgba(0, 15, 50, 0.22);
  transition: 0.3s;
}

.main-button i {
  color: var(--gold);
  font-size: 22px;
}

.main-button:hover {
  background: #00245c;
  transform: translateY(-3px);
}

/* Badge Atendimento 24h abaixo do botão */
.hero-content .mini-card-left {
  position: relative;
  margin-top: 26px;
  margin-bottom: 70px;
  width: fit-content;
  background: rgba(0, 21, 51, 0.96);
  color: #ffffff;
  border-radius: 10px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 50;
  box-shadow: 0 16px 32px rgba(0, 20, 60, 0.18);
}

.hero-content .mini-card-left i {
  color: var(--gold);
  font-size: 32px;
}

.hero-content .mini-card-left strong {
  display: block;
  font-size: 16px;
  margin-bottom: 3px;
}

.hero-content .mini-card-left span {
  font-size: 14px;
  opacity: 0.95;
}

/* =========================
   CARD WHATSAPP CENTRAL
========================= */

.whatsapp-center {
  grid-column: 2 / 3;
  grid-row: 1;
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
}

.whatsapp-card {
  width: 275px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(3px);
  border-radius: 16px;
  box-shadow: 0 22px 50px rgba(0, 20, 60, 0.18);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.95);
  transform: scale(0.98);
  transform-origin: center center;
}

.phone-header {
  background: var(--navy);
  color: var(--white);
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-header strong {
  font-size: 14px;
}

.phone-header small {
  display: block;
  font-size: 12px;
  color: #3ee083;
  margin-top: 2px;
}

.phone-header .fa-ellipsis-vertical {
  margin-left: auto;
}

.brand-circle {
  width: 34px;
  height: 34px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.phone-body {
  padding: 14px;
  background: rgba(247, 248, 251, 0.98);
}

.message {
  background: var(--white);
  border-radius: 10px;
  padding: 13px;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--navy);
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(0, 20, 60, 0.04);
}

.phone-body button {
  width: 100%;
  border: none;
  background: var(--white);
  color: var(--navy);
  border-radius: 9px;
  padding: 11px 12px;
  margin-bottom: 8px;
  font-size: 12.5px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 7px 15px rgba(0, 20, 60, 0.035);
}

.phone-body button:last-child {
  margin-bottom: 0;
}

.phone-body button i {
  width: 20px;
  color: var(--navy);
  text-align: center;
}

/* =========================
   SERVICES
========================= */

.services {
  margin-top: 50px;
  padding: 55px 54px 58px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.services-title {
  text-align: center;
  margin-bottom: 32px;
}

.services-title .tag {
  margin-bottom: 16px;
}

.services-title h2 {
  color: var(--navy);
  font-size: 30px;
  line-height: 1.25;
  font-weight: 900;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1220px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 22px;
  text-align: center;
  min-height: 220px;
  box-shadow: 0 12px 30px rgba(0, 20, 60, 0.045);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0, 20, 60, 0.09);
}

.service-card i {
  color: var(--gold);
  font-size: 42px;
  margin-bottom: 22px;
}

.service-card h3 {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.55;
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 1200px) {
  .hero {
    grid-template-columns: 40% 30% 30%;
  }

  .hero h1 {
    font-size: 42px;
  }

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

@media (max-width: 980px) {
  .header {
    height: auto;
    padding: 24px;
    flex-direction: column;
    gap: 22px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
  }

  .hero {
    height: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .hero-visual {
    position: relative;
    height: 520px;
    min-height: 520px;
    order: 3;
  }

  .hero-visual .bus-bg {
    height: 520px;
  }

  .hero-visual .person-img {
    right: 20px;
    height: 500px;
  }

  .hero-content {
    padding: 44px 24px 20px;
    order: 1;
  }

  .hero h1 {
    font-size: 38px;
  }

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

  .benefit-line {
    display: none;
  }

  .whatsapp-center {
    padding: 20px 24px;
    order: 2;
  }

  .whatsapp-card {
    width: 100%;
    max-width: 330px;
    transform: none;
  }

  .hero-visual .floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
  }

  .services {
    margin-top: 0;
    padding: 34px 24px 48px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .logo {
    font-size: 28px;
  }

  .logo-icon {
    width: 44px;
    height: 44px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
  }

  .main-button {
    width: 100%;
    justify-content: center;
  }

  .services-title h2 {
    font-size: 24px;
  }

  .hero-content .mini-card-left {
    width: auto;
  }
}
/* CARDS DE SERVIÇOS LADO A LADO NO DESKTOP */

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1220px;
  margin: 0 auto;
}

.service-card {
  width: 100%;
}
@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* FORÇAR CARDS DE SERVIÇOS LADO A LADO */

.services-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 24px !important;
  max-width: 1220px !important;
  margin: 0 auto !important;
}

.service-card {
  width: 100% !important;
  min-height: 220px !important;
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 620px) {
  .services-grid {
    grid-template-columns: 1fr !important;
  }
}

.hero {
  height: auto !important;
  min-height: 100vh;
  overflow: visible !important;
  padding-bottom: 100px;
}

.container,
.hero-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero-stats,
.hero-benefits,
.benefits-row,
.info-cards {
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-voltar-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-right: -140px;

  padding: 12px 20px;

  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;

  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;

  transition: all 0.3s ease;
}

.btn-voltar-home:hover {
  background: #f5a800;
  color: #001b3a;
}

@media (max-width: 768px) {
  .container,
  .hero-container {
    padding: 0 20px;
  }
}