:root { scroll-behavior: smooth; }
body { background-color: #000; }

/* ===== Buttons ===== */
.btn-lime {
  background-color: #C6F232;
  box-shadow: 0 8px 24px -8px rgba(198, 242, 50, 0.5);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.btn-lime:hover {
  background-color: #d4f95a;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -8px rgba(198, 242, 50, 0.6);
}

/* ===== Nav scroll state (toggled by JS) ===== */
#nav.scrolled {
  background-color: rgba(0, 0, 0, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== Service cards ===== */
.svc-card {
  position: relative;
  padding: 1.75rem;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(198,242,50,0.12), transparent 60%);
  opacity: 0; transition: opacity .3s ease;
}
.svc-card:hover { transform: translateY(-4px); border-color: rgba(198, 242, 50, 0.45); }
.svc-card:hover::before { opacity: 1; }
.svc-ico {
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0.85rem;
  background: rgba(198, 242, 50, 0.12);
  border: 1px solid rgba(198, 242, 50, 0.25);
  color: #C6F232;
}
.svc-ico svg { width: 1.5rem; height: 1.5rem; }
.svc-title { margin-top: 1.1rem; font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.2rem; color: #fff; }
.svc-desc { margin-top: 0.6rem; color: #a3a3a3; line-height: 1.6; font-size: 0.95rem; }

/* ===== Checklist ===== */
.chk {
  flex: none; width: 1.6rem; height: 1.6rem; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  background: #C6F232; color: #000;
}
.chk svg { width: 0.95rem; height: 0.95rem; }

/* ===== Features (por que) ===== */
.feat {
  padding: 1.75rem; border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color .25s ease, transform .25s ease;
}
.feat:hover { border-color: rgba(198,242,50,0.4); transform: translateY(-3px); }
.feat-num { font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.4rem; color: #C6F232; }
.feat-title { margin-top: 0.75rem; font-family: "Sora", sans-serif; font-weight: 700; color: #fff; font-size: 1.1rem; }
.feat-desc { margin-top: 0.5rem; color: #a3a3a3; font-size: 0.92rem; line-height: 1.6; }

/* ===== Steps ===== */
.step {
  position: relative; padding: 2rem 1.75rem; border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.step-num {
  font-family: "Sora", sans-serif; font-weight: 800; font-size: 2.5rem;
  -webkit-text-stroke: 1.5px rgba(198,242,50,0.6); color: transparent; line-height: 1;
}
.step-title { margin-top: 1rem; font-family: "Sora", sans-serif; font-weight: 700; color: #fff; font-size: 1.25rem; }
.step-desc { margin-top: 0.6rem; color: #a3a3a3; line-height: 1.6; }

/* ===== Location icons ===== */
.loc-ico {
  flex: none; width: 2.75rem; height: 2.75rem; border-radius: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(198, 242, 50, 0.12); border: 1px solid rgba(198, 242, 50, 0.25);
  color: #C6F232;
}
.loc-ico svg { width: 1.3rem; height: 1.3rem; }

/* ===== Gallery ===== */
.gal {
  position: relative; display: block; border-radius: 1.25rem; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08); background: #111;
}
.gal-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease, filter .5s ease; filter: brightness(0.8);
}
.gal:hover .gal-img { transform: scale(1.06); filter: brightness(1); }
.gal-cap {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.1rem; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
}
.gal-cap h3 { color: #fff; font-family: "Sora", sans-serif; font-weight: 700; font-size: 1rem; line-height: 1.25; }
.gal-tag {
  align-self: flex-start; margin-bottom: 0.4rem; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: #000;
  background: #C6F232; padding: 0.2rem 0.6rem; border-radius: 9999px;
}

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 400px) {
  .xs\:inline { display: none; }
}

/* ===== Seletor de idiomas ===== */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 9999px;
  background: rgba(0,0,0,.38);
  backdrop-filter: blur(10px);
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  height: 2rem;
  padding: 0 .55rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  color: #d4d4d4;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}
.lang-btn:hover,
.lang-btn.active {
  color: #000;
  background: #C6F232;
  border-color: rgba(198,242,50,.7);
}
.mini-flag {
  width: 1.15rem;
  height: .78rem;
  border-radius: .12rem;
  display: inline-block;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,.28);
}
.flag-br {
  background:
    linear-gradient(135deg, transparent 36%, #ffd400 37% 63%, transparent 64%),
    linear-gradient(45deg, transparent 36%, #ffd400 37% 63%, transparent 64%),
    radial-gradient(circle at 50% 50%, #123a8c 0 20%, transparent 21%),
    #159447;
}
.flag-us {
  background:
    linear-gradient(to bottom, #b22234 0 14%, #fff 14% 28%, #b22234 28% 42%, #fff 42% 56%, #b22234 56% 70%, #fff 70% 84%, #b22234 84% 100%);
  position: relative;
}
.flag-us::before {
  content: "";
  display: block;
  width: 45%;
  height: 54%;
  background: #3c3b6e;
}
.flag-es {
  background: linear-gradient(to bottom, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75% 100%);
}
@media (max-width: 520px) {
  .lang-switcher { gap: .18rem; padding: .18rem; }
  .lang-btn { height: 1.75rem; padding: 0 .35rem; font-size: .62rem; }
  .mini-flag { width: 1rem; height: .68rem; }
}


/* Bandeiras de idioma - somente ícones */
.lang-switcher { gap: .45rem; padding: .25rem .35rem; }
.lang-btn { width: 2.55rem; height: 2rem; padding: 0; justify-content: center; }
.lang-btn span { display: none !important; }
.flag-svg { width: 1.65rem; height: 1.15rem; display: block; border-radius: .12rem; box-shadow: 0 0 0 1px rgba(255,255,255,.35); overflow: hidden; }
.lang-btn:hover .flag-svg, .lang-btn.active .flag-svg { box-shadow: 0 0 0 2px #C6F232, 0 0 14px rgba(198,242,50,.45); }
@media (max-width: 520px) { .lang-btn { width: 2.2rem; height: 1.8rem; } .flag-svg { width: 1.45rem; height: 1rem; } }

/* Ajuste pedido: bandeiras um pouco mais para a direita e clique fácil */
.lang-switcher {
  margin-left: 1.35rem !important;
  position: relative;
  z-index: 80;
}
.lang-btn {
  pointer-events: auto;
  user-select: none;
}


/* Bandeiras do lado esquerdo da logo */
.lang-switcher {
  margin-left: 0 !important;
  margin-right: .35rem !important;
}
@media (max-width: 520px) {
  .lang-switcher { margin-right: .15rem !important; }
}

/* Ajuste de espaçamento do topo */
#nav .lang-switcher {
  margin-right: 1.15rem !important;
}
#nav a {
  white-space: nowrap;
}
@media (min-width: 1024px) {
  #nav .lang-switcher {
    margin-right: 1.35rem !important;
  }
}
