:root {
  --color-primary: #0D2A52;
  --color-secondary: #D4A017;
  --color-bg: #F9FAFB;
  --color-text: #111827;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.font-heading {
  font-family: 'Outfit', Arial, sans-serif;
}

/* Header sticky shadow */
#site-header {
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}
#site-header.is-scrolled {
  box-shadow: 0 2px 16px rgba(13, 42, 82, 0.12);
}

/* Pill buttons */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  padding: 0.9rem 1.9rem;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
  border: 1px solid transparent;
}
.btn-pill:active {
  transform: scale(0.97);
}
.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background-color: #143a6e;
}
.btn-gold {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  border-color: var(--color-secondary);
}
.btn-gold:hover {
  background-color: #c2930f;
}
.btn-outline {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

/* Section label (small uppercase accent) */
.section-label {
  font-family: 'Outfit', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-secondary);
}

/* Service / info cards */
.card {
  background-color: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 10px 30px rgba(13, 42, 82, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13, 42, 82, 0.14);
}

/* Trust chips */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #F0F0F0;
  color: var(--color-primary);
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Step circles (Como Funciona) */
.step-circle {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background-color: rgba(212, 160, 23, 0.12);
  border: 2px solid rgba(212, 160, 23, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

/* Image collage (Destaque section) */
.collage {
  position: relative;
}
.collage img.collage-back {
  border-radius: 1.25rem;
  width: 100%;
  height: auto;
}
.collage img.collage-front {
  position: absolute;
  bottom: -8%;
  right: -12%;
  width: 55%;
  border-radius: 1rem;
  border: 6px solid #F9FAFB;
  box-shadow: 0 12px 30px rgba(13, 42, 82, 0.2);
}

/* Full-width banner overlay */
.banner-overlay {
  position: relative;
}
.banner-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,42,82,0.75), rgba(13,42,82,0.55));
}
.banner-overlay > .banner-content {
  position: relative;
  z-index: 1;
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 50;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  animation: whatsapp-pulse 2.5s infinite;
}
.whatsapp-float:hover {
  background-color: #1ebe5b;
}
@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55), 0 8px 24px rgba(0,0,0,0.25); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 8px 24px rgba(0,0,0,0.25); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 24px rgba(0,0,0,0.25); }
}

/* Mobile nav panel */
[x-cloak] { display: none !important; }

/* Nav link active state (scrollspy) */
.nav-link {
  position: relative;
}
.nav-link.is-active {
  color: var(--color-secondary) !important;
}

/* Star rating */
.stars {
  color: var(--color-secondary);
  letter-spacing: 2px;
}
