
:root{
  --navy:#04111f;
  --navy2:#071a31;
  --blue:#0057b8;
  --blue2:#0085ff;
  --gold:#d7ad5d;
  --gold2:#f1cf87;
  --ink:#101828;
  --muted:#667085;
  --soft:#f4f7fb;
  --line:rgba(15,23,42,.12);
  --white:#fff;
  --shadow:0 26px 90px rgba(2,12,27,.18);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:#fff;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.header{
  position:fixed;
  inset:0 0 auto 0;
  z-index:50;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(15,23,42,.08);
}
.nav{
  max-width:1220px;
  margin:0 auto;
  padding:15px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--navy);
  font-weight:950;
  letter-spacing:-.045em;
}
.brand-mark{
  width:42px;
  height:42px;
  border-radius:15px;
  background:linear-gradient(135deg,var(--blue),var(--blue2));
  display:grid;
  place-items:center;
  color:#fff;
  box-shadow:0 14px 38px rgba(0,87,184,.28);
}
.nav-links{
  display:flex;
  align-items:center;
  gap:19px;
  color:#344054;
  font-size:14px;
  font-weight:850;
}
.nav-cta{
  background:var(--navy);
  color:#fff;
  padding:10px 15px;
  border-radius:999px;
}
.hero{
  min-height:100vh;
  position:relative;
  overflow:hidden;
  color:white;
  background:var(--navy);
}
.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.05) contrast(1.06);
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(4,17,31,.98) 0%,rgba(4,17,31,.80) 43%,rgba(4,17,31,.28) 100%),
    radial-gradient(circle at 18% 24%,rgba(0,133,255,.50),transparent 28%),
    radial-gradient(circle at 70% 90%,rgba(215,173,93,.28),transparent 30%);
}
.hero-content{
  position:relative;
  z-index:2;
  max-width:1220px;
  min-height:100vh;
  margin:0 auto;
  padding:150px 22px 74px;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:46px;
  align-items:end;
}
.eyebrow{
  display:inline-flex;
  width:max-content;
  max-width:100%;
  padding:8px 13px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.08);
  color:rgba(255,255,255,.88);
  font-weight:950;
  font-size:13px;
  letter-spacing:.065em;
  text-transform:uppercase;
}
.hero h1{
  margin:20px 0 16px;
  font-size:clamp(55px,9vw,120px);
  line-height:.86;
  letter-spacing:-.09em;
}
.hero h1 span{
  display:block;
  color:var(--gold2);
}
.hero-lead{
  max-width:720px;
  margin:0 0 28px;
  color:rgba(255,255,255,.86);
  font-size:clamp(18px,2vw,24px);
  line-height:1.46;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:13px 18px;
  border-radius:999px;
  font-weight:950;
  transition:.2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:#fff;color:var(--navy)}
.btn-secondary{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.24);color:#fff}
.player-card{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  border-radius:32px;
  padding:24px;
  backdrop-filter:blur(18px);
  box-shadow:var(--shadow);
}
.badge-title{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
}
.badge-icon{
  width:52px;
  height:52px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--navy);
  font-weight:950;
}
.badge-title h2{
  margin:0;
  font-size:25px;
  line-height:1;
  letter-spacing:-.045em;
}
.badge-title p{
  margin:4px 0 0;
  color:rgba(255,255,255,.72);
}
.stats{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.stat{
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
}
.stat b{
  display:block;
  font-size:23px;
  letter-spacing:-.045em;
}
.stat small{
  color:rgba(255,255,255,.72);
  font-weight:800;
}
section{padding:94px 22px}
.wrap{max-width:1220px;margin:0 auto}
.section-title{
  max-width:850px;
  margin-bottom:34px;
}
.kicker{
  color:var(--blue);
  text-transform:uppercase;
  font-size:13px;
  letter-spacing:.13em;
  font-weight:950;
}
h2{
  margin:10px 0 12px;
  font-size:clamp(36px,5vw,66px);
  line-height:.95;
  letter-spacing:-.068em;
}
.section-title p{
  color:var(--muted);
  font-size:18px;
  line-height:1.68;
}
.profile-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:30px;
  align-items:start;
}
.profile-photo{
  border-radius:34px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.profile-photo img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
}
.bio-copy{
  color:#475467;
  font-size:18px;
  line-height:1.8;
}
.info-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:22px;
}
.info-tile{
  padding:18px;
  border:1px solid var(--line);
  border-radius:22px;
  background:#fff;
}
.info-tile strong{
  display:block;
  color:var(--navy);
  margin-bottom:5px;
}
.info-tile span{color:var(--muted)}
.soft{background:var(--soft)}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:25px;
  box-shadow:0 12px 42px rgba(15,23,42,.06);
}
.card h3{
  margin:0 0 10px;
  color:var(--navy);
  letter-spacing:-.035em;
}
.card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}
.timeline{
  display:grid;
  gap:16px;
}
.timeline-item{
  display:grid;
  grid-template-columns:150px 1fr;
  gap:18px;
  padding:22px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
}
.timeline-item time{
  font-weight:950;
  color:var(--blue);
}
.timeline-item h3{
  margin:0 0 8px;
  letter-spacing:-.035em;
}
.timeline-item p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}
.news-grid,.social-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.news-card,.social-card{
  display:flex;
  flex-direction:column;
  min-height:250px;
  padding:22px;
  border:1px solid var(--line);
  border-radius:26px;
  background:#fff;
  box-shadow:0 12px 42px rgba(15,23,42,.055);
}
.news-top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.news-top span{
  color:var(--blue);
  font-weight:950;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.news-top small{
  color:var(--muted);
  font-weight:750;
}
.news-card h3,.social-card strong{
  margin:0 0 10px;
  color:var(--navy);
  font-size:22px;
  letter-spacing:-.045em;
}
.news-card p,.social-card p{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.62;
}
.news-meta,.social-card span{
  margin-top:auto;
  color:#344054;
  font-weight:900;
}
.news-card a{
  margin-top:16px;
  color:var(--blue);
  font-weight:950;
}
.social-card:hover,.news-card:hover{
  transform:translateY(-3px);
  transition:.2s ease;
}
.agency{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  align-items:stretch;
}
.agency-box{
  border-radius:32px;
  padding:34px;
  background:linear-gradient(135deg,var(--navy),var(--blue));
  color:#fff;
  box-shadow:var(--shadow);
}
.agency-box h3{
  margin:0 0 12px;
  font-size:34px;
  letter-spacing:-.055em;
}
.agency-box p{
  margin:0 0 18px;
  color:rgba(255,255,255,.80);
  line-height:1.7;
}
.agency-list{
  display:grid;
  gap:12px;
}
.agency-list div{
  padding:18px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
}
.agency-list strong{
  display:block;
  color:var(--navy);
  margin-bottom:6px;
}
.agency-list span{
  color:var(--muted);
}
.gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.gallery a{
  overflow:hidden;
  border-radius:24px;
  background:#ddd;
}
.gallery img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  transition:.35s ease;
}
.gallery a:nth-child(4n+1){grid-row:span 2}
.gallery a:nth-child(4n+1) img{aspect-ratio:4/6.25}
.gallery a:hover img{transform:scale(1.045)}
.cta{
  background:linear-gradient(135deg,var(--navy),var(--blue));
  color:#fff;
  border-radius:36px;
  padding:48px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:24px;
  align-items:center;
  box-shadow:var(--shadow);
}
.cta h2{
  margin:0 0 10px;
  font-size:clamp(34px,5vw,58px);
}
.cta p{
  margin:0;
  color:rgba(255,255,255,.78);
  line-height:1.65;
}
.footer{
  padding:34px 22px;
  background:var(--navy);
  color:rgba(255,255,255,.68);
}
.footer-inner{
  max-width:1220px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  font-size:14px;
}
.lightbox{
  position:fixed;
  inset:0;
  z-index:100;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.88);
  padding:24px;
}
.lightbox.active{display:flex}
.lightbox img{
  max-height:90vh;
  max-width:94vw;
  border-radius:18px;
}
.lightbox button{
  position:absolute;
  top:18px;
  right:18px;
  width:46px;
  height:46px;
  border:0;
  border-radius:999px;
  font-size:22px;
  cursor:pointer;
}
@media(max-width:900px){
  .nav-links a:not(.nav-cta){display:none}
  .hero-content{
    grid-template-columns:1fr;
    padding-top:125px;
  }
  .profile-grid,.cards,.news-grid,.social-grid,.agency,.gallery,.cta{
    grid-template-columns:1fr;
  }
  .timeline-item{
    grid-template-columns:1fr;
  }
  .info-grid{
    grid-template-columns:1fr;
  }
  .cta{padding:32px}
}


/* SANTIAGOFERRO - GALERIA TEMPORARIAMENTE PAUSADA */
body.gallery-pending .hero{
  background:
    radial-gradient(circle at 20% 20%, rgba(0,133,255,.45), transparent 30%),
    radial-gradient(circle at 72% 80%, rgba(215,173,93,.28), transparent 32%),
    linear-gradient(135deg, #04111f 0%, #071a31 48%, #003b79 100%);
}
body.gallery-pending .hero::after{
  background:
    linear-gradient(90deg,rgba(4,17,31,.96) 0%,rgba(4,17,31,.80) 50%,rgba(4,17,31,.40) 100%),
    radial-gradient(circle at 20% 20%,rgba(0,133,255,.40),transparent 30%);
}
.gallery-paused{
  display:block!important;
}
.gallery-pending-box{
  border:1px dashed rgba(0,87,184,.35);
  border-radius:28px;
  padding:34px;
  background:linear-gradient(135deg,rgba(0,87,184,.08),rgba(215,173,93,.10));
  color:#344054;
}
.gallery-pending-box strong{
  display:block;
  color:#061629;
  font-size:28px;
  letter-spacing:-.04em;
  margin-bottom:10px;
}
.gallery-pending-box p{
  margin:0 0 14px;
  color:#667085;
  line-height:1.65;
}
.gallery-pending-box span{
  display:inline-flex;
  padding:9px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  font-weight:850;
  color:#061629;
}
.photo-credit-badge{
  position:absolute;
  left:10px;
  bottom:10px;
  max-width:calc(100% - 20px);
  padding:7px 9px;
  border-radius:999px;
  background:rgba(4,17,31,.78);
  color:#fff;
  font-size:11px;
  font-weight:800;
  backdrop-filter:blur(10px);
}

/* SANTIAGOFERRO - GALERIA OFICIAL COM CRÉDITO FOTOGRÁFICO */
.gallery .gallery-item{
  position:relative;
  display:block;
}
.gallery .gallery-item img{
  width:100%;
}
.photo-credit-badge{
  position:absolute;
  left:10px;
  bottom:10px;
  max-width:calc(100% - 20px);
  padding:7px 9px;
  border-radius:999px;
  background:rgba(4,17,31,.78);
  color:#fff;
  font-size:11px;
  font-weight:850;
  line-height:1.2;
  backdrop-filter:blur(10px);
  box-shadow:0 10px 26px rgba(0,0,0,.18);
}
.footer a{
  color:rgba(255,255,255,.88);
  font-weight:850;
}
@media(max-width:700px){
  .photo-credit-badge{
    font-size:10px;
    padding:6px 8px;
  }
}

/* SANTIAGO FERRO - LOGO + FAVICON */
.sf-page-logo{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:min(260px,64vw);
  max-width:260px;
  margin:0 0 24px;
  position:relative;
  z-index:5;
  text-decoration:none;
}
.sf-page-logo img{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 18px 34px rgba(0,0,0,.28));
}
@media(max-width:760px){
  .sf-page-logo{
    width:min(210px,72vw);
    margin-bottom:18px;
  }
}

/* SANTIAGOFERRO - FORCE HEADER LOGO VISIBLE */
.header{
  min-height:78px!important;
}

.nav{
  min-height:78px!important;
  align-items:center!important;
}

.brand{
  gap:14px!important;
  align-items:center!important;
}

.brand span:last-child{
  font-size:15px!important;
  font-weight:950!important;
  letter-spacing:-.02em!important;
  color:#061629!important;
}

.brand-mark.brand-mark-logo{
  width:64px!important;
  height:64px!important;
  min-width:64px!important;
  min-height:64px!important;
  max-width:64px!important;
  max-height:64px!important;
  border-radius:999px!important;
  background:#ffffff!important;
  border:2px solid rgba(0,87,184,.24)!important;
  box-shadow:
    0 12px 28px rgba(0,0,0,.20),
    0 0 0 4px rgba(255,255,255,.72),
    inset 0 0 0 1px rgba(255,255,255,.95)!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  padding:5px!important;
  overflow:hidden!important;
  line-height:1!important;
}

.brand-mark.brand-mark-logo img{
  width:54px!important;
  height:54px!important;
  min-width:54px!important;
  min-height:54px!important;
  max-width:54px!important;
  max-height:54px!important;
  display:block!important;
  object-fit:contain!important;
  transform:scale(1.12)!important;
  filter:
    drop-shadow(0 2px 4px rgba(0,0,0,.24))
    contrast(1.12)
    saturate(1.18)!important;
}

@media(max-width:760px){
  .header{
    min-height:68px!important;
  }

  .nav{
    min-height:68px!important;
  }

  .brand{
    gap:10px!important;
  }

  .brand span:last-child{
    font-size:14px!important;
  }

  .brand-mark.brand-mark-logo{
    width:54px!important;
    height:54px!important;
    min-width:54px!important;
    min-height:54px!important;
    max-width:54px!important;
    max-height:54px!important;
    padding:4px!important;
  }

  .brand-mark.brand-mark-logo img{
    width:46px!important;
    height:46px!important;
    min-width:46px!important;
    min-height:46px!important;
    max-width:46px!important;
    max-height:46px!important;
  }
}

/* SANTIAGOFERRO - HERO LOGO TOP */
.hero-logo-top{
  display:flex!important;
  align-items:center!important;
  justify-content:flex-start!important;
  margin:0 0 16px!important;
  position:relative!important;
  z-index:4!important;
}

.hero-logo-top img{
  width:92px!important;
  height:auto!important;
  display:block!important;
  object-fit:contain!important;
  filter:
    drop-shadow(0 12px 24px rgba(0,0,0,.32))
    contrast(1.08)
    saturate(1.12)!important;
}

@media(max-width:760px){
  .hero-logo-top{
    margin:0 0 12px!important;
  }

  .hero-logo-top img{
    width:74px!important;
  }
}

