/* =========================================================
   Eliteport — Landing Page
   ========================================================= */

:root{
  --navy-950: #0a1f36;
  --navy-900: #0e2a47;
  --navy-800: #123456;
  --navy-700: #1a4569;
  --navy-600: #23567f;
  --gold-500: #c9a24a;
  --gold-400: #d9b968;
  --gold-300: #e8cf94;
  --ink: #1a2433;
  --ink-soft: #4b5666;
  --bg: #f7f8fa;
  --white: #ffffff;
  --radius: 16px;
  --shadow-md: 0 12px 30px -12px rgba(10, 31, 54, 0.25);
  --shadow-lg: 0 24px 60px -20px rgba(10, 31, 54, 0.35);
  --container: 1180px;
  --ff-head: 'Poppins', sans-serif;
  --ff-body: 'Manrope', sans-serif;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{ font-family: var(--ff-head); margin: 0 0 .5em; color: var(--navy-900); line-height: 1.2; }
p{ margin: 0 0 1em; color: var(--ink-soft); }
svg{ width: 100%; height: 100%; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold{ color: var(--gold-400); }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn--gold{
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  box-shadow: var(--shadow-md);
}
.btn--gold:hover{ transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--ghost{
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover{ border-color: var(--gold-400); color: var(--gold-300); transform: translateY(-2px); }
.btn--lg{ padding: 16px 34px; font-size: 1rem; }

/* ---------- Reveal on scroll ---------- */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* ---------- Eyebrow / Section head ---------- */
.eyebrow{
  display: inline-block;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy-700);
  background: rgba(201,162,74,0.14);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.eyebrow--gold{ color: var(--gold-300); background: rgba(255,255,255,0.08); }

.section-head{ max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2{ font-size: clamp(1.8rem, 3vw, 2.4rem); }
.section-head__sub{ font-size: 1.05rem; }
.section-head--light h2{ color: var(--white); }

/* =========================================================
   HEADER
   ========================================================= */
.header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.0);
  backdrop-filter: blur(0px);
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
  padding: 18px 0;
}
.header.is-scrolled,
.header--solid{
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px -12px rgba(10,31,54,0.18);
  padding: 10px 0;
}
.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand__logo{
  height: 42px;
  width: auto;
  padding: 6px 10px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 14px -6px rgba(0,0,0,0.25);
  transition: height .35s ease;
}
.header.is-scrolled .brand__logo,
.header--solid .brand__logo{ height: 36px; box-shadow: none; }

.nav{
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link{
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .95rem;
  color: var(--white);
  position: relative;
  transition: color .3s ease;
}
.header.is-scrolled .nav__link,
.header--solid .nav__link{ color: var(--navy-900); }
.nav__link::after{
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: width .3s ease;
}
.nav__link:hover::after{ width: 100%; }
.nav__cta{ margin-left: 8px; }

.burger{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.burger span{
  display: block;
  height: 2px;
  width: 26px;
  background: var(--white);
  transition: all .3s ease;
}
.header.is-scrolled .burger span,
.header--solid .burger span{ background: var(--navy-900); }
.burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
.burger[aria-expanded="true"] span{ background: var(--navy-900); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background:
    radial-gradient(1200px 700px at 85% -10%, rgba(201,162,74,0.18), transparent 60%),
    radial-gradient(900px 600px at 10% 110%, rgba(35,86,127,0.5), transparent 60%),
    linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  overflow: hidden;
}
.hero__bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__eagle{
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: min(60vw, 780px);
  height: auto;
  color: rgba(255,255,255,0.05);
}
.hero__inner{ position: relative; z-index: 2; }

.hero__badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 8px 18px;
  border-radius: 999px;
  color: var(--gold-300);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 26px;
}
.hero__badge .stars{ color: var(--gold-400); letter-spacing: 2px; }

.hero__title{
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  color: var(--white);
  max-width: 820px;
  font-weight: 700;
}
.hero__subtitle{
  color: rgba(255,255,255,0.78);
  font-size: 1.15rem;
  max-width: 620px;
  margin-bottom: 36px;
}
.hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 64px;
}
.hero__stats{
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.14);
  max-width: 640px;
}
.hero__stat{ display: flex; flex-direction: column; }
.hero__stat strong{
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-400);
}
.hero__stat span{
  color: rgba(255,255,255,0.65);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hero__scroll{
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  z-index: 2;
}
.hero__scroll span{
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold-400);
  border-radius: 4px;
  animation: scrollDot 1.8s infinite ease;
}
@keyframes scrollDot{
  0%{ opacity: 1; top: 8px; }
  70%{ opacity: 0; top: 22px; }
  100%{ opacity: 0; top: 22px; }
}

/* =========================================================
   ABOUT / QUEM SOMOS
   ========================================================= */
.about{ padding: 120px 0; background: var(--white); }
.about__inner{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}
.about__text h2{ font-size: clamp(1.8rem, 3vw, 2.4rem); }

.pillars{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.pillar{
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy-800);
}
.pillar__icon{
  flex: none;
  width: 40px;
  height: 40px;
  padding: 9px;
  border-radius: 12px;
  background: rgba(201,162,74,0.12);
  color: var(--gold-500);
}

.about__card{ position: relative; }
.quote-card{
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.quote-card__mark{
  width: 44px;
  height: 34px;
  color: var(--gold-400);
  margin-bottom: 18px;
  opacity: .9;
}
.quote-card p{
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 28px;
}
.quote-card__author{
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.1rem;
  flex: none;
}
.quote-card__author strong{ display: block; font-family: var(--ff-head); }
.quote-card__author span{ font-size: .85rem; color: rgba(255,255,255,0.6); }

/* =========================================================
   SERVICES
   ========================================================= */
.services{ padding: 120px 0; background: var(--bg); }

.services__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card{
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10,31,54,0.05);
  transition: transform .35s ease, box-shadow .35s ease;
}
.service-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card--featured{
  background: linear-gradient(165deg, var(--navy-900), var(--navy-700));
  border: none;
}
.service-card--featured h3,
.service-card--featured p{ color: var(--white); }
.service-card--featured p{ color: rgba(255,255,255,0.75); }
.service-card--featured ul li{ color: rgba(255,255,255,0.85); }
.service-card--featured ul li::before{ color: var(--gold-400); }
.service-card--featured .service-card__icon{
  background: rgba(255,255,255,0.12);
  color: var(--gold-400);
}

.service-card__icon{
  width: 56px;
  height: 56px;
  padding: 13px;
  border-radius: 14px;
  background: rgba(201,162,74,0.12);
  color: var(--gold-500);
  margin-bottom: 22px;
}
.service-card h3{ font-size: 1.3rem; margin-bottom: 12px; }
.service-card ul{ margin-top: 18px; }
.service-card ul li{
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: .93rem;
  color: var(--ink-soft);
}
.service-card ul li::before{
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-weight: 700;
}

/* =========================================================
   STATS / INDICADORES
   ========================================================= */
.stats{
  position: relative;
  padding: 110px 0;
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  overflow: hidden;
}
.stats__bg{
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(201,162,74,0.12), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(201,162,74,0.1), transparent 45%);
}
.stats .container{ position: relative; z-index: 2; }

.stats__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
  text-align: center;
}
.stat-item strong{
  display: block;
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 8px;
}
.stat-item span{
  color: rgba(255,255,255,0.7);
  font-size: .92rem;
  letter-spacing: .02em;
}

/* =========================================================
   COMMITMENT BANNER
   ========================================================= */
.commitment{
  padding: 100px 0;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
}
.commitment__inner{ max-width: 720px; margin: 0 auto; text-align: center; }
.commitment h2{
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--navy-950);
}
.commitment p{ color: rgba(10,31,54,0.75); font-size: 1.08rem; margin-bottom: 32px; }
.commitment .btn--gold{
  background: var(--navy-950);
  color: var(--white);
}
.commitment .btn--gold:hover{ background: var(--navy-800); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact{ padding: 120px 0; background: var(--white); }
.contact__inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact__sub{ font-size: 1.05rem; margin-bottom: 32px; }
.contact__list{ margin-bottom: 36px; }
.contact__list li{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  font-size: .98rem;
  color: var(--ink-soft);
}
.contact__list a:hover{ color: var(--navy-800); }
.contact__icon{
  flex: none;
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: 10px;
  background: rgba(201,162,74,0.12);
  color: var(--gold-500);
}
.contact__map{
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
}
.contact__map iframe{ width: 100%; height: 100%; border: 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer{ background: var(--navy-950); color: rgba(255,255,255,0.7); padding-top: 70px; }
.footer__inner{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo{
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  padding: 6px 10px;
  background: var(--white);
  border-radius: 10px;
}
.footer__brand p{ color: rgba(255,255,255,0.55); max-width: 320px; }
.footer__links h4{
  color: var(--white);
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 18px;
}
.footer__links{ display: flex; flex-direction: column; gap: 12px; }
.footer__links a{ color: rgba(255,255,255,0.6); font-size: .93rem; transition: color .3s ease; }
.footer__links a:hover{ color: var(--gold-400); }
.footer__bottom{ padding: 24px 0; }
.footer__bottom-inner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 24px;
}
.footer__bottom p{ margin: 0; font-size: .85rem; color: rgba(255,255,255,0.45); text-align: center; }
.footer__legal-link{
  font-size: .85rem;
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .3s ease;
}
.footer__legal-link:hover{ color: var(--gold-400); }

/* =========================================================
   PRIVACY BANNER
   ========================================================= */
.privacy-banner{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1300;
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -12px 40px -12px rgba(0,0,0,0.4);
  transform: translateY(100%);
  transition: transform .5s ease;
}
.privacy-banner.is-visible{ transform: translateY(0); }
.privacy-banner__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.privacy-banner__inner p{
  flex: 1 1 480px;
  margin: 0;
  color: rgba(255,255,255,0.75);
  font-size: .92rem;
}
.privacy-banner__inner a{ color: var(--gold-400); text-decoration: underline; text-underline-offset: 2px; }
.privacy-banner__actions{
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.whatsapp-float{
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 62px;
  height: 62px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 10px 30px -6px rgba(37,211,102,0.6);
  z-index: 1200;
  animation: pulse 2.4s infinite;
}
.whatsapp-float svg{ width: 32px; height: 32px; }
.whatsapp-float:hover .whatsapp-float__tooltip{ opacity: 1; transform: translateX(0); }
.whatsapp-float__tooltip{
  position: absolute;
  right: 74px;
  background: var(--navy-950);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .85rem;
  font-family: var(--ff-head);
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.whatsapp-float__tooltip::after{
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--navy-950);
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70%{ box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px){
  .about__inner,
  .contact__inner{ grid-template-columns: 1fr; }
  .services__grid{ grid-template-columns: 1fr; }
  .stats__grid{ grid-template-columns: repeat(2, 1fr); }
  .footer__inner{ grid-template-columns: 1fr; }
  .contact__map{ height: 320px; }
}

@media (max-width: 800px){
  .nav{
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform .4s ease;
    box-shadow: -12px 0 40px rgba(10,31,54,0.15);
  }
  .nav.is-open{ transform: translateX(0); }
  .nav__link{ color: var(--navy-900); font-size: 1.1rem; }
  .nav__cta{ margin-left: 0; }
  .burger{ display: flex; }
  .hero__stats{ gap: 28px; }
  .pillars{ grid-template-columns: 1fr; }
}

@media (max-width: 560px){
  .stats__grid{ grid-template-columns: 1fr; }
  .hero{ padding-top: 120px; }
  .whatsapp-float{ width: 56px; height: 56px; bottom: 18px; right: 18px; }
  .whatsapp-float svg{ width: 28px; height: 28px; }
}
