/* ============================= */
/* EFEITOS VISUAIS GERAIS */
/* ============================= */

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.bg-glow-1 {
  width: 260px;
  height: 260px;
  background: var(--gold);
  top: 60px;
  left: -60px;
}

.bg-glow-2 {
  width: 320px;
  height: 320px;
  background: #5e5e5e;
  bottom: 40px;
  right: -80px;
}

/* ============================= */
/* BOTÕES */
/* ============================= */

.btn {
  border: 0;
  border-radius: 16px;
  padding: 14px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, opacity .22s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #ffcf48);
  color: #111;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
}


/* ============================= */
/* HEADER */
/* ============================= */

.header {
  position: sticky;
  top: 0;
  z-index: 90;
  width: 100%;
  background: rgba(7, 7, 7, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav {
  min-height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 170px;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.menu a {
  position: relative;
  color: var(--silver);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color .22s ease;
}

.menu a:hover {
  color: var(--gold);
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transition: width .25s ease;
}

.menu a:hover::after {
  width: 100%;
}

/* ===== NOVO LOGIN ===== */

.header-login {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.login-dropdown {
  position: relative;
}

/* BOTÃO SUPERIOR */
.login-trigger {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: 263px;
  min-width: 246px;
  height: 42px;
  padding: 0 14px 0 8px;
  border: none;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  cursor: pointer;
  position: relative;
  z-index: 1002;
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}
.login-dropdown.active .login-label {
  color: #fff;
}
.login-trigger:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.login-label {
  font: 700 15px 'Inter', sans-serif;
  color: #111;
  white-space: nowrap;
}

.login-divider {
  width: 1px;
  height: 22px;
  background: rgba(0,0,0,.25);
  margin-left: auto;
}

/* ÍCONE MENU / X */
.login-hamburger {
  width: 22px;
  height: 22px;
  position: relative;
  display: inline-block;
  flex: 0 0 22px;
}

.login-hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  transition:
    transform .28s ease,
    opacity .18s ease,
    top .28s ease;
}

.login-hamburger span:nth-child(1) {
  top: 3px;
}

.login-hamburger span:nth-child(2) {
  top: 9px;
}

.login-hamburger span:nth-child(3) {
  top: 15px;
}

.login-dropdown.active .login-hamburger span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.login-dropdown.active .login-hamburger span:nth-child(2) {
  opacity: 0;
}

.login-dropdown.active .login-hamburger span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

.login-icon-left {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #111;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
}

.login-icon-left svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* PAINEL */
.login-menu {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  width: 292px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px) scale(.98);
  transition:
    opacity .24s ease,
    transform .28s ease,
    visibility .24s ease;
  z-index: 1001;
}

.login-dropdown.active .login-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.login-panel {
  background: var(--gold);
  border: 1px solid rgba(0, 0, 0, 0.28);
  border-radius: 6px;
  padding: 14px 16px 10px;
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
}

.login-panel-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.login-panel-avatar {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  flex: 0 0 54px;
  background: transparent;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-panel-avatar svg {
  width: 54px;
  height: 54px;
  display: block;
}

.login-panel-user-copy strong {
  display: block;
  font: 800 14px 'Inter', sans-serif;
  color: #000;
  line-height: 1.2;
}

.login-panel-user-copy small {
  display: block;
  margin-top: 2px;
  font: 700 13px 'Inter', sans-serif;
  color: #000;
}

.login-panel-divider {
  height: 1px;
  background: rgba(255,255,255,.45);
  margin: 6px 0 14px;
}

.login-panel-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.login-item {
  display: block;
  padding: 8px 0;
  color: #000;
  font: 700 14px 'Inter', sans-serif;
  text-decoration: none;
  transition: opacity .18s ease, transform .18s ease;
}

.login-item:hover {
  opacity: .72;
  transform: translateX(2px);
}

.login-panel-actions {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 10px;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
}

.login-panel-btn {
  flex: 1 1 50%;
  text-align: center;
  padding: 12px 10px;
  color: #fff;
  text-decoration: none;
  font: 800 14px 'Inter', sans-serif;
  position: relative;
}

.login-panel-btn + .login-panel-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255,255,255,.45);
}

.login-panel-btn:hover {
  background: rgba(255,255,255,.06);
}

@media (max-width: 768px) {
  .login-trigger {
    min-width: 210px;
  }

  .login-menu {
    right: 0;
    width: min(292px, calc(100vw - 24px));
  }
}
@media (max-width: 768px) {
  .nav {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    min-height: 72px;
  }

  .brand-logo {
    width: 120px;
  }

  .menu {
    display: none;
  }

  .header-login {
    justify-content: flex-end;
  }

  .login-trigger {
    min-width: auto;
    width: auto;
    height: 40px;
    padding: 0 10px 0 8px;
    gap: 10px;
  }

  .login-label {
    display: none;
  }

  .login-divider {
    margin-left: 0;
    height: 20px;
  }

  .login-icon-left {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
  }

  .login-icon-left svg {
    width: 18px;
    height: 18px;
  }

  .login-hamburger {
    width: 22px;
    flex: 0 0 22px;
  }

  .login-menu {
    top: calc(100% + 10px);
    right: 0;
    width: min(292px, calc(100vw - 20px));
  }
}
/* ============================= */
/* ELEMENTOS COMPARTILHADOS */
/* ============================= */

.card {
  background: rgba(11, 11, 11, 0.9);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-soft);
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
}

.eyebrow-dark {
  color: var(--gold);
}

/* ============================= */
/* HERO */
/* ============================= */

.hero {
  position: relative;
  padding: 34px 0 26px;
  z-index: 1;
}

.hero-grid,
.method-grid,
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.hero-copy h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.03;
  margin: 12px 0 16px;
}

.hero-copy h1 span {
  color: var(--gold);
}

.hero-copy p {
  color: var(--silver);
  font-size: 1.02rem;
  line-height: 1.72;
  max-width: 62ch;
}

.lead {
  color: #fff !important;
  font-weight: 500;
}

.destaque {
  color: #fff !important;
  font-weight: 600;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.hero-highlights div {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(11, 11, 11, 0.9);
  border: 1px solid rgba(255, 191, 0, 0.12);
}

.hero-highlights strong {
  display: block;
  color: var(--gold);
}

.hero-highlights span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ============================= */
/* RADAR */
/* ============================= */

.hero-side-card {
  position: relative;
  max-width: 520px;
  width: 100%;
  margin-left: auto;
  padding: 24px 24px 4px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,191,0,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,191,0,.14);
  box-shadow: var(--shadow);
  z-index: 45;
  align-self: start;
}

.radar-card {
  overflow: hidden;
}

.radar-screen {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.08) 0 1px, transparent 1px),
    radial-gradient(circle at center, rgba(255,191,0,.06), rgba(255,191,0,.015) 58%, transparent 72%),
    #07100a;
  border: 1px solid rgba(255,191,0,.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), 0 24px 70px rgba(0,0,0,.4);
  overflow: hidden;
}

.radar-ring,
.radar-cross,
.radar-sweep,
.radar-core,
.radar-destination {
  position: absolute;
}

.radar-ring {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  inset: 12%;
}

.ring-2 { inset: 27%; }
.ring-3 { inset: 41%; }

.radar-cross-h {
  top: 50%;
  left: 6%;
  right: 6%;
  height: 1px;
  background: rgba(255,255,255,.08);
  transform: translateY(-50%);
}

.radar-cross-v {
  left: 50%;
  top: 6%;
  bottom: 6%;
  width: 1px;
  background: rgba(255,255,255,.08);
  transform: translateX(-50%);
}

.radar-core {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 10px rgba(255,191,0,.08), 0 0 24px rgba(255,191,0,.55);
  z-index: 4;
}

.radar-sweep {
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(255,191,0,0) 0deg,
    rgba(255,191,0,0) 310deg,
    rgba(255,191,0,.95) 325deg,
    rgba(255,191,0,.26) 345deg,
    rgba(255,191,0,0) 360deg
  );
  animation: radarRotate 6.5s linear infinite;
  mix-blend-mode: screen;
}

.radar-copy {
  margin-top: 18px;
}

.radar-copy small {
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.radar-copy h3 {
  margin: 8px 0;
  font-family: 'Montserrat', sans-serif;
}

.radar-copy p {
  margin: 0;
  color: var(--silver);
  line-height: 1.65;
}

.radar-card p {
  margin-bottom: 16px;
}

.radar-destination {
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

.radar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(255,191,0,.08), 0 0 14px rgba(255,191,0,.95);
  animation: ping 2.4s ease-in-out infinite;
}

.radar-destination small {
  font-size: 0.75rem;
  color: #f7f7f7;
  background: rgba(0,0,0,.42);
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);

  white-space: nowrap;
  width: max-content;
  max-width: none;
}

.radar-slot-1 { top: 12%; left: 48%; } /* Tampa - mais à esquerda */
.radar-slot-2 { top: 42%; left: 28%; } /* Belgrado - mais externo */
.radar-slot-3 { top: 32%; left: 50%; } /* Paris - centro médio */
.radar-slot-4 { top: 20%; left: 62%; } /* Salvador - sobe mais */
.radar-slot-5 { top: 59%; left: 61%; } /* Mazatlán - joga pra direita */
.radar-slot-6 { top: 74%; left: 46%; } /* Panamá - ok, só desce um pouco */

@keyframes radarRotate {
  to { transform: rotate(360deg); }
}

@keyframes ping {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: .7; }
}

/* ============================= */
/* SEÇÕES INSTITUCIONAIS */
/* ============================= */

.section-dark {
  padding: 34px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  max-width: 960px;
  margin-bottom: 34px;
}

.search-header h2,
.section-head h2,
.location-copy h2,
.method-grid h2 {
  margin: 8px 0 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.section-head p,
.location-copy p,
.method-grid p,
.footer p {
  color: var(--silver);
  line-height: 1.72;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,191,0,.14);
}

.featured {
  border-color: rgba(255,191,0,.2);
}

.card-number {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--silver);
}

.feature-list span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(255,191,0,.08);
}

.visual-stack {
  display: grid;
  gap: 18px;
}

.visual-card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,191,0,.14);
}

.visual-card h3 {
  margin: 10px 0;
  font-family: 'Montserrat', sans-serif;
}

.review-box {
  padding: 20px;
  margin-top: 18px;
  line-height: 1.7;
  border-radius: var(--radius);
}

.review-box strong {
  color: var(--gold);
}

/* ============================= */
/* DEPOIMENTOS */
/* ============================= */

.testimonials-section {
  padding-top: 26px;
}

.testimonials-head {
  max-width: none;
}

.reviews-badge {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,191,0,.14);
  color: var(--gold-soft);
  white-space: nowrap;
}

.testimonial-marquee {
  overflow: hidden;
  position: relative;
  padding-bottom: 2px;
}

.testimonial-track {
  display: flex;
  width: max-content;
  animation: marquee 78s linear infinite;
  will-change: transform;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: min(360px, 86vw);
  padding: 22px;
  margin-right: 18px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255,191,0,.14);
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.testimonial-avatar,
.testimonial-avatar-fallback {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex: 0 0 52px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.08);
}

.testimonial-avatar-fallback {
  display: grid;
  place-items: center;
  background: rgba(255,191,0,.14);
  color: var(--gold);
  font-weight: 800;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

.testimonial-meta strong {
  display: flex;
  align-items: center;
  gap: 3px;
}

.verified-badge {
  width: 17px;
  height: 17px;
  color: #FFBF00;
  flex: 0 0 auto;
  transform: translateY(1px);
}

.testimonial-meta small {
  color: var(--muted);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}

.testimonial-card p {
  margin: 0;
  color: var(--silver);
  line-height: 1.7;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================= */
/* LOCALIZAÇÃO */
/* ============================= */

.location-section {
  padding-top: 34px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: start;
}
.location-copy,
.map-embed-wrap {
  align-self: start;
}
.location-copy h2 {
  margin: 10px 0 14px;
  max-width: 20ch;
}

.location-lead {
  max-width: 62ch;
  color: var(--silver);
  line-height: 1.75;
}
.location-highlight {
  margin-top: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,191,0,.08);
  border: 1px solid rgba(255,191,0,.25);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
}
.location-info-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 18px;
  margin-top: 22px;
}
.location-info-card {
  padding: 22px 24px;
  border: 1px solid rgba(255,191,0,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02));
  min-height: 100%;
}

.location-info-card small {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 800;
}

.location-info-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: #fff;
}

.location-info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.map-embed-wrap {
  padding: 22px;
  border: 1px solid rgba(255,191,0,.14);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: auto;
  min-height: unset;
}

.map-head small {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 800;
}

.map-head strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
}

.map-embed-wrap iframe {
  width: 100%;
  height: 240px;
  min-height: 240px;
  border: 0;
  border-radius: 22px;
}

@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
  .location-info-grid {
    grid-template-columns: 1fr;
  }

  .location-copy h2 {
    max-width: none;
  }

  .map-embed-wrap iframe {
    min-height: 340px;
  }
}

/* ============================= */
/* FAIXA SOCIAL */
/* ============================= */

.social-bar {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), #ffbf00);
  margin-top: 15px;
}

.social-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}
@media (max-width: 768px) {
  .social-bar-inner {
    gap: 10px;
  }
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  transition: .2s;
}

.social-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.social-icon:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* ============================= */
/* FOOTER TOP */
/* ============================= */

.footer {
  padding: 34px;
}

.footer-top {
  padding: 40px 0 30px;
  border-bottom: 1px solid rgba(255,191,0,.12);
  margin-bottom: 20px;
}

.footer-top-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 36px;
  align-items: center;
  overflow: visible;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-logo {
  display: block;
  width: 210;
  margin-bottom: 16px;
}

.footer-description {
  max-width: 560px;
  margin: 0;
  color: #d8d8d8;
  line-height: 1.7;
}

.footer-newsletter h4 {
  margin: 0 0 8px;
  color: #FFBF00;
}

.footer-newsletter p {
  margin: 0 0 14px;
  color: #cfcfcf;
  line-height: 1.6;
}

/* ============================= */
/* NEWSLETTER */
/* ============================= */

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: visible;
}

.newsletter-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  overflow: visible;
}

.newsletter-row input {
  width: 100%;
}

.newsletter-origin,
.newsletter-destination,
.newsletter-row .with-autocomplete {
  position: relative;
  min-width: 0;
  overflow: visible;
}

.newsletter-form input {
  width: 100%;
  height: 46px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  color: #fff;
  padding: 0 14px;
  outline: none;
  transition: border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.newsletter-form input::placeholder {
  color: #9f9f9f;
}

.newsletter-form input:focus {
  border-color: rgba(255,191,0,.34);
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 3px rgba(255,191,0,.08);
}

.newsletter-form button {
  height: 46px;
  border: 0;
  border-radius: 10px;
  background: #FFBF00;
  color: #111;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}

.newsletter-form button:hover {
  opacity: .92;
  transform: translateY(-1px);
}
.newsletter-form input.is-invalid {
  border-color: #d84c4c !important;
  box-shadow: 0 0 0 1px rgba(216, 76, 76, 0.18);
}

.newsletter-form button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============================= */
/* FOOTER GRID */
/* ============================= */

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-grid-rich {
  grid-template-columns: 1.15fr .8fr 1fr 1fr;
}

.footer h4 {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

.footer p {
  margin: 0 0 12px;
  font-size: 13px;
}

footer a {
  font-size: 13px;
}
.footer a:hover {
  color: var(--gold);
}
.footer-bottom {
  margin-top: 12px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  flex-direction: column;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  border-top: 1px solid rgba(255,191,0,.15);
  width: 100%;
  padding-top: 20px;
}

/* ============================= */
/* COLUNA SOCIAL DO FOOTER */
/* ============================= */

.social-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}

.social-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  transition: all .25s ease;
}

.social-row a img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  opacity: 1;
  filter: brightness(0) invert(1);
}

.social-row a:hover {
  background: #FFBF00;
  transform: translateY(-2px);
}

.social-row a:hover img {
  filter: brightness(0); /* preto */
}
@media (max-width: 768px) {
  .social-row a {
    background: transparent;
    box-shadow: none;
  }

  .social-row a img {
    width: 30px;   /* maior */
    height: 30px;  /* maior */
  }
  .social-row a:hover {
    background: transparent;
    transform: none;
  }
  .social-row a:hover {
    background: transparent;
    transform: none;
  }
  .social-row {
    justify-content: flex-start;
    gap: 2px; /* 🔥 diminui ou aumenta aqui */
  }
  .reviews-badge {
    font-size: 11px;
  }
  .section-head {
    display: block;
  }
}
/* ============================= */
/* PAGAMENTOS */
/* ============================= */

.payments {
  margin-top: 30px;
}

.payments-inner {
  width: 100%;
  min-height: 86px;
  border-radius: 12px;
  background: linear-gradient(90deg, #1a1a1a, #2b2b2b);
  box-shadow: 0 10px 40px rgba(0,0,0,.4);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.payment-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.payment-item svg {
  width: auto;
  fill: white;
  opacity: .9;
  transition: all .25s ease;
  display: block;
}

.payment-item svg:hover {
  opacity: 1;
  transform: scale(1.05);
}

.payment-visa { height: 80px; }
.payment-mastercard { height: 43px; }
.payment-amex { height: 25px; }
.payment-diners { height: 30px; }
.payment-contactless { height: 43px; }
.payment-pix { height: 25px; }

/* ============================= */
/* CERTIFICADOS */
/* ============================= */

.certificados h4 {
  font-size: 20px;
  color: #ffbf00;
  margin-top: 18px;
}

.certificados-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.certificados-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.certificados-logos img {
  height: 45px;
  object-fit: contain;
  opacity: .9;
  filter: brightness(0) invert(1);
  transition: all .25s ease;
}

.certificados-logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.cadastur-selo {
  height: 45px;
  margin-top: 10px;
  opacity: .9;
  transition: opacity .3s ease, transform .3s ease;
}

.cadastur-selo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ============================= */
/* RESPONSIVO COMPONENTS */
/* ============================= */

@media (max-width: 768px) {
  .menu {
    display: none;
  }

  .hero-grid,
  .method-grid,
  .location-grid,
  .footer-grid-rich,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .search-shell,
  .footer,
  .section-dark {
    padding: 12px;
  }

  .nav {
    min-height: 78px;
  }

  .brand-logo {
    width: 170px;
    margin-left: 10px;
  }

  .hero {
    padding-top: 26px;
  }

  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .testimonial-card {
    width: 290px;
  }

  .radar-screen {
    width: 100%;
  }

  .footer-top-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-description {
    max-width: 100%;
  }

  .newsletter-row {
    grid-template-columns: 1fr;
  }

  .payment-visa { height: 60px; }
  .payment-mastercard { height: 30px; }
  .payment-amex { height: 19px; }
  .payment-diners { height: 22px; }
  .payment-contactless { height: 31px; }
  .payment-pix { height: 20px; }

  .certificados-logos img {
    height: 28px;
  }
}
@media (max-width: 980px) {
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu {
    display: none;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 132px;
  }

  .login-text small {
    display: none;
  }

  .login-text strong {
    display: none;
  }

  .login-menu {
    min-width: 190px;
  }
}
