:root {
  --green:       #3a6b44;
  --green-dark:  #2a4f33;
  --green-light: #4e8a5a;
  --cream:       #f5efe6;
  --parchment:   #e8dcc8;
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --text-dark:   #1a1a1a;
  --text-mid:    #4a4a4a;
  --white:       #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ─── TOP HEADER BAR ──────────────────────────────────────── */
.top-header {
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  border-bottom: 2px solid rgba(201,168,76,0.35);
}

.top-header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-header-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
  /* invert white logo on dark bg — logo is already white on black, so filter to show on green */
  filter: brightness(0) invert(1);
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 120px;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  border-bottom: 1px solid rgba(232,201,122,0.18);
  box-shadow: 0 4px 24px rgba(0,0,0,0.16);
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.35s ease, border-color 0.4s ease;
}

.navbar.scrolled {
  height: 96px;
  background: rgba(34, 64, 42, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(232,201,122,0.32);
  box-shadow: 0 6px 28px rgba(0,0,0,0.26);
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
  transition: transform 0.3s ease;
}

.nav-logo:hover { transform: translateY(-1px); }

.nav-logo-img {
  display: block;
  height: 120px;
  width: auto;
  padding: 4px 14px;
  transition: height 0.35s ease;
}

.navbar.scrolled .nav-logo-img { height: 96px; }

.nav-logo-text { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1rem; font-weight: 700; }
.nav-logo-text span { color: var(--gold-light); }


.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 10px 18px;
  border-radius: 999px;
  position: relative;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 18px; right: 18px;
  height: 1.5px;
  background: var(--gold-light);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 600;
  border-radius: 999px;
  padding: 11px 26px;
  letter-spacing: 0.08em;
  margin-left: 10px;
  box-shadow: 0 4px 14px rgba(201,168,76,0.35);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  color: var(--green-dark);
  box-shadow: 0 8px 20px rgba(201,168,76,0.45);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  transition: background 0.25s ease;
}

.hamburger:hover { background: rgba(255,255,255,0.08); }

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.32s cubic-bezier(0.65,0,0.35,1), opacity 0.25s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE NAV ─────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background:
    radial-gradient(circle at 85% 12%, rgba(232,201,122,0.10), transparent 45%),
    linear-gradient(165deg, var(--green-dark) 0%, #1d3624 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77,0,0.175,1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  font-family: 'DM Sans', sans-serif;
  font-size: 19px;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  position: relative;
  transition: color 0.25s ease;
}

.mobile-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%; right: 50%;
  height: 1px;
  background: var(--gold-light);
  transition: left 0.3s ease, right 0.3s ease;
}

.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu a:hover::after { left: 10%; right: 10%; }

.mobile-menu a.mobile-cta {
  margin-top: 12px;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--gold);
  padding: 14px 34px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.mobile-menu a.mobile-cta::after { display: none; }
.mobile-menu a.mobile-cta:hover { background: var(--gold-light); color: var(--green-dark); }

.mobile-menu-divider {
  width: 48px;
  height: 1px;
  background: rgba(232,201,122,0.3);
  margin: 4px 0;
}

/* ─── HERO / SECTION 1 ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Parchment map texture background */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 60% 50%, rgba(201,168,76,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(58,107,68,0.18) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='600' height='600' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E"),
    linear-gradient(135deg, #e8dcc8 0%, #f0e8d5 40%, #ddd0b8 100%);
  background-size: cover, cover, 300px 300px, cover;
}

/* Decorative grid lines */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(139,110,70,0.07) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(139,110,70,0.07) 60px);
}

/* Compass rose decoration */
.hero-bg::after {
  content: '';
  position: absolute;
  right: 6%;
  bottom: 8%;
  width: 220px;
  height: 220px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='96' fill='none' stroke='%23a07840' stroke-width='0.8' opacity='0.3'/%3E%3Ccircle cx='100' cy='100' r='70' fill='none' stroke='%23a07840' stroke-width='0.5' opacity='0.2'/%3E%3Ccircle cx='100' cy='100' r='44' fill='none' stroke='%23a07840' stroke-width='0.5' opacity='0.2'/%3E%3Cpolygon points='100,4 106,94 100,100 94,94' fill='%23c9a84c' opacity='0.5'/%3E%3Cpolygon points='100,196 106,106 100,100 94,106' fill='%23a07840' opacity='0.4'/%3E%3Cpolygon points='4,100 94,94 100,100 94,106' fill='%23a07840' opacity='0.4'/%3E%3Cpolygon points='196,100 106,94 100,100 106,106' fill='%23c9a84c' opacity='0.5'/%3E%3Ccircle cx='100' cy='100' r='8' fill='%23c9a84c' opacity='0.4'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0.45;
}

/* Green left panel */
.hero-panel {
  position: absolute;
  top: 8%;
  left: 5%;
  width: 52%;
  max-width: 580px;
  bottom: 8%;
  background: var(--green);
  border-radius: 20px;
  z-index: 1;
  overflow: hidden;
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(78,138,90,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(42,79,51,0.6) 0%, transparent 50%);
}

/* Subtle cross-hatch texture on green panel */
.hero-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(255,255,255,0.025) 19px),
    repeating-linear-gradient(-45deg, transparent, transparent 18px, rgba(255,255,255,0.025) 19px);
  border-radius: 20px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 5% 80px 9%;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s forwards;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 3.8vw, 54px);
  color: var(--cream);
  line-height: 1.12;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 0.7s 0.5s forwards;
}

.hero-title-main {
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 900;
  font-size: clamp(48px, 6vw, 84px);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  opacity: 0;
  animation: fadeUp 0.7s 0.65s forwards;
}

/* Removed "Europeia" subtitle — kept for optional use */
.hero-title-sub {
  display: none;
}

.hero-divider {
  width: 3px;
  height: 0;
  background: var(--gold);
  margin-bottom: 0;
  opacity: 0;
  animation: growLine 0.6s 0.9s forwards;
  align-self: flex-start;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 400;
  color: rgba(245,239,230,0.85);
  line-height: 1.6;
  margin-top: 20px;
  max-width: 380px;
  opacity: 0;
  animation: fadeUp 0.7s 1.05s forwards;
}

.hero-flags {
  display: flex;
  gap: 10px;
  margin-top: 36px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 1.2s forwards;
}

.flag-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.04em;
  transition: background 0.2s, border-color 0.2s;
  cursor: default;
}

.flag-chip:hover {
  background: rgba(201,168,76,0.18);
  border-color: rgba(201,168,76,0.4);
  color: var(--gold-light);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 44px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 1.35s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--green-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 4px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
}

.btn-secondary {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, gap 0.2s;
}

.btn-secondary:hover { color: var(--gold-light); gap: 12px; }

/* Document stack: certidão + árvore genealógica + passaporte, preenchendo o vazio central em telas grandes */
.hero-doc-stack {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(300px, 34vw, 480px);
  height: clamp(360px, 40vw, 500px);
  z-index: 2;
}

.doc-card {
  position: absolute;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.24));
  opacity: 0;
}

.doc-cert {
  top: 12%;
  left: 0;
  width: 60%;
  z-index: 1;
  animation: docInCert 0.8s 1s forwards;
}

.doc-tree {
  bottom: 6%;
  right: 0;
  width: 54%;
  z-index: 2;
  animation: docInTree 0.8s 1.2s forwards;
}

.doc-passport {
  top: 30%;
  left: 26%;
  width: 44%;
  z-index: 3;
  animation: docInPassport 0.8s 1.4s forwards, passportFloatLoop 6s 2.6s ease-in-out infinite;
}

/* Telas grandes (laptop 1440px+ / desktop wide): pilha maior, mais compacta e centralizada */
@media (min-width: 1440px) {
  .hero-doc-stack {
    right: 7%;
    width: clamp(600px, 50vw, 900px);
    height: clamp(600px, 50vw, 900px);
  }

  .doc-cert { left: 8%; width: 58%; }
  .doc-tree { right: 6%; width: 52%; }
}

/* Passport — more generic color using CSS variables */
.passport-cover {
  fill: var(--green-dark);
}
.passport-spine {
  fill: #1e3825;
}
.passport-accent {
  fill: var(--gold-light);
}

/* Logo at bottom of panel */
.hero-logo-block {
  position: absolute;
  bottom: 40px;
  left: 9%;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.7s 1.5s forwards;
}

.hero-logo-block .logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
}

.hero-logo-block .logo-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 2px;
}

/* Arch decoration above logo */
.hero-arch {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.hero-arch span {
  display: block;
  width: 20px;
  height: 10px;
  border: 1.5px solid rgba(201,168,76,0.6);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
}

/* ─── STATS BAR ─────────────────────────────────────────── */
.stats-bar {
  position: relative;
  z-index: 3;
  background: var(--green-dark);
  padding: 28px 8%;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  border-right: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--green-dark);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 64px 8% 32px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
}

footer::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.footer-brand .brand-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-brand p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
}

.footer-brand .footer-flags {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  font-size: 18px;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: block;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.04em;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.32);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--gold-light); }

/* Gold accent line at very bottom */
.footer-gold-line {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold-light) 60%, transparent 100%);
  margin-top: 28px;
  opacity: 0.5;
}

/* ─── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes growLine {
  from { height: 0; opacity: 0; }
  to   { height: 52px; opacity: 1; }
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(-44%) rotate(4deg); }
  to   { opacity: 1; transform: translateY(-50%) rotate(4deg); }
}

/* Entrada dos cards da pilha de documentos */
@keyframes docInCert {
  from { opacity: 0; transform: translateY(24px) rotate(-11deg); }
  to   { opacity: 1; transform: translateY(0) rotate(-11deg); }
}

@keyframes docInTree {
  from { opacity: 0; transform: translateY(24px) rotate(8deg); }
  to   { opacity: 1; transform: translateY(0) rotate(8deg); }
}

@keyframes docInPassport {
  from { opacity: 0; transform: translateY(24px) rotate(3deg); }
  to   { opacity: 1; transform: translateY(0) rotate(3deg); }
}

/* Flutuação sutil do passaporte no topo da pilha */
@keyframes passportFloatLoop {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50%       { transform: translateY(-8px) rotate(3deg); }
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .top-header { padding: 14px 24px; }
  .top-header-logo img { height: 52px; }

  .navbar { padding: 0 20px; height: 76px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-logo-img { height: 74px; padding: 3px 8px; }
  .navbar.scrolled .nav-logo-img { height: 74px; }

  .hero-panel { width: 88%; left: 6%; right: 6%; top: 12%; bottom: auto; padding-bottom: 0; min-height: 72vh; }
  .hero-doc-stack { display: none; }
  .hero-content { padding: 56px 36px 36px; }
  .hero-logo-block { left: 36px; bottom: 28px; }

  .stats-bar { gap: 0; }
  .stat-item { padding: 16px 24px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title-main { font-size: 46px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
}



/* ─── sessao serviços ──────────────────────────────────────────── */

/* ─── SERVICES SECTION ─────────────────────────────────── */

.services-section {
  padding: 110px 8%;
  background:
    linear-gradient(
      180deg,
      var(--cream) 0%,
      #efe4d2 100%
    );
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;

  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 59px,
      rgba(139,110,70,0.04) 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      rgba(139,110,70,0.04) 60px
    );

  pointer-events: none;
}

.services-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 2;
}

.services-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.services-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 22px;
  line-height: 1.05;
}

.services-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1.6;
  color: var(--text-mid);
}

.services-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.service-card {
  background: rgba(58,107,68,0.96);

  border-radius: 18px;
  padding: 34px 28px;

  min-height: 260px;

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.12);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;

  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top right,
      rgba(201,168,76,0.16),
      transparent 40%
    );

  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);

  border-color: rgba(201,168,76,0.35);

  box-shadow:
    0 18px 45px rgba(0,0,0,0.18);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: rgba(255,255,255,0.08);

  font-size: 28px;

  margin-bottom: 26px;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--white);

  margin-bottom: 18px;
  line-height: 1.2;
}

.service-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.8;

  color: rgba(255,255,255,0.72);
}

/* RESPONSIVO */

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {

  .services-section {
    padding: 90px 24px;
  }

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

  .services-title {
    font-size: 42px;
  }

  .services-subtitle {
    font-size: 18px;
  }

}


/* ─── TEAM SECTION ───────────────────────────────────── */


.team-section {
  padding: 120px 8%;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: '';
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at top right,
      rgba(201,168,76,0.12),
      transparent 35%);

  pointer-events: none;
}

.team-container {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 70px;
  align-items: center;

  max-width: 1300px;
  margin: 0 auto;
}

.team-image {
  position: relative;
}

.team-image img {
  width: 100%;
  border-radius: 18px;

  object-fit: cover;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.35);

  border: 1px solid rgba(255,255,255,0.08);
}

.team-content {
  color: white;
}

.team-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
}

/* ═══════════════════════════════════════════════════════════
   CITIZENSHIPS SECTION (index.html)
   ═══════════════════════════════════════════════════════════ */

.citizenships-section {
  padding: 110px 8%;
  background: linear-gradient(180deg, var(--cream) 0%, #efe4d2 100%);
  position: relative;
  overflow: hidden;
}

.citizenships-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,   transparent, transparent 59px, rgba(139,110,70,0.04) 60px),
    repeating-linear-gradient(90deg,  transparent, transparent 59px, rgba(139,110,70,0.04) 60px);
  pointer-events: none;
}

.citizenships-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 2;
}

.citizenships-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.citizenships-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 22px;
  line-height: 1.05;
}

.citizenships-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1.6;
  color: var(--text-mid);
}

/* ── Citizenship cards grid ── */
.citizenships-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 72px;
  grid-auto-rows: 380px;
}
.citizenship-card {
  backdrop-filter: blur(10px);
}

.citizenship-card {
  display: flex;
  flex-direction: column;
  background: rgba(42, 79, 51, 0.97);
  border-radius: 20px;
  padding: 36px 28px 28px;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 10px 32px rgba(0,0,0,0.14);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.citizenship-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(201,168,76,0.18), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.citizenship-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.20);
  background: rgba(46, 86, 57, 0.98);
}

.citizenship-card:hover::before { opacity: 1; }

.cc-flag {
  font-size: 44px;
  line-height: 1;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.cc-body {
  flex: 1;
}

.cc-country {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 6px;
}

.cc-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 1;
}

.cc-tags {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 24px;
}

.cc-tags li {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cc-arrow {
  font-size: 18px;
  color: var(--gold);
  transition: transform 0.25s ease;
  align-self: flex-end;
  margin-top: auto;
  opacity: 0.7;
}

.citizenship-card:hover .cc-arrow {
  transform: translateX(5px);
  opacity: 1;
}

/* ── Photo background cards ──
   Enquanto a imagem não carrega (data-bg ainda presente), mostra um verde sólido
   como placeholder. Assim que o card entra na viewport, o JS troca --cc-bg e
   adiciona .cc-bg-loaded, que então exibe a foto real. */
.cc-photo-card {
  background: var(--green-dark) !important;
  padding: 0 !important;
  min-height: 380px;
  border: none !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.28) !important;
  transition: opacity 0.5s ease;
}

.cc-photo-card.cc-bg-loaded {
  background: var(--cc-bg) center/cover no-repeat !important;
}

.cc-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 30, 15, 0.92) 0%,
    rgba(10, 30, 15, 0.55) 50%,
    rgba(10, 30, 15, 0.25) 100%
  );
  border-radius: 20px;
  transition: background 0.4s ease;
}

.cc-photo-card:hover .cc-photo-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 30, 15, 0.97) 0%,
    rgba(10, 30, 15, 0.7) 55%,
    rgba(10, 30, 15, 0.38) 100%
  );
}

.cc-photo-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 28px 28px;
  justify-content: flex-end;
}

.cc-photo-card .cc-flag {
  font-size: 38px;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.cc-photo-card .cc-country {
  font-size: 28px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.cc-photo-card .cc-tagline {
  font-size: 16px;
  font-weight: 600;
  color: #f3dca0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  margin-bottom: 14px;
  opacity: 1;
}

.cc-photo-card .cc-tags {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.cc-photo-card:hover .cc-tags {
  opacity: 1;
  transform: translateY(0);
}

.cc-photo-card .cc-arrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 8px 16px;
  border-radius: 100px;
  align-self: flex-start;
  margin-top: 4px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.cc-photo-card:hover .cc-arrow {
  background: rgba(201,168,76,0.35);
  border-color: rgba(201,168,76,0.7);
  transform: translateX(4px) !important;
}

/* ── Support services strip ── */
.support-services {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(139,110,70,0.18);
  padding-top: 52px;
}

.support-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 28px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.support-item {
  background: rgba(58,107,68,0.18);
  border: 1px solid rgba(58,107,68,0.25);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  color: var(--text-mid);
  letter-spacing: 0.03em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, border-color 0.2s;
}

.support-item:hover {
  background: rgba(58,107,68,0.28);
  border-color: rgba(58,107,68,0.45);
}

.support-item span { font-size: 22px; }

/* Responsive citizenships */
@media (max-width: 1200px) {
  .citizenships-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 680px) {
  .citizenships-section { padding: 80px 24px; }
  .citizenships-grid { grid-template-columns: 1fr; gap: 16px; }
  .citizenship-card { flex-direction: row; align-items: flex-start; gap: 20px; padding: 24px 20px; }
  .cc-flag { font-size: 36px; margin-bottom: 0; margin-top: 4px; }
  .cc-arrow { display: none; }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .citizenships-title { font-size: 38px; }
  .citizenships-subtitle { font-size: 18px; }
}


/* ═══════════════════════════════════════════════════════════
   CITIZENSHIP PAGE TEMPLATE
   ═══════════════════════════════════════════════════════════ */

/* Hero */
.cp-hero {
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 0 8% 72px;
}

.cp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 20%, rgba(201,168,76,0.13) 0%, transparent 60%),
    linear-gradient(160deg, var(--green-dark) 0%, #1a3020 100%);
}

.cp-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,  transparent, transparent 59px, rgba(255,255,255,0.03) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,0.03) 60px);
}

.cp-hero-flag-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cp-hero-flag-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.60) 50%,
    rgba(0,0,0,0.50) 100%
  );
}

.cp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.cp-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 36px;
  transition: color 0.2s;
}
.cp-back:hover { color: var(--gold-light); }

.cp-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cp-eyebrow .cp-flag { font-size: 28px; }

.cp-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.cp-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 1.8vw, 22px);
  color: rgba(245,239,230,0.78);
  line-height: 1.6;
  max-width: 580px;
}

.cp-hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cp-hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}

.cp-hero-stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* Intro block */
.cp-intro {
  padding: 90px 8%;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cp-intro-lead {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.4vw, 32px);
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.45;
  margin-bottom: 28px;
}

.cp-intro-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.8;
  color: var(--text-mid);
}

.cp-intro-body p + p { margin-top: 16px; }

.cp-intro-right {}

.cp-elegibility-box {
  background: var(--green);
  border-radius: 16px;
  padding: 36px 32px;
  color: white;
}

.cp-elegibility-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.cp-elegibility-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cp-elegibility-list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: rgba(255,255,255,0.82);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.cp-elegibility-list li::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 9px;
}

/* Steps / Process */
.cp-process {
  padding: 90px 8%;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.cp-process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom left, rgba(201,168,76,0.08), transparent 50%);
  pointer-events: none;
}

.cp-section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* On dark backgrounds, override eyebrow to gold-light */
.cp-process .cp-section-eyebrow,
.cp-processing .cp-section-eyebrow,
.cp-visas .cp-section-eyebrow {
  color: var(--gold-light);
}

.cp-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.1;
  margin-bottom: 52px;
}

/* On dark backgrounds, override title to white */
.cp-process .cp-section-title,
.cp-processing .cp-section-title,
.cp-visas .cp-section-title {
  color: var(--white);
}

/* On dark backgrounds, override subtitle to cream */
.cp-process .cp-section-subtitle,
.cp-processing .cp-section-subtitle,
.cp-visas .cp-section-subtitle {
  color: rgba(245,239,230,0.72);
}

.cp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.cp-step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 30px 24px;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}

.cp-step:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.25);
}

.cp-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(201,168,76,0.18);
  line-height: 1;
  margin-bottom: 12px;
}

.cp-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.cp-step-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

/* Documents section */
.cp-documents {
  padding: 90px 8%;
  background: var(--parchment);
}

.cp-docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.cp-doc-item {
  background: rgba(58,107,68,0.08);
  border: 1px solid rgba(58,107,68,0.18);
  border-radius: 12px;
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: var(--text-dark);
  line-height: 1.5;
  transition: border-color 0.2s, background 0.2s;
}

.cp-doc-item:hover {
  border-color: rgba(58,107,68,0.35);
  background: rgba(58,107,68,0.12);
}

.cp-doc-item .cp-doc-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* CTA */
.cp-cta {
  padding: 90px 8%;
  background: var(--green);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.12), transparent 65%);
  pointer-events: none;
}

.cp-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cp-cta-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.cp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--green-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 42px;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

.cp-cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.45);
}

/* Responsive template page */
@media (max-width: 960px) {
  .cp-intro { grid-template-columns: 1fr; gap: 40px; }
  .cp-steps { grid-template-columns: repeat(2, 1fr); }
  .cp-docs-grid { grid-template-columns: repeat(2, 1fr); }
  .cp-hero-stats { gap: 28px; flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .cp-hero { padding: 0 6% 52px; min-height: 50vh; }
  .cp-steps { grid-template-columns: 1fr; }
  .cp-docs-grid { grid-template-columns: 1fr; }
  .cp-intro, .cp-process, .cp-documents, .cp-cta { padding: 60px 6%; }
}


/* ═══════════════════════════════════════════════════════════
   PARCEIRO (faixa discreta, uma linha só)
   ═══════════════════════════════════════════════════════════ */

.partner-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 20px 8%;
  background: var(--parchment);
}

.partner-strip-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  opacity: 0.75;
}

.partner-logo-sm {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.partner-logo-sm span {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-light);
}

.partner-logo-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-strip-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14.5px;
  color: var(--green-dark);
}

@media (max-width: 560px) {
  .partner-strip { padding: 16px 6%; gap: 8px; }
  .partner-strip-label { font-size: 10.5px; }
  .partner-strip-name { font-size: 13px; }
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON (só ícone, sem animação)
   ═══════════════════════════════════════════════════════════ */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 2px 8px rgba(0,0,0,0.15);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(37,211,102,0.55), 0 3px 10px rgba(0,0,0,0.16);
}

.wa-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-icon svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.wa-label {
  display: none;
}

@media (max-width: 560px) {
  .whatsapp-float { bottom: 20px; right: 27px; width: 60px; height: 60px; }
  .wa-icon { width: 52px; height: 52px; }
  .wa-icon svg { width: 26px; height: 26px; }

  .instagram-float { bottom: 84px; right: 20px; width: 52px; height: 52px; }
  .ig-icon { width: 52px; height: 52px; }
  .ig-icon svg { width: 26px; height: 26px; }
}

/* ═══════════════════════════════════════════════════════════
   INSTAGRAM FLOATING BUTTON (só ícone, sem animação, empilhado por cima)
   ═══════════════════════════════════════════════════════════ */

.instagram-float {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(45deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(238,42,123,0.45), 0 2px 8px rgba(0,0,0,0.15);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.instagram-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(238,42,123,0.5), 0 3px 10px rgba(0,0,0,0.16);
}

.ig-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-icon svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.ig-label {
  display: none;
}

/* ── Team section (complete) ── */
.team-section {
  padding: 120px 8%;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(201,168,76,0.12), transparent 35%);
  pointer-events: none;
}

.team-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.team-image { position: relative; }

.team-image::before {
  content: '';
  position: absolute;
  inset: -10px -10px 10px 10px;
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 22px;
  pointer-events: none;
}

.team-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.38);
  border: 1px solid rgba(255,255,255,0.07);
  display: block;
}

.team-content { color: #fff; }

.team-content::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 110px;
  color: rgba(201,168,76,0.10);
  line-height: 0.8;
  display: block;
  margin-bottom: -18px;
}

.team-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
}

.team-description {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.75;
  color: rgba(245,239,230,0.78);
  margin-bottom: 16px;
}

.team-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 36px;
}

.team-list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 12px;
}

.team-list li::before {
  content: '✔';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 13px;
  line-height: 1;
  color: var(--gold);
  flex-shrink: 0;
}

.team-btn {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--green-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 4px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.25);
}

.team-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.38);
}

@media (max-width: 1080px) {
  .team-container { grid-template-columns: 320px 1fr; gap: 48px; }
}

@media (max-width: 760px) {
  .team-section { padding: 80px 6%; }
  .team-container { grid-template-columns: 1fr; max-width: 480px; }
  .team-image { max-width: 340px; margin: 0 auto; width: 100%; }
  .team-name { font-size: 34px; }
  .team-description { font-size: 17px; }
}

@media (max-width: 480px) {
  .team-section { padding: 60px 5%; }
  .team-image { max-width: 100%; }
  .team-btn { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════
   MODALIDADES — seção de tipos de reconhecimento
   ═══════════════════════════════════════════════════════════ */

.cp-modalities {
  padding: 100px 8%;
  background: var(--cream);
  text-align: center;
}

.cp-section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  color: var(--text-mid);
  max-width: 620px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.cp-modalities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Last row: 2 cards centered when 5 items in 3-col grid */
.cp-modalities-grid .cp-modality-card:nth-child(4) {
  grid-column: 1 / 2;
}
.cp-modalities-grid .cp-modality-card:nth-child(5) {
  grid-column: 2 / 3;
}

.cp-modality-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: left;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.cp-modality-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.35s ease;
  border-radius: 0 0 3px 3px;
}

.cp-modality-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(42,79,51,0.1);
  border-color: rgba(201,168,76,0.45);
}

.cp-modality-card:hover::before { height: 100%; }

.cp-modality-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.cp-modality-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.cp-modality-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-mid);
}


/* ═══════════════════════════════════════════════════════════
   FORMAS DE PROCESSAMENTO
   ═══════════════════════════════════════════════════════════ */

.cp-processing {
  padding: 100px 8%;
  background: var(--green-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cp-processing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201,168,76,0.08), transparent 60%);
  pointer-events: none;
}

.cp-processing-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 56px auto 0;
}

.cp-processing-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  text-align: left;
  position: relative;
  z-index: 2;
}

.cp-processing-item:last-child { border-bottom: none; }

.cp-processing-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  min-width: 56px;
  flex-shrink: 0;
  transition: color 0.25s;
}

.cp-processing-item:hover .cp-processing-num {
  color: var(--gold);
}

.cp-processing-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.cp-processing-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(245,239,230,0.72);
}


/* ═══════════════════════════════════════════════════════════
   VANTAGENS
   ═══════════════════════════════════════════════════════════ */

.cp-benefits {
  padding: 100px 8%;
  background: var(--parchment);
  text-align: center;
}

.cp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 56px auto 0;
}

.cp-benefit-item {
  background: var(--white);
  border-radius: 14px;
  padding: 36px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  border: 1px solid rgba(201,168,76,0.15);
  transition: transform 0.22s, box-shadow 0.22s;
}

.cp-benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(42,79,51,0.1);
}

.cp-benefit-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cp-benefit-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-dark);
}


/* ═══════════════════════════════════════════════════════════
   VISTOS
   ═══════════════════════════════════════════════════════════ */

.cp-visas {
  padding: 100px 8%;
  background: var(--green);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cp-visas::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(78,138,90,0.4), transparent 55%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(42,79,51,0.5), transparent 50%);
  pointer-events: none;
}

.cp-visas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 56px auto 0;
  position: relative;
  z-index: 2;
}

.cp-visa-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
  backdrop-filter: blur(4px);
}

.cp-visa-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-4px);
}

.cp-visa-emoji {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.cp-visa-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.cp-visa-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(245,239,230,0.75);
}


/* ═══════════════════════════════════════════════════════════
   SERVIÇOS / ASSESSORIA COMPLETA
   ═══════════════════════════════════════════════════════════ */

.cp-services {
  padding: 10px 8% 100px 8%;
  background: var(--cream);
  text-align: center;
}

.cp-section-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 680px;
  margin: 0 auto 56px;
}

.cp-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.cp-service-item {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 10px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
  text-align: left;
  transition: border-color 0.22s, box-shadow 0.22s;
}

.cp-service-item:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(201,168,76,0.12);
}

.cp-service-check {
  color: var(--green);
  font-size: 16px;
  flex-shrink: 0;
  font-weight: 700;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVO — novas seções
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .cp-modalities-grid { grid-template-columns: repeat(2, 1fr); }
  .cp-modalities-grid .cp-modality-card:nth-child(4),
  .cp-modalities-grid .cp-modality-card:nth-child(5) { grid-column: auto; }
  .cp-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .cp-visas-grid { grid-template-columns: repeat(2, 1fr); }
  .cp-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .cp-modalities { padding: 64px 6%; }
  .cp-modalities-grid { grid-template-columns: 1fr; }
  .cp-modality-card { padding: 28px 22px; }

  .cp-processing { padding: 64px 6%; }
  .cp-processing-item { gap: 20px; flex-direction: row; }
  .cp-processing-num { font-size: 36px; min-width: 44px; }

  .cp-benefits { padding: 64px 6%; }
  .cp-benefits-grid { grid-template-columns: 1fr; }
  .cp-benefit-item { padding: 26px 22px; }

  .cp-visas { padding: 64px 6%; }
  .cp-visas-grid { grid-template-columns: 1fr; }

  .cp-services { padding: 64px 6%; }
  .cp-services-grid { grid-template-columns: 1fr; }

  .cp-section-subtitle { font-size: 17px; }
  .cp-section-body { font-size: 17px; }
}


/* ── Grade de 4 colunas para modalidades (portuguesa) ── */
.cp-modalities-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.cp-modalities-grid--4 .cp-modality-card:nth-child(4),
.cp-modalities-grid--4 .cp-modality-card:nth-child(5) {
  grid-column: auto;
}

@media (max-width: 1024px) {
  .cp-modalities-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .cp-modalities-grid--4 { grid-template-columns: 1fr; }
}

/* ═══ NAVBAR DROPDOWN ═══════════════════════════════════════ */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-chevron {
  font-size: 10px;
  transition: transform 0.25s ease;
  display: inline-block;
  margin-left: 2px;
}

.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-dark);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  padding: 16px;
  min-width: 480px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  transform: translateX(-50%) translateY(-6px);
  z-index: 2000;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--green-dark);
  border-left: 1px solid rgba(201,168,76,0.25);
  border-top: 1px solid rgba(201,168,76,0.25);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(245,239,230,0.82);
  letter-spacing: 0.04em;
  transition: background 0.18s, color 0.18s;
}

.nav-dropdown-item:hover {
  background: rgba(201,168,76,0.12);
  color: var(--gold-light);
}

.nav-dropdown-item::after { display: none; }

/* ═══ SEÇÃO VISTOS ═══════════════════════════════════════════ */
.vistos-section {
  background: var(--cream);
  padding: 96px 8%;
  position: relative;
}

.vistos-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(201,168,76,0.07), transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(58,107,68,0.06), transparent 50%);
  pointer-events: none;
}

.vistos-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}


.vistos-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.vistos-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 18px;
  line-height: 1.15;
}

.vistos-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.vistos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.visto-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 14px;
  padding: 28px 22px 24px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.visto-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.visto-card:hover {
  border-color: rgba(201,168,76,0.45);
  box-shadow: 0 8px 32px rgba(42,79,51,0.12);
  transform: translateY(-4px);
}

.visto-card:hover::before {
  transform: scaleX(1);
}

.visto-flag-wrap {
  width: 56px;
  height: 29px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.14);
  flex-shrink: 0;
}

.visto-flag-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visto-country {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.01em;
}

.visto-types {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.visto-types span {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-mid);
  background: rgba(58,107,68,0.07);
  border: 1px solid rgba(58,107,68,0.12);
  border-radius: 100px;
  padding: 3px 10px;
}

.visto-arrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--green);
  margin-top: auto;
  transition: color 0.2s, letter-spacing 0.2s;
}

.visto-card:hover .visto-arrow {
  color: var(--gold);
  letter-spacing: 0.1em;
}

.vistos-cta-wrap {
  text-align: center;
  margin-top: 52px;
  position: relative;
  z-index: 1;
}

.vistos-cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--green);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid rgba(201,168,76,0.3);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(42,79,51,0.2);
}

.vistos-cta-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(42,79,51,0.28);
}

@media (max-width: 1024px) {
  .vistos-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-dropdown-menu { min-width: 360px; }
  .nav-dropdown-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .vistos-section { padding: 64px 6%; }
  .vistos-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .visto-card { padding: 22px 16px 18px; }
  .nav-dropdown-menu { display: none; }
}

/* ═══ SEÇÃO MAPA / LOCALIZAÇÃO ═══════════════════════════════ */
.map-section {
  background: var(--cream);
  padding: 10px 48px 96px 48px;
}

.map-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.map-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.map-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.map-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.map-wrapper {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(42,79,51,0.13);
  border: 1px solid rgba(201,168,76,0.2);
}

/* Info Card */
.map-info-card {
  background: var(--green-dark);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.map-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.map-info-icon {
  width: 38px;
  height: 38px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
}

.map-info-icon svg {
  width: 18px;
  height: 18px;
}

.map-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.map-info-text strong {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.map-info-text span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.map-cta-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--green-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.25s, transform 0.2s;
  text-align: center;
}

.map-cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* Map embed */
.map-embed {
  min-height: 480px;
  position: relative;
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
  filter: saturate(0.85) contrast(1.05);
}

/* Responsive */
@media (max-width: 900px) {
  .map-wrapper {
    grid-template-columns: 1fr;
  }

  .map-embed {
    min-height: 360px;
  }

  .map-embed iframe {
    min-height: 360px;
  }

  .map-section {
    padding: 64px 24px;
  }
}

/* ── Branch label (separa Brasília / Boston) ── */
.map-branch-label {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto 18px;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
}

.map-branch-flag {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.map-branch-flag img {
  display: block;
  vertical-align: middle;
}


/* ═══ SEÇÃO VISTOS ═══════════════════════════════════════════ */
.vistos-section {
  background: var(--cream);
  padding: 96px 8%;
  position: relative;
}

.vistos-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(201,168,76,0.07), transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(58,107,68,0.06), transparent 50%);
  pointer-events: none;
}

.vistos-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.vistos-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.vistos-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 18px;
  line-height: 1.15;
}

.vistos-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.vistos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.visto-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 14px;
  padding: 28px 22px 24px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.visto-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.visto-card:hover {
  border-color: rgba(201,168,76,0.45);
  box-shadow: 0 8px 32px rgba(42,79,51,0.12);
  transform: translateY(-4px);
}

.visto-card:hover::before {
  transform: scaleX(1);
}

.visto-flag-wrap {
  width: 56px;
  height: 29px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.14);
  flex-shrink: 0;
}

.visto-flag-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visto-country {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.01em;
}

.visto-types {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.visto-types span {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-mid);
  background: rgba(58,107,68,0.07);
  border: 1px solid rgba(58,107,68,0.12);
  border-radius: 100px;
  padding: 3px 10px;
}

.visto-arrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--green);
  margin-top: auto;
  transition: color 0.2s, letter-spacing 0.2s;
}

.visto-card:hover .visto-arrow {
  color: var(--gold);
  letter-spacing: 0.1em;
}

.vistos-cta-wrap {
  text-align: center;
  margin-top: 52px;
  position: relative;
  z-index: 1;
}

.vistos-cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--green);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid rgba(201,168,76,0.3);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(42,79,51,0.2);
}

.vistos-cta-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(42,79,51,0.28);
}

@media (max-width: 1024px) {
  .vistos-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-dropdown-menu { min-width: 360px; }
  .nav-dropdown-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .vistos-section { padding: 64px 6%; }
  .vistos-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .visto-card { padding: 22px 16px 18px; }
  .nav-dropdown-menu { display: none; }
}


/* ─── VISTOS REGION LABELS ─────────────────────────────────── */
.vistos-region-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 52px 0 28px;
}

.vistos-region-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
}

.vistos-region-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  padding: 4px 14px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  background: rgba(201,168,76,0.06);
}

/* ─── SCHENGEN NOTE ─────────────────────────────────────────── */
.vistos-schengen-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(58,107,68,0.06);
  border: 1px solid rgba(58,107,68,0.15);
  border-left: 3px solid var(--green);
  border-radius: 6px;
  padding: 14px 18px;
  margin-bottom: 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55;
}

.vistos-schengen-note svg {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 700px) {
  .vistos-region-label { margin: 36px 0 20px; }
  .vistos-schengen-note { font-size: 12px; }
}

/* ═══ CITIZENSHIP REGION DIVIDER ════════════════════════════ */
.citizenships-region-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 56px 0 40px;
  padding: 0 4px;
}

.cr-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.cr-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  padding: 6px 18px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 40px;
  background: rgba(201, 168, 76, 0.06);
}

/* ═══ NATURALIZAÇÃO CARD ════════════════════════════════════ */
.naturalizacao-wrapper {
  max-width: 860px;
  margin: 0 auto;
}

.nat-brasileira-card {
  width: 100%;
  max-width: 860px;
  height: 380px;
  min-height: 380px;
  aspect-ratio: unset;
}

.naturalizacao-card {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  background: linear-gradient(135deg, #1a2e1f 0%, #243629 60%, #1e2e22 100%);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 14px;
  padding: 36px 40px;
  text-decoration: none;
  color: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  position: relative;
  overflow: hidden;
}

.naturalizacao-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1544785349-c4a5301826fd?w=1200&q=60') center/cover no-repeat;
  opacity: 0.07;
  z-index: 0;
}

.naturalizacao-card > * { position: relative; z-index: 1; }

.naturalizacao-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
  border-color: rgba(201, 168, 76, 0.55);
}

.nat-flag-col {
  flex-shrink: 0;
  padding-top: 4px;
}

.nat-flag-col img {
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nat-content {
  flex: 1;
}

.nat-badge {
  position: relative;
  z-index: 2;
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 20px;
  padding: 5px 14px;
  align-self: flex-start;
  margin-bottom: 14px;
  text-shadow: none;
}

.nat-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.nat-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 580px;
}

.nat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-bottom: 20px;
}

.nat-tags li {
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.80);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 5px 12px;
}

.nat-arrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  transition: letter-spacing 0.2s ease;
}

.naturalizacao-card:hover .nat-arrow {
  letter-spacing: 0.08em;
}

@media (max-width: 640px) {
  .naturalizacao-card {
    flex-direction: column;
    gap: 20px;
    padding: 28px 24px;
  }

  .nat-title { font-size: 22px; }

  .citizenships-region-divider { margin: 40px 0 28px; }
}


/* ═══════════════════════════════════════════════════════════
   DEPOIMENTOS / AVALIAÇÕES DE CLIENTES
   ═══════════════════════════════════════════════════════════ */

.testimonials-section {
  padding: 110px 8%;
  background: linear-gradient(180deg, #efe4d2 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,   transparent, transparent 59px, rgba(139,110,70,0.04) 60px),
    repeating-linear-gradient(90deg,  transparent, transparent 59px, rgba(139,110,70,0.04) 60px);
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 2;
}

.testimonials-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.testimonials-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 20px;
  line-height: 1.08;
}

.testimonials-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  line-height: 1.6;
  color: var(--text-mid);
}

.testimonials-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1320px;
  margin: 0 auto 56px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  z-index: 3;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(42,79,51,0.14);
  border-color: rgba(201,168,76,0.5);
}

.testimonial-card:hover::before { transform: scaleX(1); }

.testimonial-card:hover .testimonial-media img {
  transform: scale(1.06);
}

.testimonial-media {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--green-dark);
  flex-shrink: 0;
}

.testimonial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  display: block;
  transition: transform 0.5s ease;
}

.testimonial-media::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(20,38,25,0.55), rgba(20,38,25,0));
  pointer-events: none;
}

.testimonial-body {
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.testimonial-flag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  border: 2px solid var(--white);
  overflow: hidden;
  z-index: 2;
}

.testimonial-flag img {
  width: 26px;
  height: 13px;
  border-radius: 2px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.65;
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 22px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(201,168,76,0.25);
  width: 100%;
}

.testimonial-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--green-dark);
}

.testimonial-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: var(--gold);
}

.testimonials-cta-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
}

.testimonials-cta-btn {
  display: inline-block;
  background: var(--green-dark);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 18px 40px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(42,79,51,0.25);
}

.testimonials-cta-btn:hover {
  background: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(42,79,51,0.35);
}

@media (max-width: 640px) {
  .testimonials-section { padding: 80px 6%; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 22px; }
  .testimonial-body { padding: 24px 20px 26px; }
  .testimonial-media { aspect-ratio: 4 / 3; }
}