/* ==========================================================================
   Boy Rio Express — folha de estilo única (versão HTML estático)
   Ordem: variáveis (tema) → base/reset → utilitários → cada seção
   ========================================================================== */

/* ---------- Variáveis / Tema ---------- */
:root {
  /* Azul principal */
  --navy: #07111f;
  --navy-2: #0d1b2e;
  --navy-3: #122236;

  /* Tons de azul */
  --blue: #1d5fa7;
  --blue-light: #eaf6fb;
  --blue-soft: #f4f8fc;

  /* Ciano */
  --cyan: #00c4e0;
  --cyan-2: #33d6ee;
  --cyan-dark: #0090a8;

  /* Fundos */
  --color-bg: #ffffff;
  --color-bg-alt: #f7f9fc;
  --color-bg-white: #ffffff;
  --color-bg-soft: #fafbfc;
  --color-bg-gray: #f1f4f8;

  /* Textos */
  --color-text: #1a2b42;
  --color-text-muted: #5b6b82;
  --color-text-light: #ffffff;
  --color-text-soft: #7a8798;

  /* Bordas */
  --color-border: #e2e8f1;
  --color-border-light: #edf1f6;
  --color-border-soft: #f1f3f6;

  /* Fontes */
  --font-heading: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  /* Layout */
  --container-max: 1240px;
  --radius-sm: 12px;
  --radius-md: 18px;

  /* Sombras */
  --shadow-sm: 0 12px 30px -10px rgba(7, 17, 31, 0.25);
  --shadow-md: 0 20px 45px -20px rgba(7, 17, 31, 0.35);
}

/* ---------- Base / Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  margin: 0;
  line-height: 1.15;
}

p { margin: 0; }

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

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

ul, ol { list-style: none; margin: 0; padding: 0; }

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  background: none;
  color: inherit;
}

svg { width: 1em; height: 1em; }

/* ---------- Utilitários ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  position: relative;
  padding: 90px 0;
}

.section--light { background: #ffffff; }

.section--alt {
  background: var(--blue-soft);
  border-top: 1px solid rgba(0, 144, 168, 0.06);
  border-bottom: 1px solid rgba(0, 144, 168, 0.06);
}

.section--navy { background: var(--navy); }

.section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  max-width: 680px;
  margin-bottom: 16px;
  color: var(--color-text);
}

.section--navy .section__title { color: #ffffff; }

.section__lead {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 50px;
  line-height: 1.6;
}

.section--navy .section__lead { color: rgba(255, 255, 255, 0.72); }

.text-cyan { color: var(--cyan); }
.text-cyan-dark { color: var(--cyan-dark); }

.link-arrow {
  font-weight: 700;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-arrow:hover { text-decoration: underline; }

/* Botões */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -80%;
  width: 45%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.btn:hover::before { left: 130%; }
.btn:active { transform: scale(0.96); }
.btn svg { transition: transform 0.25s ease; width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover svg { transform: translateX(2px); }

.btn--cyan {
  background: linear-gradient(135deg, var(--cyan-2), var(--cyan));
  color: var(--navy);
  box-shadow: 0 12px 30px -10px rgba(0, 196, 224, 0.55);
}
.btn--cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px rgba(0, 196, 224, 0.7);
}

.btn--outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  background: transparent;
}
.btn--outline:hover { border-color: var(--cyan); color: var(--cyan); }

.btn--ghost {
  border-color: var(--cyan-dark);
  color: var(--cyan-dark);
  background: transparent;
}
.btn--ghost:hover { background: var(--cyan-dark); color: #ffffff; }

.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }

@media (max-width: 640px) {
  .section { padding: 64px 0; }
}

/* ---------- Reveal (animação de entrada) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(10px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal--visible { opacity: 1; transform: translateY(0); filter: blur(0); }
.reveal--settled { filter: none; transition: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; filter: none; }
}

/* ---------- BgBlur (formas de fundo desfocadas) ---------- */
.bg-blur {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.bg-blur__shape {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}
.bg-blur--default .bg-blur__shape--a { top: -120px; left: -100px; background: var(--cyan); }
.bg-blur--default .bg-blur__shape--b {
  bottom: -140px; right: -100px; width: 380px; height: 380px;
  background: #3b6cf6; opacity: 0.28;
}
.bg-blur--light .bg-blur__shape { opacity: 0.14; }
.bg-blur--light .bg-blur__shape--a { top: -140px; right: -80px; left: auto; background: var(--cyan); }
.bg-blur--light .bg-blur__shape--b {
  bottom: -160px; left: -100px; right: auto; width: 360px; height: 360px;
  background: var(--cyan-dark); opacity: 0.1;
}
@media (max-width: 640px) {
  .bg-blur__shape { width: 260px; height: 260px; filter: blur(60px); }
}

/* ---------- Logo ---------- */
.logo { height: 46px; width: auto; display: block; }
.logo--footer { height: 56px; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #dce3eb;
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(238, 242, 246, 0.98);
  backdrop-filter: blur(10px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 24px;
}
.nav__cities { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav__city {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 10px; border-radius: 999px;
  background: rgba(0, 196, 224, 0.1);
  color: #1a2b42; font-weight: 700; font-size: 0.76rem; letter-spacing: 0.02em;
}
.nav__flag {
  width: 18px; height: 13px; object-fit: cover; border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08); flex-shrink: 0;
}
.nav__links ul { display: flex; gap: 30px; }
.nav__links a {
  color: #1a2b42; font-weight: 600; font-size: 0.94rem;
  position: relative; padding: 6px 0;
}
.nav__links a:hover { color: var(--cyan-dark); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--cyan); transition: width 0.2s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.nav__phone { display: flex; align-items: center; gap: 10px; }
.nav__phone-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0, 196, 224, 0.12); color: var(--cyan-dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav__phone-icon svg { width: 16px; height: 16px; }
.nav__phone-text { display: flex; flex-direction: column; line-height: 1.25; }
.nav__phone-text strong { color: #1a2b42; font-size: 0.9rem; }
.nav__phone-text small {
  color: #68778a; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.nav__cta { padding: 11px 20px; font-size: 0.88rem; }
.nav__cta svg { width: 16px; height: 16px; }
.nav__toggle {
  display: none; align-items: center; justify-content: center; flex-direction: column;
  gap: 5px; width: 38px; height: 38px; padding: 0; color: #1a2b42;
}
.nav__toggle span {
  display: block; height: 2px; width: 100%; background: #1a2b42; border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
/* Ícone "X" quando o menu está aberto */
.nav__toggle--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle--active span:nth-child(2) { opacity: 0; }
.nav__toggle--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) { .nav__cities { display: none; } }

@media (max-width: 860px) {
  .nav__links {
    position: fixed; top: 78px; right: 0; bottom: 0; left: 0;
    background: #eef2f6; transform: translateX(100%);
    transition: transform 0.3s ease; overflow-y: auto; padding: 30px 24px; z-index: 99;
  }
  .nav__links--open { transform: translateX(0); }
  .nav__links ul { flex-direction: column; gap: 6px; }
  .nav__links a {
    display: block; color: #1a2b42; padding: 14px 6px; font-size: 1.05rem;
    border-bottom: 1px solid #dce3eb;
  }
  .nav__links a:hover { color: var(--cyan-dark); }
  .nav__phone-text small { display: none; }
  .nav__toggle { display: flex; }
}
@media (max-width: 640px) { .nav__phone-text { display: none; } }
@media (max-width: 420px) { .nav__cta { display: none; } }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero__image { width: 100%; height: 100vh; overflow: hidden; border-radius: 24px; }
.hero__video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__photo { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.hero__shadow {
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(7, 17, 31, 0.94) 0%, rgba(7, 17, 31, 0.86) 26%, rgba(7, 17, 31, 0.55) 44%,
    rgba(7, 17, 31, 0.12) 62%, rgba(7, 17, 31, 0.28) 100%);
}
.hero__glows { position: absolute; inset: 0; overflow: hidden; z-index: 1; mix-blend-mode: screen; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; }
.hero__glow--a {
  width: 340px; height: 340px; top: -60px; left: 8%;
  background: #00c2e06d; animation: hero-glow-a 16s ease-in-out infinite;
}
.hero__glow--b {
  width: 260px; height: 260px; bottom: -40px; left: 40%;
  background: #2447c9; animation: hero-glow-b 20s ease-in-out infinite;
}
.hero__glow--c {
  width: 300px; height: 300px; top: 30%; right: -60px;
  background: #33d6ee; animation: hero-glow-c 18s ease-in-out infinite;
}
@keyframes hero-glow-a { 0%,100% { transform: translate(0,0) scale(1);} 50% { transform: translate(60px,40px) scale(1.15);} }
@keyframes hero-glow-b { 0%,100% { transform: translate(0,0) scale(1);} 50% { transform: translate(-70px,-30px) scale(1.1);} }
@keyframes hero-glow-c { 0%,100% { transform: translate(0,0) scale(1);} 50% { transform: translate(-50px,50px) scale(1.2);} }
@media (prefers-reduced-motion: reduce) { .hero__glow { animation: none; } }

.hero > .container { position: relative; z-index: 2; width: 100%; }
.hero__content { max-width: 620px; padding: 60px 0; }
.hero__eyebrow {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.4rem); color: #ffffff;
  letter-spacing: 0.01em; margin-bottom: 4px;
}
.hero__word {
  display: inline-block; opacity: 0; transform: translateY(16px);
  animation: hero-word-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero__word:not(:last-child)::after { content: "\00a0"; }
@keyframes hero-word-in { to { opacity: 1; transform: translateY(0); } }

.hero h1 {
  font-weight: 900; font-size: clamp(2.4rem, 4.8vw, 4.1rem);
  letter-spacing: -0.02em; color: var(--cyan);
  margin-bottom: 22px; line-height: 1; white-space: nowrap;
}
.hero__cursor {
  display: inline-block; width: 4px; height: 0.85em; margin-left: 4px;
  vertical-align: -0.08em; background: var(--cyan);
  animation: hero-cursor-blink 0.9s step-end infinite;
}
@keyframes hero-cursor-blink { 0%,50% { opacity: 1; } 51%,100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .hero__word { animation: none; opacity: 1; transform: none; }
}
.hero__subtitle {
  color: rgba(255, 255, 255, 0.85); font-size: 1.05rem; line-height: 1.7;
  max-width: 460px; margin-bottom: 30px;
}
.hero__rating {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
  padding: 10px 18px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px); font-weight: 700; color: #ffffff;
}
.hero__rating svg { color: #f5a623; }
.hero__rating small { color: rgba(255, 255, 255, 0.62); font-weight: 500; font-size: 0.82rem; }
.hero__live {
  position: absolute; right: 5%; bottom: 6%; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(7, 17, 31, 0.65); border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px); color: #ffffff; font-weight: 700; font-size: 0.8rem; white-space: nowrap;
}
.hero__live-dot { position: relative; width: 9px; height: 9px; flex-shrink: 0; }
.hero__live-dot::before, .hero__live-dot::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; background: #2fd66b;
}
.hero__live-dot::before { animation: hero-live-ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite; }
@keyframes hero-live-ping {
  0% { transform: scale(1); opacity: 0.65; }
  75%,100% { transform: scale(3); opacity: 0; }
}
@media (max-width: 760px) {
  .hero { min-height: 88vh; }
  .hero__shadow {
    background: linear-gradient(180deg,
      rgba(7, 17, 31, 0.5) 0%, rgba(7, 17, 31, 0.55) 40%,
      rgba(7, 17, 31, 0.88) 78%, rgba(7, 17, 31, 0.96) 100%);
  }
  .hero__content { padding: 40px 0 48px; max-width: 100%; }
  .hero__live { left: 50%; right: auto; transform: translateX(-50%); bottom: 4%; }
}
@media (prefers-reduced-motion: reduce) { .hero__live-dot::before { animation: none; } }

/* ==========================================================================
   DIFERENCIAIS
   ========================================================================== */
.diferenciais { position: relative; background: var(--navy); padding: 46px 0; }
.diferenciais__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.diferenciais__item {
  display: flex; flex-direction: column; gap: 16px; padding: 26px 22px;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.diferenciais__item:hover {
  transform: translateY(-4px); border-color: rgba(0, 196, 224, 0.4);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}
.diferenciais__icon {
  width: 48px; height: 48px; border-radius: 13px;
  background: linear-gradient(135deg, var(--cyan-2), var(--cyan-dark));
  color: var(--navy); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 8px 20px -8px rgba(0, 196, 224, 0.55);
}
.diferenciais__body { display: flex; flex-direction: column; gap: 6px; }
.diferenciais__body strong { color: #ffffff; font-size: 0.98rem; font-weight: 700; line-height: 1.3; }
.diferenciais__body span { color: rgba(255, 255, 255, 0.6); font-size: 0.83rem; line-height: 1.55; }
@media (max-width: 960px) { .diferenciais__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .diferenciais__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   SERVIÇOS
   ========================================================================== */
.servicos__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 40px;
}
.servicos__lead { margin-bottom: 0; }
.servicos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; }
.servico-card {
  background: #ffffff; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.servico-card--offset { margin-top: 34px; }
.servico-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px -18px rgba(0, 196, 224, 0.35);
  border-color: rgba(0, 196, 224, 0.35);
}
.servico-card__banner { position: relative; height: 190px; background: var(--navy-2); overflow: hidden; }
.servico-card__banner img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.servico-card:hover .servico-card__banner img { transform: scale(1.08) rotate(0.5deg); }
.servico-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.05) 0%, rgba(7, 17, 31, 0.55) 100%);
  transition: background 0.35s ease;
}
.servico-card:hover .servico-card__overlay {
  background: linear-gradient(180deg, rgba(0, 144, 168, 0.25) 0%, rgba(7, 17, 31, 0.72) 100%);
}
.servico-card__badge {
  position: absolute; top: 16px; right: 16px; z-index: 1;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  animation: servico-badge-pulse 2.4s ease-in-out infinite;
}
@keyframes servico-badge-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0, 196, 224, 0.45); }
  50% { box-shadow: 0 0 0 6px rgba(0, 196, 224, 0); }
}
.servico-card__badge--popular { background: var(--cyan); color: var(--navy); }
.servico-card__badge--new { background: #3b6cf6; color: #ffffff; }
.servico-card__chip {
  position: absolute; left: 20px; bottom: -22px; z-index: 1;
  width: 52px; height: 52px; border-radius: 14px; background: #ffffff; color: var(--cyan-dark);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.servico-card:hover .servico-card__chip { transform: rotate(-8deg) scale(1.1); }
.servico-card__body { padding: 38px 24px 26px; }
.servico-card__body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.servico-card__body p { color: var(--color-text-muted); font-size: 0.92rem; line-height: 1.6; margin-bottom: 16px; }
.servico-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 0.88rem; color: var(--cyan-dark);
}
.servico-card__link svg { transition: transform 0.25s ease; }
.servico-card:hover .servico-card__link svg { transform: translateX(4px); }
@media (max-width: 960px) {
  .servicos__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .servico-card--offset { margin-top: 0; }
}

/* ==========================================================================
   POR QUE ESCOLHER
   ========================================================================== */
.pqe__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }
.pqe__items { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.pqe__item {
  position: relative; display: flex; align-items: flex-start; gap: 14px;
  padding: 18px; border-radius: var(--radius-sm); border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden; transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.pqe__item:hover {
  transform: translateY(-4px); border-color: rgba(0, 196, 224, 0.35);
  background: rgba(255, 255, 255, 0.03);
}
.pqe__num {
  position: absolute; right: 8px; top: -6px;
  font-family: var(--font-heading); font-weight: 900; font-size: 2.6rem;
  color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  line-height: 1; pointer-events: none;
}
.pqe__item strong { display: block; color: #ffffff; font-weight: 700; font-size: 0.98rem; margin-bottom: 4px; }
.pqe__item p { color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; line-height: 1.5; }
.pqe__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(0, 196, 224, 0.14); color: var(--cyan);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}
.pqe__item:hover .pqe__icon { transform: scale(1.12) rotate(-6deg); background: rgba(0, 196, 224, 0.25); }
.pqe__illustration { position: relative; aspect-ratio: 4/3.3; }
.pqe__photo {
  position: absolute; border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(160deg, var(--navy-3), var(--navy-2));
  box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.55);
}
.pqe__photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.pqe__photo:hover img { transform: scale(1.06); }
.pqe__photo--rj { top: 0; left: 0; width: 78%; height: 74%; z-index: 1; }
.pqe__photo--sp { right: 0; bottom: 0; width: 56%; height: 46%; z-index: 2; border: 3px solid var(--navy-2); }
.pqe__photo-tag {
  position: absolute; left: 12px; top: 12px; padding: 5px 12px; border-radius: 999px;
  background: rgba(7, 17, 31, 0.72); backdrop-filter: blur(6px);
  color: #ffffff; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.03em;
}
.pqe__badge {
  position: absolute; left: 24px; bottom: 24px; z-index: 3;
  background: linear-gradient(135deg, var(--cyan-2), var(--cyan-dark)); color: var(--navy);
  border-radius: var(--radius-sm); padding: 14px 20px;
  box-shadow: 0 0 0 0 rgba(0, 196, 224, 0.5); animation: pqe-badge-pulse 2.6s ease-in-out infinite;
}
@keyframes pqe-badge-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0, 196, 224, 0.45); }
  50% { box-shadow: 0 0 0 10px rgba(0, 196, 224, 0); }
}
.pqe__badge strong { display: block; font-family: var(--font-heading); font-weight: 900; font-size: 1.4rem; line-height: 1; }
.pqe__badge span { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }
@media (max-width: 960px) {
  .pqe__grid { grid-template-columns: 1fr; }
  .pqe__illustration { order: -1; max-width: 420px; margin: 0 auto; }
}
@media (max-width: 560px) { .pqe__items { grid-template-columns: 1fr; } }

/* ==========================================================================
   COMO FUNCIONA
   ========================================================================== */
.como-funciona__title { margin: 0 auto 50px; text-align: center; }
.como-funciona__steps {
  position: relative; display: flex; flex-direction: column; gap: 36px;
  max-width: 620px; margin: 0 auto 50px;
}
.como-funciona__line {
  position: absolute; top: 8px; bottom: 8px; left: 32px; width: 2px; z-index: 0;
  background-image: linear-gradient(180deg, var(--cyan) 0 10px, transparent 10px 20px);
  background-size: 2px 20px; background-repeat: repeat-y; opacity: 0.4;
  animation: como-funciona-flow 1.4s linear infinite;
}
@keyframes como-funciona-flow { to { background-position: 0 20px; } }
.como-funciona__step { position: relative; z-index: 1; display: flex; align-items: flex-start; gap: 22px; text-align: left; }
.como-funciona__circle {
  position: relative; width: 66px; height: 66px; border-radius: 50%;
  background: var(--navy-2); border: 2px solid var(--cyan); color: var(--cyan);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, color 0.3s ease;
  animation: como-funciona-breathe 2.8s ease-in-out infinite;
}
@keyframes como-funciona-breathe {
  0%,100% { box-shadow: 0 0 0 0 rgba(0, 196, 224, 0.35); }
  50% { box-shadow: 0 0 0 8px rgba(0, 196, 224, 0); }
}
.como-funciona__step:hover .como-funciona__circle { transform: scale(1.12) rotate(-8deg); background: var(--cyan); color: var(--navy); }
.como-funciona__step-num {
  position: absolute; top: -4px; right: -4px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--cyan); color: var(--navy); font-size: 0.7rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; border: 2px solid var(--navy);
  transition: transform 0.3s ease;
}
.como-funciona__step:hover .como-funciona__step-num { transform: scale(1.15); }
.como-funciona__step-body { padding-top: 10px; }
.como-funciona__step h3 { color: #ffffff; font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; }
.como-funciona__step p { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; line-height: 1.6; max-width: 440px; }
.como-funciona__cta { text-align: center; }
@media (max-width: 560px) {
  .como-funciona__line { left: 26px; }
  .como-funciona__circle { width: 54px; height: 54px; }
  .como-funciona__step { gap: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .como-funciona__line, .como-funciona__circle { animation: none; }
}

/* ==========================================================================
   ÁREAS ATENDIDAS
   ========================================================================== */
.areas__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 24px; }
.area-card {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 20px; align-items: stretch;
  background: #ffffff; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: 28px; box-shadow: 0 14px 35px -18px rgba(0, 0, 0, 0.35);
}
.area-card__info { display: flex; flex-direction: column; }
.area-card__info h3 { color: var(--color-text); font-size: 1.25rem; font-weight: 800; margin-bottom: 10px; }
.area-card__info > p { color: var(--color-text-muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 18px; }
.area-card__list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.area-card__list li { display: flex; align-items: center; gap: 8px; color: var(--color-text); font-size: 0.84rem; font-weight: 600; }
.area-card__list svg { color: var(--cyan); flex-shrink: 0; }
.area-card__extra { color: var(--cyan-dark) !important; }
.area-card__map {
  background: var(--color-bg-gray); border-radius: var(--radius-sm); overflow: hidden;
  display: flex; align-items: center; justify-content: center; min-height: 200px;
  border: 1px solid var(--color-border-light);
}
.area-card__map-frame {
  width: 100%; height: 100%; min-height: 200px; border: 0; display: block;
  filter: grayscale(0.15) contrast(1.05);
}
@media (max-width: 1024px) { .areas__grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .area-card { grid-template-columns: 1fr; }
  .area-card__map { order: -1; aspect-ratio: 4/3.3; }
}

/* ==========================================================================
   FORMAS DE PAGAMENTO
   ========================================================================== */
.formas-pagamento { text-align: center; }
.formas-pagamento__title { margin: 0 auto 14px; }
.formas-pagamento__lead { margin: 0 auto 40px; }
.formas-pagamento__grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.payment-badge {
  display: inline-flex; align-items: center; gap: 10px; background: #ffffff;
  border: 1px solid var(--color-border); padding: 14px 22px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease; min-width: 150px;
}
.payment-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.payment-badge__label { font-weight: 600; font-size: 0.88rem; color: var(--color-text); }
.payment-badge__word {
  font-family: var(--font-heading); font-weight: 900; font-size: 1.1rem;
  font-style: italic; letter-spacing: -0.02em;
}
.payment-badge--visa .payment-badge__word { color: #1a1f71; }
.payment-badge__mark--mastercard { position: relative; width: 32px; height: 20px; flex-shrink: 0; }
.payment-badge__mark--mastercard .circle { position: absolute; top: 0; width: 20px; height: 20px; border-radius: 50%; }
.circle--red { left: 0; background: #eb001b; opacity: 0.9; }
.circle--yellow { left: 12px; background: #f79e1b; mix-blend-mode: multiply; }
.payment-badge--amex { background: #016fd0; border-color: #016fd0; }
.payment-badge--amex .payment-badge__word,
.payment-badge--amex .payment-badge__label { color: #ffffff; font-style: normal; }
.payment-badge--elo .payment-badge__word {
  background: linear-gradient(90deg, #ffd400, #eb0045, #00a4e0);
  -webkit-background-clip: text; background-clip: text; color: transparent; font-style: normal;
}
.payment-badge--diners .payment-badge__word { color: #0079be; font-style: normal; font-size: 0.98rem; }
.payment-badge--pix .payment-badge__label { color: #32bcad; }
@media (max-width: 640px) { .payment-badge { min-width: 0; padding: 12px 16px; } }

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.cta-final { position: relative; background: var(--navy); padding: 90px 0; overflow: hidden; }
.cta-final__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.cta-final__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.75), rgba(7, 17, 31, 0.94));
}
.cta-final__inner { position: relative; z-index: 2; text-align: center; max-width: 640px; margin: 0 auto; }
.cta-final__inner h2 { color: #ffffff; font-size: clamp(1.9rem, 3.8vw, 2.8rem); font-weight: 800; margin-bottom: 14px; }
.cta-final__inner > p { color: rgba(255, 255, 255, 0.82); font-size: 1.08rem; line-height: 1.6; margin: 0 auto 40px; max-width: 480px; }
.cta-final__buttons { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; }
.cta-btn {
  position: relative; display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 28px; border-radius: 8px; overflow: hidden; isolation: isolate;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.cta-btn::before { content: ""; position: absolute; inset: 0; z-index: -1; transition: opacity 0.3s ease; }
.cta-btn:hover { transform: translateY(-4px) scale(1.02); }
.cta-btn--whats { background: linear-gradient(135deg, #2fd66b, #1fa855); box-shadow: 0 14px 32px -12px rgba(47, 214, 107, 0.55); }
.cta-btn--whats:hover { box-shadow: 0 20px 40px -12px rgba(47, 214, 107, 0.7); }
.cta-btn--call {
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.25); backdrop-filter: blur(8px);
}
.cta-btn--call:hover { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.4); box-shadow: 0 16px 32px -14px rgba(0, 0, 0, 0.5); }
.cta-btn__icon {
  display: flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 12px; background: rgba(255, 255, 255, 0.2); color: #ffffff; flex-shrink: 0;
  animation: cta-icon-pulse 2.2s ease-in-out infinite;
}
@keyframes cta-icon-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.cta-btn__text { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.cta-btn__text strong { color: #ffffff; font-weight: 800; font-size: 1.02rem; line-height: 1.2; }
.cta-btn__text small { color: rgba(255, 255, 255, 0.75); font-weight: 500; font-size: 0.78rem; }
@media (prefers-reduced-motion: reduce) { .cta-btn__icon { animation: none; } }
@media (max-width: 640px) {
  .cta-final__buttons { flex-direction: column; align-items: center; }
  .cta-btn { width: 100%; max-width: 340px; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--navy); padding: 70px 0 0; }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__brand p { color: rgba(255, 255, 255, 0.6); line-height: 1.7; margin: 18px 0 20px; font-size: 0.92rem; }
.footer__socials { display: flex; gap: 12px; }
.footer__socials a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex; align-items: center; justify-content: center; color: #ffffff;
}
.footer__socials a:hover { background: var(--cyan); color: var(--navy); border-color: var(--cyan); }
.footer__col h4 { color: #ffffff; font-size: 1rem; font-weight: 700; margin-bottom: 18px; }
.footer__info-list { display: flex; flex-direction: column; gap: 16px; }
.footer__info-list li {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255, 255, 255, 0.62); font-size: 0.9rem; line-height: 1.5;
}
.footer__info-list svg { color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.footer__info-list a:hover { color: var(--cyan); }
.footer__bottom {
  padding: 24px; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.footer__bottom p { color: rgba(255, 255, 255, 0.45); font-size: 0.85rem; }
.footer-dev { color: #fff; font-size: 0.85rem; }
.footer-dev a { font-weight: 600; text-decoration: none; transition: opacity 0.2s; }
.footer-dev a:hover { opacity: 0.7; }
@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__socials { justify-content: center; }
  .footer__info-list li { justify-content: center; }
}

/* ==========================================================================
   BOTÕES FLUTUANTES + VOLTAR AO TOPO
   ========================================================================== */
.float-buttons {
  position: fixed; right: 22px; bottom: 22px;
  display: flex; flex-direction: column; gap: 14px; z-index: 200;
}
.float-buttons__btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #ffffff;
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.45); transition: transform 0.2s ease;
}
.float-buttons__btn:hover { transform: scale(1.08); }
.float-buttons__btn--call { width: 68px !important; height: 68px !important; background: linear-gradient(135deg, #3b6cf6, #2447c9); }
.float-buttons__btn--call svg { width: 34px !important; height: 34px !important; }
.float-buttons__btn--whats { width: 72px !important; height: 72px !important; background: linear-gradient(135deg, #2fd66b, #1fa855); }
.float-buttons__btn--whats svg { width: 38px !important; height: 38px !important; }

.back-to-top {
  position: fixed; left: 22px; bottom: 22px; width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-2, #0d1b2e); color: var(--cyan);
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease; z-index: 200;
}
.back-to-top--visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--cyan); color: var(--navy); }
.back-to-top svg { width: 20px; height: 20px; }
