@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  --navy:#001d31;
  --navy-2:#002941;
  --navy-3:#06172a;
  --gold:#c79135;
  --gold-2:#e2b669;
  --ink:#102033;
  --muted:#5c6673;
  --line:#d6dde6;
  --paper:#f7f8fa;
  --white:#ffffff;
  --shadow:0 12px 35px rgba(3,18,32,.13);
  --radius:14px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  font-family:"Inter", Arial, sans-serif;
  background:#fff;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{
  width:min(1110px, calc(100% - 64px));
  margin:0 auto;
}

/* TOPO */
.topbar{
  height:80px;
  background:#071d31;
  color:#fff;
  position:sticky;
  top:0;
  z-index:20;
  box-shadow:0 2px 20px rgba(0,0,0,.36);
  border-bottom:1px solid rgba(199,145,53,.16);
}
.nav{
  height:80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.brand{
  display:flex;
  align-items:center;
  gap:0;
  flex-shrink:0;
}
.brand-mark{
  font-family:"Cinzel", serif;
  color:var(--gold);
  font-size:34px;
  line-height:1;
  letter-spacing:-4px;
  font-weight:600;
  padding-right:14px;
  border-right:1px solid rgba(199,145,53,.36);
  margin-right:14px;
}
.brand-text strong{
  font-family:"Cinzel", serif;
  font-size:13px;
  line-height:1.22;
  display:block;
  letter-spacing:.38px;
  color:#fff;
}
.brand-text small{
  display:block;
  color:var(--gold-2);
  letter-spacing:5.5px;
  font-size:6.8px;
  margin-top:5px;
  font-weight:700;
  text-transform:uppercase;
}
.menu{
  display:flex;
  align-items:stretch;
  height:80px;
  font-size:13px;
  font-weight:600;
}
.menu a{
  display:flex;
  align-items:center;
  padding:0 11px;
  color:#c8d4e2;
  white-space:nowrap;
  letter-spacing:.02em;
  position:relative;
  transition:color .18s;
}
.menu a::after{
  content:"";
  position:absolute;
  bottom:0;
  left:11px;
  right:11px;
  height:2px;
  background:var(--gold);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .22s ease;
}
.menu a:hover{color:var(--gold-2)}
.menu a:hover::after{transform:scaleX(1)}
.menu a.active{color:var(--gold-2)}
.menu a.active::after{transform:scaleX(1)}
.nav-whatsapp{display:none}

/* HERO */
.hero{
  position:relative;
  overflow:hidden;
  background:#061827;
  color:#fff;
  min-height:520px;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 62% 20%, rgba(193,145,53,.18), transparent 26%),
    linear-gradient(90deg, rgba(0,26,47,.98) 0%, rgba(0,33,54,.92) 38%, rgba(8,26,40,.74) 64%, rgba(5,13,22,.96) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0 1px, transparent 1px 70px);
}
.hero:after{
  content:"";
  position:absolute;
  inset:0 0 auto auto;
  width:330px;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(121,71,28,.28));
}
.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px) 220px;
  gap:18px;
  align-items:center;
  min-height:520px;
}
.eyebrow{
  margin:0 0 18px;
  color:var(--gold-2);
  font-size:15px;
  font-weight:900;
  letter-spacing:.08em;
}
.hero h1{
  font-family:"Cinzel", serif;
  font-size:48px;
  line-height:1.07;
  margin:0;
  color:#fff;
  letter-spacing:-1.1px;
}
.hero h1 span{color:var(--gold-2)}
.hero-text{
  max-width:565px;
  margin:18px 0 22px;
  color:#e9eef4;
  line-height:1.62;
  font-size:16px;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:9px;
  height:48px;
  padding:0 22px;
  border-radius:6px;
  font-weight:800;
  font-size:14px;
}
.btn-gold{
  background:linear-gradient(135deg, #d3a04c, #b77b25);
  color:#fff;
  box-shadow:0 7px 18px rgba(0,0,0,.2);
}
.btn-outline{
  border:1px solid var(--gold);
  color:#fff;
  background:rgba(6,27,44,.55);
}
.hero-photo-wrap{
  align-self:end;
  justify-self:end;
  height:470px;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-left:0;
  overflow:visible;
}
.hero-photo{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center bottom;
  filter:drop-shadow(0 18px 28px rgba(0,0,0,.46));
}
.credential-card{
  width:214px;
  border:1px solid var(--gold);
  border-radius:16px;
  background:rgba(3,26,44,.86);
  padding:11px 18px;
  box-shadow:var(--shadow);
}
.credential-item{
  display:grid;
  grid-template-columns:45px 1fr;
  gap:10px;
  align-items:center;
  min-height:105px;
  border-bottom:1px solid rgba(199,145,53,.48);
}
.credential-item.last{border-bottom:0}
.credential-item i{
  color:var(--gold);
  font-size:33px;
}
.credential-item p{
  font-size:14px;
  line-height:1.28;
  margin:0;
  color:#fff;
  font-weight:700;
}
.credential-item strong{color:var(--gold-2)}

/* TÍTULOS */
.section-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  margin-bottom:14px;
}
.section-title h2{
  font-family:"Cinzel", serif;
  font-size:24px;
  margin:0;
  letter-spacing:.3px;
  color:#10233a;
  text-align:center;
}
.section-title span{
  width:106px;
  height:1px;
  background:var(--gold);
}
.section-title.compact{margin-bottom:19px}

/* BASE LEGAL */
.legal-section{
  background:#f7f8fa;
  padding:18px 0 18px;
  border-bottom:1px solid #e3e6ea;
}
.legal-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
  margin:8px auto 18px;
  width:88%;
}
.white-card{
  background:#fff;
  border:1px solid #dce2e8;
  border-radius:9px;
  box-shadow:0 8px 18px rgba(16,32,51,.08);
}
.legal-card{
  display:grid;
  grid-template-columns:72px 1fr;
  align-items:center;
  padding:21px 25px;
  min-height:102px;
}
.legal-card i{
  color:var(--gold);
  font-size:44px;
}
.legal-card h3,
.mini-card h3{
  margin:0 0 7px;
  font-family:"Cinzel", serif;
  font-size:17px;
  color:#10243b;
}
.legal-card p,
.mini-card p{
  margin:0;
  color:#1c2837;
  font-size:13.2px;
  line-height:1.48;
}
.mini-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1.08fr;
  gap:14px;
  width:90%;
  margin:0 auto;
}
.mini-card{
  display:grid;
  grid-template-columns:58px 1fr;
  align-items:center;
  padding:18px 19px;
  min-height:103px;
}
.mini-card i{
  color:var(--navy);
  font-size:31px;
}

/* DIFERENCIAIS */
.diferenciais{
  padding:18px 0 15px;
  background:#fff;
}
.dark-card-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}
.dark-card{
  background:linear-gradient(145deg, #02243c 0%, #001c30 100%);
  color:#fff;
  border:1px solid rgba(199,145,53,.35);
  border-radius:9px;
  padding:25px 15px 18px;
  min-height:174px;
  box-shadow:0 10px 24px rgba(0,25,42,.16);
}
.dark-card i{
  color:var(--gold);
  font-size:40px;
  margin-bottom:16px;
  display:block;
  text-align:center;
}
.dark-card h3{
  font-family:"Cinzel", serif;
  text-align:center;
  font-size:17px;
  margin:0 0 10px;
}
.dark-card p{
  font-size:13px;
  line-height:1.48;
  margin:0;
}

/* RELATÓRIOS */
.reports{padding:0 0 10px;background:#fff}
.report-panel{
  display:grid;
  grid-template-columns:.78fr 1.22fr;
  gap:22px;
  border:1px solid #dce2e8;
  border-radius:12px;
  padding:20px 22px;
  box-shadow:0 10px 26px rgba(17,33,51,.08);
}
.report-text h2{
  font-family:"Cinzel", serif;
  font-size:22px;
  margin:0 0 12px;
}
.report-text p{
  font-size:14px;
  line-height:1.55;
  margin:0 0 18px;
}
.report-features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px 18px;
  font-size:13px;
  font-weight:600;
}
.report-features div{
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.report-features i{
  color:#0b253c;
  font-size:24px;
  width:24px;
}
.dashboard{
  background:#fff;
  border:1px solid #dde3ea;
  border-radius:10px;
  padding:14px;
  box-shadow:0 8px 20px rgba(16,32,51,.08);
}
.dashboard h3{
  margin:0 0 12px;
  font-size:14px;
  color:#233245;
}
.stats{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:9px;
  margin-bottom:12px;
}
.stats div{
  border:1px solid #dce2e8;
  border-radius:7px;
  padding:10px;
  min-height:54px;
}
.stats small{
  display:block;
  font-size:10px;
  color:#657282;
}
.stats strong{
  display:block;
  margin-top:2px;
  font-size:18px;
}
.dashboard table{
  width:100%;
  border-collapse:collapse;
  font-size:11.4px;
}
.dashboard th,
.dashboard td{
  padding:8px 7px;
  border-bottom:1px solid #e5e9ee;
  text-align:left;
}
.dashboard th{
  color:#1e2f44;
  font-weight:800;
  background:#f7f9fb;
}
.up{color:#14a05c;font-weight:800}
.down{color:#d13f3f;font-weight:800}
.dashboard-note{
  font-size:10px;
  color:#778290;
  margin:8px 0 0;
}

/* EQUIPE */
.team{
  background:#fff;
  padding:7px 0 13px;
}
.team-title{margin-bottom:12px}
.team-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.team-card{
  display:grid;
  grid-template-columns:118px 1fr;
  gap:18px;
  align-items:center;
  border:1px solid #dce2e8;
  border-radius:11px;
  padding:12px 18px;
  min-height:128px;
  background:#fff;
  box-shadow:0 8px 20px rgba(16,32,51,.06);
}
.team-avatar{
  width:105px;
  height:105px;
  min-width:105px;
  border-radius:50%;
  overflow:hidden;
  border:5px solid #eef2f5;
  box-shadow:0 0 0 2px #15304a;
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:center;
}
.team-avatar img{
  width:105px;
  height:105px;
  border-radius:50%;
  object-fit:cover;
  object-position:center top;
  overflow:hidden;
  border:0;
  box-shadow:none;
  background:transparent;
}
.team-avatar img.avatar-center{
  object-position:center center;
}
.team-card h3{
  font-family:"Cinzel", serif;
  font-size:18px;
  margin:0;
}
.role{
  color:#b77b25;
  margin:2px 0 5px;
  font-size:13px;
  font-weight:700;
}
.badge{
  display:inline-block;
  border:1px solid var(--gold);
  color:#a86d21;
  border-radius:6px;
  padding:2px 9px;
  font-size:12px;
  margin:0 3px 5px 0;
  font-weight:700;
}
.team-card p:last-child{
  margin:3px 0 0;
  font-size:12.5px;
  line-height:1.35;
}

/* CONTATO */
.contact-band{
  background:#03243c;
  color:#fff;
  padding:16px 0;
  border-top:1px solid #081626;
}
.contact-grid{
  display:grid;
  grid-template-columns:.75fr 1.1fr .8fr;
  gap:22px;
  align-items:center;
}
.creditor-box h2,
.documents h2{
  font-family:"Cinzel", serif;
  color:var(--gold-2);
  font-size:20px;
  margin:0 0 10px;
}
.creditor-box p{
  color:#e8eef4;
  font-size:12px;
  line-height:1.45;
  margin:0 0 13px;
}
.request-buttons{
  display:flex;
  gap:8px;
}
.request-buttons a{
  width:85px;
  height:78px;
  border:1px solid var(--gold);
  border-radius:8px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  color:#fff;
  font-size:11px;
  font-weight:800;
  text-align:center;
}
.request-buttons i{
  color:var(--gold);
  font-size:24px;
}
.contact-form{
  display:grid;
  gap:8px;
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:9px;
}
input, select, textarea{
  width:100%;
  border:1px solid #c7d0da;
  border-radius:5px;
  padding:10px 12px;
  font-family:inherit;
  font-size:13px;
  outline:none;
}
textarea{height:78px;resize:vertical}
button{
  border:0;
  border-radius:5px;
  height:39px;
  background:linear-gradient(135deg, #d7a956, #b77b25);
  color:#fff;
  font-weight:800;
  font-size:14px;
  cursor:pointer;
}
.contact-card{
  border:1px solid var(--gold);
  border-radius:10px;
  padding:16px 22px;
  min-height:174px;
}
.contact-card h3{
  color:var(--gold-2);
  margin:0 0 13px;
  font-size:17px;
}
.contact-card p{
  margin:0 0 11px;
  font-size:12px;
  line-height:1.35;
  padding-left:37px;
  position:relative;
}
.contact-card i{
  position:absolute;
  left:0;
  top:1px;
  color:var(--gold);
  font-size:24px;
}

/* DOCUMENTOS */
.documents{
  background:#f6f7f9;
  padding:17px 0 24px;
}
.docs-grid{
  display:grid;
  grid-template-columns:1.85fr repeat(5, 1fr);
  gap:14px;
  align-items:stretch;
}
.documents h2{
  color:#10233a;
  margin-bottom:8px;
}
.docs-copy p{
  font-size:12.5px;
  line-height:1.4;
  margin:0;
}
.doc-card{
  background:#fff;
  border:1px solid #e0e5eb;
  border-radius:8px;
  min-height:92px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  gap:7px;
  font-weight:800;
  font-size:12px;
  box-shadow:0 7px 16px rgba(16,32,51,.06);
}
.doc-card i{
  font-size:26px;
  color:#1d3349;
}

/* RESPONSIVO */
@media (max-width: 1020px){
  .container{width:min(94%, calc(100% - 24px))}
  .menu{display:none}
  .hero{min-height:auto}
  .hero-grid{
    grid-template-columns:minmax(0, 1fr) minmax(250px, 32vw);
    gap:12px 18px;
    min-height:0;
    padding:42px 0 28px;
  }
  .hero-copy{align-self:center}
  .hero h1{font-size:40px}
  .hero-photo-wrap{
    height:360px;
    align-self:end;
    margin-left:0;
  }
  .hero-photo{
    width:100%;
    height:100%;
  }
  .credential-card{grid-column:1 / -1; width:100%; display:grid; grid-template-columns:repeat(3,1fr)}
  .credential-item{border-bottom:0;border-right:1px solid rgba(199,145,53,.48)}
  .credential-item.last{border-right:0}
  .dark-card-grid,.legal-grid,.mini-grid,.report-panel,.team-grid,.contact-grid,.docs-grid{grid-template-columns:1fr}
  .legal-grid,.mini-grid{width:100%}
}
@media (max-width: 640px){
  .topbar{height:64px}
  .nav{height:64px}
  .brand{min-width:auto}
  .hero-grid{grid-template-columns:1fr; padding-top:34px}
  .hero h1{font-size:35px}
  .hero-text{font-size:14px}
  .hero-photo-wrap{
    height:300px;
    justify-self:center;
    margin-top:-10px;
    overflow:visible;
    width:min(320px, 100%);
  }
  .hero-photo{
    width:100%;
    height:100%;
  }
  .credential-card{grid-template-columns:1fr}
  .credential-item{border-right:0;border-bottom:1px solid rgba(199,145,53,.48)}
  .section-title span{width:42px}
  .section-title h2{font-size:18px}
  .legal-card,.mini-card,.team-card{grid-template-columns:1fr;text-align:left}
  .stats{grid-template-columns:1fr 1fr}
  .form-row{grid-template-columns:1fr}
  .request-buttons{flex-wrap:wrap}
}

/* ===== FOOTER ===== */
.site-footer{
  background:#071d31;
  color:#fff;
  padding:30px 0 18px;
  border-top:2px solid rgba(199,145,53,.32);
}
.footer-inner{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:18px 40px;
  align-items:start;
}
.footer-brand{display:flex;align-items:center;gap:10px}
.footer-brand .brand-mark{
  font-family:"Cinzel",serif;
  color:var(--gold);
  font-size:38px;
  line-height:.78;
  letter-spacing:-6px;
  font-weight:600;
}
.footer-brand .brand-text strong{
  font-family:"Cinzel",serif;
  font-size:12px;
  line-height:.95;
  display:block;
  letter-spacing:.2px;
}
.footer-brand .brand-text small{
  display:block;
  color:var(--gold-2);
  letter-spacing:5px;
  font-size:7px;
  margin-top:4px;
  font-weight:700;
}
.footer-nav{display:flex;flex-wrap:wrap;gap:7px 22px;padding-top:4px}
.footer-nav a{color:#c0cdd9;font-size:13px;font-weight:600}
.footer-nav a:hover{color:var(--gold-2)}
.footer-bottom{
  grid-column:1/-1;
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:16px;
  padding-top:12px;
}
.footer-copy{color:#708090;font-size:12px;margin:0 0 4px}
.footer-disc{color:#4e5f6e;font-size:11px;margin:0;font-style:italic}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero{
  background:#061827;
  color:#fff;
  padding:52px 0 38px;
  position:relative;
  overflow:hidden;
}
.page-hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 30% 50%, rgba(193,145,53,.12), transparent 50%),
    linear-gradient(135deg, rgba(0,26,47,.98) 0%, rgba(0,33,54,.88) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.02) 0 1px, transparent 1px 70px);
}
.page-hero-inner{position:relative;z-index:1;max-width:760px}
.page-hero h1{
  font-family:"Cinzel",serif;
  font-size:40px;
  line-height:1.08;
  margin:0 0 14px;
  letter-spacing:-.8px;
  color:#fff;
}
.page-hero h1 span{color:var(--gold-2)}
.page-hero .hero-lead{
  color:#dce6ef;
  font-size:16px;
  line-height:1.62;
  margin:0 0 24px;
  max-width:620px;
}

/* ===== PAGE SECTIONS ===== */
.page-section{padding:46px 0}
.page-section.alt{background:var(--paper)}
.page-section.dark{background:#071d31;color:#fff}
.section-lead{
  color:#3a4a5a;
  font-size:15px;
  line-height:1.65;
  max-width:780px;
  margin:0 auto 28px;
  text-align:center;
}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:26px;align-items:start;margin-top:24px}
.three-col{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:24px}
.four-col{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:24px}
.info-card{
  background:#fff;
  border:1px solid #dce2e8;
  border-radius:10px;
  padding:24px 20px;
  box-shadow:0 6px 16px rgba(16,32,51,.07);
}
.info-card i{color:var(--gold);font-size:34px;margin-bottom:12px;display:block}
.info-card h3{font-family:"Cinzel",serif;font-size:16px;margin:0 0 8px;color:#10233a}
.info-card p{font-size:13.5px;line-height:1.52;margin:0;color:#3a4a5a}
.info-card.accent{border-top:3px solid var(--gold)}
.highlight-box{
  background:linear-gradient(135deg,#02243c,#001b2d);
  color:#fff;
  border:1px solid rgba(199,145,53,.4);
  border-radius:12px;
  padding:28px 26px;
}
.highlight-box h3{font-family:"Cinzel",serif;font-size:20px;color:var(--gold-2);margin:0 0 10px}
.highlight-box p{font-size:14.5px;line-height:1.65;color:#d8e4ef;margin:0 0 10px}
.highlight-box p:last-child{margin:0}
.text-block p{font-size:14.5px;line-height:1.7;color:#2a3a4a;margin:0 0 14px}
.text-block p:last-child{margin:0}
.text-block h3{font-family:"Cinzel",serif;font-size:19px;margin:0 0 10px;color:#10233a}

/* ===== CTA BAND ===== */
.cta-band{
  background:linear-gradient(135deg,#01243c 0%,#001b2e 100%);
  color:#fff;
  padding:42px 0;
  text-align:center;
  border-top:1px solid rgba(199,145,53,.28);
}
.cta-band h2{font-family:"Cinzel",serif;font-size:28px;margin:0 0 10px;color:var(--gold-2)}
.cta-band p{color:#cdd8e4;font-size:15px;max-width:560px;margin:0 auto 22px;line-height:1.6}
.cta-btns{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}

/* ===== NAV CARDS (homepage) ===== */
.nav-cards{padding:36px 0;background:#f7f8fa;border-bottom:1px solid #e3e6ea}
.nav-card-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:14px}
.nav-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:9px;
  background:#fff;
  border:1px solid #dce2e8;
  border-radius:10px;
  padding:22px 12px 18px;
  text-align:center;
  box-shadow:0 4px 12px rgba(16,32,51,.06);
  transition:transform .15s,box-shadow .15s,border-color .15s;
  color:inherit;
}
.nav-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(16,32,51,.12);
  border-color:var(--gold);
}
.nav-card i{color:var(--gold);font-size:32px}
.nav-card h3{font-family:"Cinzel",serif;font-size:12.5px;margin:0;color:#10233a;line-height:1.3}
.nav-card span{font-size:11.5px;color:#5c6673;line-height:1.35;display:block}

/* ===== TIMELINE ===== */
.timeline-wrap{display:grid;grid-template-columns:1fr 1fr;gap:16px 48px;margin-top:24px}
.timeline-col h3{
  font-family:"Cinzel",serif;
  font-size:17px;
  margin:0 0 18px;
  color:#10233a;
  padding-bottom:8px;
  border-bottom:2px solid var(--gold);
}
.t-item{position:relative;padding-left:22px;margin-bottom:18px}
.t-item::before{
  content:"";
  position:absolute;
  left:0;top:5px;
  width:10px;height:10px;
  border-radius:50%;
  background:var(--gold);
}
.t-item::after{
  content:"";
  position:absolute;
  left:4px;top:15px;
  width:2px;height:calc(100% - 5px);
  background:rgba(199,145,53,.25);
}
.t-item:last-child::after{display:none}
.t-year{display:block;font-size:11px;font-weight:800;color:var(--gold);letter-spacing:.06em;margin-bottom:2px}
.t-item h4{font-size:14px;font-weight:700;margin:0 0 2px;color:#10233a}
.t-item p{font-size:13px;color:#4a5a6a;margin:0;line-height:1.45}

/* ===== BIO SECTION ===== */
.bio-layout{display:grid;grid-template-columns:300px 1fr;gap:40px;align-items:start;margin-top:28px}
.bio-photo-wrap{position:sticky;top:86px}
.bio-photo{width:100%;border-radius:12px;box-shadow:0 16px 40px rgba(16,32,51,.15)}
.bio-credentials{
  background:var(--navy);
  color:#fff;
  border-radius:10px;
  padding:16px 18px;
  margin-top:14px;
  border:1px solid rgba(199,145,53,.3);
}
.bio-credentials h4{font-family:"Cinzel",serif;font-size:13px;color:var(--gold-2);margin:0 0 10px}
.bio-credentials p{font-size:12.5px;margin:0 0 5px;color:#c0cdd9;line-height:1.4}
.bio-credentials p:last-child{margin:0}
.bio-credentials strong{color:#fff}
.bio-text h2{font-family:"Cinzel",serif;font-size:26px;margin:0 0 16px;color:#10233a}
.bio-text h3{
  font-family:"Cinzel",serif;
  font-size:19px;
  margin:28px 0 10px;
  color:#10233a;
  padding-bottom:6px;
  border-bottom:1px solid #e3e6ea;
}
.bio-text p{font-size:14.5px;line-height:1.7;color:#2a3a4a;margin:0 0 12px}
.bio-text p:last-child{margin:0}
.memberships{display:flex;flex-wrap:wrap;gap:7px;margin:10px 0 0}
.membership-badge{
  background:#f0f4f8;
  border:1px solid #dce2e8;
  border-radius:6px;
  padding:4px 11px;
  font-size:12px;
  font-weight:700;
  color:#10233a;
}

/* ===== DOWNLOAD CARDS ===== */
.download-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:24px}
.download-card{
  background:#fff;
  border:1px solid #dce2e8;
  border-radius:10px;
  padding:22px 20px;
  box-shadow:0 6px 16px rgba(16,32,51,.07);
  display:flex;
  flex-direction:column;
  gap:8px;
}
.download-card i{color:var(--gold);font-size:30px}
.download-card h3{font-family:"Cinzel",serif;font-size:15px;margin:0;color:#10233a;line-height:1.3}
.download-card p{font-size:13px;color:#5c6673;margin:0;flex:1;line-height:1.45}
.btn-download{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:var(--gold);
  font-size:12.5px;
  font-weight:700;
  border:1px solid var(--gold);
  border-radius:6px;
  padding:6px 14px;
  align-self:flex-start;
}
.btn-download:hover{background:rgba(199,145,53,.08)}

/* ===== CONTACT OFFICES ===== */
.contact-offices{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-top:24px}
.office-card{
  background:#fff;
  border:1px solid #dce2e8;
  border-radius:12px;
  padding:28px 24px;
  box-shadow:0 8px 20px rgba(16,32,51,.08);
}
.office-card h3{
  font-family:"Cinzel",serif;
  font-size:18px;
  margin:0 0 18px;
  color:#10233a;
  padding-bottom:8px;
  border-bottom:2px solid var(--gold);
}
.office-detail{display:flex;gap:12px;align-items:flex-start;margin-bottom:13px}
.office-detail i{color:var(--gold);font-size:18px;margin-top:3px;min-width:20px}
.office-detail p{margin:0;font-size:13.5px;line-height:1.5;color:#2a3a4a}
.office-detail a{color:var(--gold);font-weight:600}
.btn-whatsapp{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:linear-gradient(135deg,#25d366,#1da851);
  color:#fff;
  border-radius:7px;
  padding:11px 20px;
  font-weight:800;
  font-size:14px;
  margin-top:8px;
}
.btn-whatsapp i{font-size:18px}

/* ===== RESPONSIVE (new pages) ===== */
@media (max-width: 1020px){
  .nav-card-grid{grid-template-columns:repeat(3,1fr)}
  .three-col,.four-col,.timeline-wrap,.bio-layout,.download-grid,.contact-offices{grid-template-columns:1fr}
  .two-col{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr}
  .page-hero h1{font-size:32px}
}
@media (max-width: 640px){
  .nav-card-grid{grid-template-columns:repeat(2,1fr)}
  .page-hero h1{font-size:26px}
  .page-hero{padding:36px 0 28px}
  .page-section{padding:30px 0}
  .cta-band{padding:28px 0}
  .cta-band h2{font-size:22px}
  .bio-photo-wrap{position:static}
  .download-grid,.three-col,.four-col{grid-template-columns:1fr}
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float{
  position:fixed;
  bottom:28px;
  right:28px;
  width:58px;
  height:58px;
  background:linear-gradient(135deg,#25d366,#128c44);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 18px rgba(0,0,0,.32);
  z-index:200;
  transition:transform .2s,box-shadow .2s;
}
.whatsapp-float:hover{
  transform:scale(1.1);
  box-shadow:0 8px 28px rgba(0,0,0,.38);
}
.whatsapp-float i{color:#fff;font-size:28px}
