/* ==========================================================================
   LADDER — Soluções Financeiras
   ========================================================================== */

:root{
  --cream:      #F5F2EA;
  --panel:      #FFFFFF;
  --ink:        #14151A;
  --muted:      #5B5D63;
  --muted-2:    #8A8C91;
  --gold:       #C6A130;
  --gold-deep:  #9C7D1E;
  --gold-pale:  #EFE1B0;
  --line:       #E6E0D0;
  --shadow:     0 24px 50px -22px rgba(52,42,16,.22);
  --shadow-lg:  0 40px 80px -30px rgba(52,42,16,.32);
  --shadow-gold:0 18px 34px -16px rgba(156,125,30,.45);
  --ease:       cubic-bezier(.22,.85,.32,1);
  --radius:     2px;
  --serif: "Fraunces", "Georgia", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }

::selection{ background: var(--gold); color:#fff; }

/* Custom scrollbar (webkit) */
::-webkit-scrollbar{ width:10px; }
::-webkit-scrollbar-track{ background: var(--cream); }
::-webkit-scrollbar-thumb{ background: var(--gold-deep); border-radius:10px; border:2px solid var(--cream); }

.wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Eyebrows / labels ---------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.eyebrow::before{
  content:"";
  width:7px; height:7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink:0;
}

h1,h2,h3,h4{
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 .5em;
  color: var(--ink);
}

.section-title{
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}

.section-head{
  padding-bottom: 22px;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 48px;
  display:inline-block;
}

p{ line-height: 1.7; color: var(--muted); }

.lead{ font-size: 18px; }

strong{ color: var(--ink); font-weight: 700; }

/* ==========================================================================
   Ladder rail — signature scroll element
   ========================================================================== */
.ladder-rail{
  position: fixed;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.ladder-rail .rung{
  position: relative;
  width: 22px;
  height: 34px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor: pointer;
}
.ladder-rail .rung::before{
  content:"";
  width: 22px;
  height: 2px;
  background: var(--line);
  transition: background .35s ease, width .35s ease;
}
.ladder-rail .rung.active::before{
  background: var(--gold);
  width: 30px;
}
.ladder-rail .rung .tip{
  position:absolute;
  left: 34px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--panel);
  padding: 5px 10px;
  border: 1px solid var(--line);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}
.ladder-rail .rung:hover .tip{
  opacity: 1;
  transform: translateX(0);
}
.ladder-rail .spine{
  position:absolute;
  left: 50%;
  top:0; bottom:0;
  width:1px;
  background: var(--line);
  z-index:-1;
}

@media (max-width: 980px){
  .ladder-rail{ display:none; }
}

/* top scroll progress (mobile + always) */
.progress-bar{
  position: fixed;
  top:0; left:0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  z-index: 100;
  width: 0%;
  transition: width .1s linear;
}

/* ==========================================================================
   Nav
   ========================================================================== */
.site-nav{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(245,242,234,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-nav .wrap{
  display:flex;
  align-items:center;
  justify-content: space-between;
  height: 78px;
}
.nav-logo{
  display:flex;
  align-items:center;
  gap: 10px;
}
.nav-logo-mark{ height: 34px; width:auto; object-fit:contain; }
.nav-logo .word{
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .04em;
}
.nav-logo .sub{
  display:block;
  font-size: 9px;
  letter-spacing: .22em;
  color: var(--muted-2);
  font-weight: 600;
  margin-top: 1px;
}
.nav-links{
  display:flex;
  gap: 32px;
  align-items:center;
}
.nav-links a{
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s ease;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a:not(.nav-cta)::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:0; height:1.5px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover{ color: var(--ink); }
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active::after{ width:100%; }
.nav-links a.active{ color: var(--ink); }
.nav-cta{
  border: 1.5px solid var(--ink) !important;
  padding: 10px 20px;
  color: var(--ink) !important;
  transition: background .2s ease, color .2s ease;
}
.nav-cta:hover{
  background: var(--ink);
  color: var(--cream) !important;
}
.nav-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  width: 32px; height: 24px;
  flex-direction:column;
  justify-content:space-between;
  padding: 2px 0;
}
.nav-toggle span{
  height: 2px;
  width:100%;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-9px) rotate(-45deg); }
@media (max-width: 860px){
  .nav-links{
    position: fixed;
    top: 78px; left:0; right:0;
    background: var(--panel);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 40px 32px;
    gap: 22px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-140%);
    transition: transform .35s ease;
  }
  .nav-links.open{ transform: translateY(0); }
  .nav-toggle{ display:flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  padding: 120px 0 100px;
  text-align:center;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  top:-200px; right:-260px;
  width:640px; height:640px;
  background: radial-gradient(circle, var(--gold-pale) 0%, rgba(239,225,176,0) 70%);
  opacity:.7;
  z-index:0;
}
.hero::after{
  content:"";
  position:absolute;
  left: -70px; bottom: -70px;
  width: 200px; height:200px;
  border: 1px solid var(--gold);
  opacity:.25;
  transform: rotate(45deg);
  z-index:0;
}
.hero .diamond-deco{
  position:absolute;
  width: 70px; height:70px;
  border: 1px solid var(--gold);
  opacity:.3;
  transform: rotate(45deg);
  z-index:0;
}
.hero .diamond-deco.d1{ left: 6%; top: 18%; }
.hero .diamond-deco.d2{ right: 9%; bottom: 14%; width:44px; height:44px; }
.hero .wrap{ position:relative; z-index:1; }
.hero-logo,
.hero .eyebrow,
.hero h1,
.hero .tagline,
.hero-actions{
  opacity:0;
  animation: heroRise .9s var(--ease) forwards;
}
.hero-logo{ animation-delay: .05s; }
.hero .eyebrow{ animation-delay: .2s; }
.hero h1{ animation-delay: .32s; }
.hero .tagline{ animation-delay: .44s; }
.hero-actions{ animation-delay: .56s; }

@keyframes heroRise{
  from{ opacity:0; transform: translateY(18px); }
  to{ opacity:1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce){
  .hero-logo, .hero .eyebrow, .hero h1, .hero .tagline, .hero-actions{
    animation: none; opacity:1;
  }
}
.hero-logo{
  display:flex;
  justify-content:center;
  margin-bottom: 40px;
}
.hero-logo-mark{
  width: 100%;
  max-width: 380px;
  height: auto;
}
.hero-rule{
  width: 90px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 34px;
}
.hero .eyebrow{ justify-content:center; margin: 0 auto 18px; }
.hero h1{
  font-size: clamp(32px, 5vw, 54px);
  max-width: 780px;
  margin: 0 auto 18px;
}
.hero .tagline{
  font-size: 13px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
  margin-bottom: 44px;
}
.hero-actions{
  display:flex;
  gap: 18px;
  justify-content:center;
  flex-wrap: wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 15px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s ease, color .3s ease;
  cursor:pointer;
  border: none;
}
.btn::after{
  content:"→";
  display:inline-block;
  transition: transform .3s var(--ease);
}
.btn:hover::after{ transform: translateX(4px); }
.btn-primary{
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover{
  background: var(--gold-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-ghost{
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn-ghost:hover{
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ==========================================================================
   Sections generic
   ========================================================================== */
section{
  padding: 110px 0;
  position: relative;
}
section.alt{
  background:
    radial-gradient(1100px 480px at 15% -10%, rgba(198,161,48,.05), transparent 60%),
    radial-gradient(900px 420px at 100% 110%, rgba(198,161,48,.04), transparent 60%),
    var(--panel);
}
.divider-line{
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent 60%);
}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 860px){
  .grid-2{ grid-template-columns: 1fr; gap: 40px; }
}

.media-frame{
  position: relative;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.media-frame img{ width:100%; height:100%; object-fit:cover; }
.media-frame::after{
  content:"";
  position:absolute; inset:0;
  border: 1px solid rgba(198,161,48,.35);
  pointer-events:none;
}

/* -------- Nossa Historia -------- */
.historia-grid{ align-items: start; }
.historia-media p{ margin-top: 18px; font-size: 15px; }
.painting-plaque{
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 13px;
  color: var(--muted-2);
  text-align: center;
}
.painting-plaque em{ font-style: italic; }
.pillar-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 640px){ .pillar-grid{ grid-template-columns: 1fr; } }
.pillar-card{
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 30px 26px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.pillar-card:hover{
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.pillar-card h3{ font-size: 18px; margin-bottom: 10px; }
.pillar-card p{ font-size: 14px; margin: 0; }

/* -------- Lideranca -------- */
.lideranca-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.tenure-badge{
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  padding: 16px 22px;
  max-width: 360px;
}
.tenure-badge strong,
.tenure-badge b{ color: var(--gold); }
.leader-photo{
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.leader-photo img{ width:100%; }
.leader-card{ text-align:center; flex-shrink: 0; width: 220px; }
.leader-name{
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 18px;
}
.leader-role{
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--gold-deep);
  font-weight: 700;
  text-transform: uppercase;
}
.timeline-wrap{
  display:flex;
  gap: 46px;
  align-items: flex-start;
}
@media (max-width: 900px){
  .timeline-wrap{ flex-direction: column; align-items:center; }
}
.timeline-track{
  display:flex;
  flex: 1;
  gap: 4px;
  position: relative;
  padding-top: 26px;
}
.timeline-track::before{
  content:"";
  position:absolute;
  top:0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
}
@media (max-width: 900px){ .timeline-track{ flex-direction: column; width:100%; } }
.timeline-item{
  flex: 1;
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 22px 20px;
}
.timeline-item::before{
  content:"";
  position:absolute;
  top: -30px; left: 20px;
  width: 10px; height:10px;
  background: var(--gold);
  transform: rotate(45deg);
}
.timeline-item.dark{ background: var(--ink); border-color: var(--ink); }
.timeline-item.dark h4, .timeline-item.dark p{ color: var(--cream); }
.timeline-item.gold{ background: linear-gradient(135deg, var(--gold-deep), var(--gold)); border-color: var(--gold); }
.timeline-item.gold h4, .timeline-item.gold p{ color: #fff; }
.timeline-item h4{
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 10px;
}
.timeline-item h4 span{ display:block; font-weight:600; letter-spacing:.06em; opacity:.7; font-size:11px; margin-top:2px; }
.timeline-item p{ font-size: 13px; margin:0; }
.timeline-item.dark p, .timeline-item.gold p{ color: rgba(255,255,255,.85); }

/* -------- Missao: quote + podium -------- */
.mission-quote{
  text-align:center;
  max-width: 780px;
  margin: 0 auto 70px;
}
.mission-quote blockquote{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2.4vw, 25px);
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 14px;
}
.mission-quote cite{
  font-style: normal;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
}
.podium-grid{
  display:flex;
  align-items: flex-end;
  justify-content:center;
  gap: 28px;
}
@media (max-width: 860px){
  .podium-grid{ flex-direction:column-reverse; align-items:stretch; }
}
.podium-col{
  flex: 1;
  max-width: 280px;
  display:flex;
  flex-direction:column;
  align-items:center;
}
@media (max-width: 860px){ .podium-col{ max-width:none; } }
.podium-step{
  width: 100%;
  margin-top: 18px;
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 40%, #F0DE9C 52%, var(--gold) 64%, var(--gold-deep) 100%);
  box-shadow: var(--shadow);
  position: relative;
}
.podium-step::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,0) 40%);
}
.podium-step.step-1{ height: 26px; }
.podium-step.step-2{ height: 52px; }
.podium-step.step-3{ height: 78px; }
@media (max-width: 860px){ .podium-step{ display:none; } }
.mission-card{
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 40px 28px;
  text-align:center;
  width: 100%;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.mission-card:hover{
  transform: translateY(-7px) scale(1.015);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.mission-card .icon{
  width: 48px; height:48px;
  margin: 0 auto 20px;
  color: var(--gold);
}
.mission-card h3{
  font-size: 21px;
  color: var(--gold-deep);
}
.mission-card p{ font-size: 14.5px; margin:0; }

/* -------- Ecossistema (hub + spokes) -------- */
.ecosystem-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas:
    ".    top   ."
    "left hub   right"
    "bl   .     br";
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.node-top{ grid-area: top; }
.node-left{ grid-area: left; align-self:center; }
.node-right{ grid-area: right; align-self:center; }
.node-bottom-left{ grid-area: bl; }
.node-bottom-right{ grid-area: br; }
.eco-hub{ grid-area: hub; }

@media (max-width: 760px){
  .ecosystem-grid{
    grid-template-columns: 1fr;
    grid-template-areas: "hub" "top" "left" "right" "bl" "br";
  }
}

.eco-node{
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 26px 22px;
  text-align:center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.eco-node:hover{
  transform: translateY(-6px) scale(1.015);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.eco-node .icon{ width:32px; height:32px; color: var(--gold-deep); margin: 0 auto 14px; }
.eco-node h4{
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 800;
  margin: 0 0 4px;
}
.eco-node span{
  display:block;
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: .03em;
}
.eco-hub{
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.eco-hub-diamond{
  width: 132px;
  height: 132px;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold) 45%, #E8CE7A 55%, var(--gold-deep));
  transform: rotate(45deg);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}
.eco-hub-diamond span{
  transform: rotate(-45deg);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  line-height: 1.25;
  text-align:center;
  padding: 0 12px;
}
.eco-hub p{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin:0;
}
.callout{
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 22px 26px;
  margin-top: 26px;
}
.callout h4{
  font-family: var(--sans);
  font-weight: 800;
  font-size: 15px;
  margin: 0 0 8px;
}
.callout p{ margin:0; font-size: 14.5px; }

/* -------- Tax card (revisao tributaria) -------- */
.tax-card{
  background: var(--panel);
  border: 1.5px solid var(--gold);
  padding: 44px 38px;
  text-align:center;
  box-shadow: var(--shadow);
}
.tax-card .icon{
  width: 46px; height:46px;
  margin: 0 auto 20px;
  color: var(--gold-deep);
}
.tax-card h4{
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.tax-card-rule{
  width: 60px;
  height: 1px;
  background: var(--line);
  margin: 0 auto 20px;
}
.tax-card p{ font-size: 14.5px; margin-bottom: 12px; }
.tax-card p:last-child{ margin-bottom: 0; }

/* -------- Chevron process (credito estruturado) -------- */
.chevron-row{
  display:flex;
  gap: 6px;
  margin-bottom: 44px;
}
@media (max-width: 760px){ .chevron-row{ flex-direction:column; gap: 3px; } }
.chevron-step{
  flex:1;
  background: var(--ink);
  color: var(--cream);
  padding: 34px 34px 34px 44px;
  clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%, 10% 50%);
}
.chevron-step:first-child{ clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%); padding-left: 34px; }
@media (max-width: 760px){
  .chevron-step, .chevron-step:first-child{ clip-path:none; padding: 30px 28px; }
}
.chevron-step .icon{ width:36px; height:36px; color: var(--gold); margin-bottom:16px; }
.chevron-step h4{ font-size:16px; font-weight:800; margin-bottom:8px; color:#fff; }
.chevron-step p{ font-size:14px; margin:0; color: rgba(255,255,255,.75); }
.chevron-quote{
  background: var(--ink);
  color: #fff;
  font-family: var(--serif);
  font-style: italic;
  text-align:center;
  font-size: clamp(15px,1.6vw,18px);
  padding: 30px 40px;
  border-left: 3px solid var(--gold);
}

/* -------- Check list (credito) -------- */
.check-list li{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
}
.check-list .tick{
  width: 22px; height:22px;
  flex-shrink:0;
  border-radius:50%;
  background: var(--gold);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 12px;
}

/* -------- Patrimoniais / two cards -------- */
.two-card-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 860px){ .two-card-grid{ grid-template-columns:1fr; } }
.feature-card{
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 38px 32px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.feature-card:hover{
  transform: translateY(-7px) scale(1.015);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.feature-card{ text-align:center; }
.feature-card .icon{ width:40px; height:40px; color: var(--gold); margin: 20px auto 14px; }
.feature-card h3{ font-size: 21px; margin-bottom:0; }
.feature-subtitle{
  display:block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.feature-card p{ font-size:14.5px; margin:0; }

/* -------- Giro e Protecao -------- */
.giro-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
@media (max-width: 860px){ .giro-grid{ grid-template-columns:1fr; } }
.giro-card{
  background: var(--ink);
  color: var(--cream);
  padding: 40px 38px;
}
.giro-card.center{ text-align:center; display:flex; flex-direction:column; align-items:center; }
.giro-card-title{
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.giro-row{
  display:flex;
  gap: 16px;
  margin-bottom: 30px;
}
.giro-row:last-child{ margin-bottom:0; }
.giro-row .icon{ width:26px; height:26px; color: var(--gold); flex-shrink:0; margin-top:2px; }
.giro-row b{ display:block; font-size:15px; color:#fff; margin-bottom:4px; }
.giro-row p{ margin:0; font-size:13.5px; color: rgba(255,255,255,.65); }
.giro-card.center .icon.big{ width:56px; height:56px; color: var(--gold); margin-bottom:18px; }
.giro-card.center h3{ color:#fff; font-size:22px; }
.giro-card.center p{ color: rgba(255,255,255,.7); font-size:14.5px; max-width:320px; }
.tag-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-top:24px;
}
.tag{
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12.5px;
  font-weight:600;
  padding: 7px 16px;
  border-radius: 999px;
}

/* -------- Cambio -------- */
.cambio-cols{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 860px){ .cambio-cols{ grid-template-columns:1fr; gap:40px; } }
.person-row{
  display:flex;
  gap: 14px;
  margin-top: 22px;
}
.person-row .icon{ width:22px; height:22px; color: var(--gold-deep); flex-shrink:0; margin-top:3px; }
.person-row b{ display:block; font-size:15px; margin-bottom:2px; }
.person-row p{ margin:0; font-size:14px; }
.cambio-label{
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.orbit-wrap{ display:flex; justify-content:center; margin-top: 30px;}

/* -------- Foco de atuacao -------- */
.foco-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 26px;
}
@media (max-width: 860px){ .foco-grid{ grid-template-columns:1fr; } }
.foco-card{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/3.5;
  box-shadow: var(--shadow);
}
.foco-card img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .6s ease;
}
.foco-card:hover img{ transform: scale(1.08); }
.foco-card::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(20,21,26,0) 40%, rgba(20,21,26,.75) 100%);
}
.foco-card span{
  position:absolute;
  bottom: 22px; left:0; right:0;
  text-align:center;
  z-index:2;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .02em;
}

/* -------- Valor agregado -------- */
.value-panel{
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 54px;
  max-width: 920px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.value-title{
  text-align:center;
  font-size: 18px;
  color: var(--ink);
  font-weight:600;
  margin-bottom: 46px;
}
.bar-row{ margin-bottom: 30px; }
.bar-row:last-child{ margin-bottom: 0; }
.bar-row .label{
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}
.bar-row.ladder .label{ color: var(--gold-deep); }
.bar-track{
  background: #EDEAE0;
  height: 34px;
  border-radius: 2px;
  overflow:hidden;
  position:relative;
}
.bar-fill{
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  display:flex;
  align-items:center;
  justify-content:flex-end;
  padding-right: 14px;
  color:#fff;
  font-size:13px;
  font-weight:700;
  transition: width 1.4s cubic-bezier(.16,.84,.44,1);
}
.value-note{
  text-align:center;
  font-size: 13px;
  font-style: italic;
  color: var(--muted-2);
  margin: 36px 0 0;
}

.value-table{
  margin-top: 46px;
  border-top: 1px solid var(--line);
}
.value-table-row{
  display:grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
@media (max-width: 700px){
  .value-table-row{ grid-template-columns:1fr; gap:6px; padding: 16px 0; }
}
.value-table-row.head{
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.value-table-row.head div:first-child{ color: var(--ink); }
.value-table-row .row-label{ font-weight: 700; color: var(--ink); }
.value-table-row div:last-child{ color: var(--ink); }
.value-table-row:not(.head) div:nth-child(2){ color: var(--muted); }

/* -------- Quote -------- */
.quote-section{
  background: var(--ink);
  color: var(--cream);
  text-align:center;
  padding: 130px 0;
}
.quote-mark{
  font-family: var(--serif);
  font-size: 90px;
  color: var(--gold);
  line-height:1;
  margin-bottom: 6px;
}
.quote-section blockquote{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  max-width: 780px;
  margin: 0 auto 30px;
  line-height: 1.5;
  color: #fff;
}
.quote-section cite{
  font-style:normal;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

/* -------- Contact -------- */
.contact-section{
  text-align:center;
  padding-bottom: 140px;
}
.contact-section .section-head{ margin-bottom: 30px; }
.contact-tagline{
  font-size: 14px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight:600;
  margin-bottom: 40px;
}
.stair-icon{ margin: 0 auto 60px; width:46px; height:46px; color: var(--gold); }
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 60px;
  max-width: 700px;
  margin: 0 auto;
  text-align:left;
}
@media (max-width: 640px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-item{
  display:flex;
  align-items:center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item .icon{
  width: 22px; height:22px;
  color: var(--gold-deep);
  flex-shrink:0;
}
.contact-item a{ font-weight:600; font-size:15px; }
.contact-item a:hover{ color: var(--gold-deep); }

footer{
  padding: 34px 0;
  text-align:center;
  font-size: 12px;
  color: var(--muted-2);
  border-top: 1px solid var(--line);
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in{
  opacity: 1;
  transform: translateY(0);
}

/* Gentle stagger for repeated card grids */
.pillar-grid .pillar-card:nth-child(2),
.podium-col:nth-child(2),
.foco-card:nth-child(2),
.two-card-grid .feature-card:nth-child(2),
.giro-grid .giro-card:nth-child(2){ transition-delay: .08s; }
.pillar-grid .pillar-card:nth-child(3),
.podium-col:nth-child(3),
.foco-card:nth-child(3){ transition-delay: .16s; }
.pillar-grid .pillar-card:nth-child(4){ transition-delay: .24s; }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
}

/* focus visibility */
a:focus-visible, button:focus-visible{
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

@media (max-width: 600px){
  .wrap{ padding: 0 22px; }
  section{ padding: 80px 0; }
  .value-panel{ padding: 32px 22px; }
}

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.whatsapp-float{
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -6px rgba(20,21,26,.45);
  z-index: 90;
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float::before{
  content:"";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: .55;
  animation: wa-pulse 2.4s ease-out infinite;
  z-index: -1;
}
.whatsapp-float:hover{
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 30px -6px rgba(20,21,26,.5);
}

@keyframes wa-pulse{
  0%   { transform: scale(1);   opacity: .55; }
  100% { transform: scale(1.7); opacity: 0;   }
}

@media (max-width: 600px){
  .whatsapp-float{
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce){
  .whatsapp-float::before{ animation: none; display:none; }
}

/* ==========================================================================
   Floating "Simular" button
   ========================================================================== */
.simulate-float{
  position: fixed;
  right: 26px;
  bottom: 98px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--gold-pale);
  border: 1px solid var(--gold);
  padding: 13px 20px 13px 15px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.simulate-float svg{ color: var(--gold); flex-shrink:0; }
.simulate-float-label{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  white-space: nowrap;
}
.simulate-float:hover{
  transform: translateY(-3px) scale(1.03);
  background: var(--gold-deep);
  color: #fff;
  box-shadow: 0 20px 40px -10px rgba(20,21,26,.5);
}
.simulate-float:hover svg{ color:#fff; }

@media (max-width: 600px){
  .simulate-float{
    right: 18px;
    bottom: 82px;
    padding: 11px 16px 11px 13px;
  }
  .simulate-float-label{ font-size: 12px; }
}

/* Value section CTA */
.value-cta{
  text-align: center;
  margin-top: 40px;
}

