:root {
  --navy:      #061725;
  --navy-2:    #071d2d;
  --teal:      #2BBFBD;
  --teal-mid:  #1A9290;
  --deep-teal: #0D6364;
  --gold:      #D9A520;
  --ivory:     #f5f1e8;
  --white:     #ffffff;
  --muted:     #70818a;
  --shadow:    0 28px 90px rgba(0,0,0,.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--ivory);
  color: var(--navy);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button, a { cursor: pointer; }

/* TOPBAR */
.topbar {
  width: 100%;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(24px, 5vw, 76px);
  position: relative;
  z-index: 10;
  background: rgba(245,241,232,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(6,23,37,.08);
  flex-shrink: 0;
}

.brand { display: flex; align-items: center; gap: 14px; min-width: 220px; }

.mark {
  width: 56px; height: 50px;
  display: flex; align-items: flex-end; gap: 5px;
  padding: 4px 0 7px;
  border-bottom: 4px solid rgba(6,23,37,.65);
}

.mark span { display: block; width: 14px; border-radius: 1px 1px 0 0; background: #5a5f62; transform-origin: bottom center; }
.mark span:first-child  { height: 42px; background: var(--teal); }
.mark span:nth-child(2) { height: 42px; }
.mark span:nth-child(3) { height: 44px; transform: rotate(-12deg); }

.brand-text strong { display: block; font-family: Sora, sans-serif; letter-spacing: .18em; font-size: 18px; color: var(--teal-mid); line-height: 1.1; }
.brand-text small  { display: block; font-family: Georgia, serif; font-style: italic; letter-spacing: .06em; margin-top: 4px; font-size: 13px; color: #2b3032; }

.nav { display: flex; align-items: center; gap: clamp(22px,3.2vw,46px); font-size: 14px; font-weight: 700; color: #192530; }
.nav a { position: relative; transition: color .25s ease; }
.nav a::after { content:""; position:absolute; left:0; bottom:-8px; width:0; height:2px; background:var(--teal); transition:width .25s ease; }
.nav a:hover { color: var(--teal-mid); }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }

.consult-btn {
  border: 0; background: var(--deep-teal); color: white;
  padding: 17px 24px; font-weight: 800; font-size: 14px;
  border-radius: 3px; letter-spacing: .01em;
  box-shadow: 0 14px 32px rgba(13,99,100,.28);
  transition: transform .2s ease, background .2s ease; display: inline-block;
}
.consult-btn:hover { transform: translateY(-2px); background: #0a5455; }

.menu-btn { width: 46px; height: 46px; display: none; align-items: center; justify-content: center; border: 1px solid rgba(6,23,37,.16); background: transparent; border-radius: 50%; }
.menu-btn span, .menu-btn span::before, .menu-btn span::after { display: block; width: 18px; height: 2px; background: var(--navy); content: ""; }
.menu-btn span::before { transform: translateY(-7px); }
.menu-btn span::after  { transform: translateY(5px); }

/* SHARED SECTION */
.section-label { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-mid); margin-bottom: 14px; }
.section-label.light { color: var(--teal); }

.section-heading { font-family: Sora, sans-serif; font-size: clamp(30px,3.8vw,52px); font-weight: 800; line-height: 1.08; letter-spacing: .03em; color: var(--navy); text-transform: uppercase; }
.section-heading.light { color: white; }
.section-heading em { font-style: normal; color: var(--teal-mid); }
.section-heading.light em { color: var(--teal); }

/* BUTTONS */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy);
  padding: 16px 28px; font-weight: 800; font-size: 14px;
  border: 0; border-radius: 2px; cursor: pointer;
  box-shadow: 0 8px 28px rgba(217,165,32,.3);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(217,165,32,.42); }

.btn-teal {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--deep-teal); color: white;
  padding: 17px 32px; font-weight: 800; font-size: 15px;
  border: 0; border-radius: 2px; cursor: pointer;
  box-shadow: 0 8px 28px rgba(13,99,100,.28);
  transition: transform .2s, background .2s;
}
.btn-teal:hover { transform: translateY(-2px); background: var(--teal-mid); }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--navy);
  padding: 16px 28px; font-weight: 700; font-size: 14px;
  border: 1.5px solid var(--navy); border-radius: 2px; cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-outline-dark:hover { background: var(--navy); color: white; }

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.44);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 12px 36px rgba(37,211,102,.54); }

/* MOBILE NAV */
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 99; background: var(--navy); padding: 88px 32px 40px; flex-direction: column; gap: 6px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: Sora, sans-serif; font-size: 22px; font-weight: 700; color: rgba(255,255,255,.78); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); display: block; text-transform: uppercase; letter-spacing: .04em; transition: color .2s; }
.mobile-nav a:hover { color: var(--teal); }
.mobile-nav .cta-link { color: var(--gold) !important; border-bottom: 0; margin-top: 20px; }

/* FOOTER SIMPLE (inner pages) */
.footer {
  background: var(--navy); color: white;
  padding: 36px clamp(24px,5vw,76px) 24px;
  border-top: 1px solid rgba(43,191,189,.14);
  margin-top: auto;
}

.footer .brand-text strong { color: white; }
.footer .brand-text small  { color: rgba(255,255,255,.6); }

.footer-bottom-simple { max-width: 1460px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.footer-brand-row { display: flex; align-items: center; }
.footer-links-row { font-size: 14px; color: rgba(255,255,255,.56); }
.footer-links-row a { color: rgba(255,255,255,.56); transition: color .2s; margin: 0 2px; }
.footer-links-row a:hover { color: white; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,.36); }
.footer-copy a { color: rgba(255,255,255,.36); transition: color .2s; }
.footer-copy a:hover { color: rgba(255,255,255,.7); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .nav { display: none; }
  .menu-btn { display: inline-flex; }
  .brand { min-width: auto; }
}

@media (max-width: 680px) {
  .topbar { min-height: 82px; padding: 16px 18px; }
  .brand-text strong { font-size: 14px; }
  .brand-text small  { font-size: 10px; }
  .mark { width: 42px; height: 38px; gap: 4px; }
  .mark span { width: 10px; }
  .mark span:first-child, .mark span:nth-child(2) { height: 32px; }
  .mark span:nth-child(3) { height: 34px; }
  .consult-btn { display: none; }
}

.immigration-disclaimer {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  border-left: 2px solid rgba(43,191,189,.35);
  padding: 12px 16px;
  margin-top: clamp(32px,4vw,48px);
  background: rgba(43,191,189,.06);
  max-width: 720px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
