:root{
  --bg:#f6f1e8;
  --surface:#ffffff;
  --surface-soft:#fbf7f1;
  --text:#22212a;
  --muted:#6d675f;
  --primary:#6d261f;
  --primary-2:#8a3a31;
  --accent:#c6a15b;
  --line:rgba(34,33,42,.09);
  --shadow-soft:0 14px 40px rgba(0,0,0,.06);
  --shadow-card:0 18px 50px rgba(0,0,0,.08);
  --max:1280px;
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
}

html,body{
  margin:0;
  padding:0;
}

body.corp-light{
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',sans-serif;
  line-height:1.5;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

.wrap,
.corp-wrap{
  width:min(var(--max), calc(100% - 44px));
  margin-inline:auto;
}

section{
  padding:88px 0;
}

/* ===== Header ===== */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(248,245,239,.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,.05);
}

.bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  padding:14px 0;
  min-height:82px;
}

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

.logo-badge{
  width:54px;
  height:54px;
  border-radius:14px;
  background:#F1EDE6;
  border:1px solid #E7E1D7;
  display:grid;
  place-items:center;
  overflow:hidden;
  box-shadow:0 8px 22px rgba(0,0,0,.08);
}

.logo-badge img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.brand-name{
  font-family:'Playfair Display',serif;
  letter-spacing:.18em;
  font-size:18px;
  color:#b59664;
  white-space:nowrap;
}

.navlist{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  gap:48px;
}

.navlist a{
  position:relative;
  color:#bf9f6b;
  font-weight:600;
  font-size:18px;
  padding:6px 0;
  transition:color .25s ease;
}

.navlist a:hover{
  color:#a7864f;
}

.navlist a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:0;
  height:2px;
  background:#c6a15b;
  transition:width .28s ease;
}

.navlist a:hover::after,
.navlist a.is-current::after{
  width:100%;
}

.lang-switch{
  display:flex;
  align-items:center;
  gap:8px;
}

.lang-btn{
  min-width:62px;
  height:38px;
  padding:0 14px;
  border:none;
  border-radius:999px;
  background:#c9c3bb;
  color:#fff;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  transition:transform .2s ease, background .2s ease, opacity .2s ease;
}

.lang-btn:hover{
  transform:translateY(-1px);
  opacity:.92;
}

.lang-btn.is-active{
  background:var(--primary);
  color:#fff;
}

/* ===== Reveal ===== */
.reveal,
.corp-reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1);
}

.fade-right{
  transform:translateX(28px);
}

.is-visible,
.reveal-in{
  opacity:1;
  transform:none;
}

.reveal[data-reveal-delay]{
  transition-delay:var(--rv-delay, 0ms);
}

/* ===== Hero ===== */
.corporativo{
  padding:18px 0 42px;
  background:#f6f1e8;
}

.corp-hero{
  width:min(1360px, calc(100% - 64px));
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(420px, 560px) minmax(520px, 1fr);
  align-items:center;
  gap:64px;
}

.corp-hero-copy{
  max-width:560px;
}

.corp-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 18px;
  border-radius:16px;
  background:#b99133;
  color:#ffffff;
  font-size:14px;
  font-weight:700;
  margin-bottom:22px;
  box-shadow:0 8px 18px rgba(185,145,51,.22);
}

.corp-title{
  margin:0 0 18px;
  font-family:'Playfair Display', serif;
  font-size:clamp(60px, 5.6vw, 92px);
  line-height:.93;
  letter-spacing:-.03em;
  color:#111111;
  max-width:7.2ch;
}

.corp-sub{
  margin:0;
  max-width:24ch;
  color:#47423c;
  font-size:19px;
  line-height:1.68;
  font-weight:400;
  text-align:left;
}

.corp-sub strong{
  font-weight:700;
  color:#25211d;
}

.corp-cta{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:24px;
}

.btn-gold{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 20px;
  border-radius:16px;
  background:#b99133;
  color:#ffffff;
  font-size:15px;
  font-weight:700;
  box-shadow:0 10px 22px rgba(185,145,51,.20);
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btn-gold:hover{
  background:#ad872e;
  transform:translateY(-2px);
  box-shadow:0 14px 26px rgba(185,145,51,.24);
}

.corp-hero-media{
  margin:0;
}

.corp-hero-media img{
  width:100%;
  height:730px;
  object-fit:cover;
  object-position:center;
  border-radius:28px;
  box-shadow:0 24px 50px rgba(0,0,0,.10);
  display:block;
}

/* ===== Shared ===== */
.corp-center{
  text-align:center;
}

.corp-h2{
  margin:0 0 18px;
  font-family:'Playfair Display',serif;
  font-size:clamp(34px, 3vw, 52px);
  line-height:1.04;
  color:#1f1b18;
}

.corp-lead{
  max-width:760px;
  margin:0 auto;
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
  text-align:center;
}

/* ===== Servicios ===== */
.corp-ofrecemos{
  padding-top:70px;
}

.corp-grid-3{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
  margin-top:26px;
}

.corp-card{
  background:rgba(255,255,255,.78);
  border:1px solid var(--line);
  border-radius:24px;
  padding:26px 22px;
  box-shadow:var(--shadow-soft);
  transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.corp-card:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 48px rgba(0,0,0,.09);
  border-color:rgba(198,161,91,.35);
}

.corp-card h3{
  margin:0 0 10px;
  font-family:'Playfair Display',serif;
  font-size:28px;
  line-height:1.1;
  color:#9b742f;
}

.corp-card p{
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.75;
}

/* ===== Story ===== */
.story-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
}

.story-block{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px 22px;
  box-shadow:var(--shadow-soft);
}

.story-block h3{
  margin:0 0 10px;
  font-family:'Playfair Display',serif;
  font-size:26px;
  color:#9b742f;
}

.story-block p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

/* ===== Logos ===== */
.corp-logos{
  padding-top:34px;
  padding-bottom:40px;
}

.corp-logos .corp-wrap{
  max-width:1220px;
}

.corp-logos .corp-h2{
  text-align:center;
  margin-bottom:22px;
}

.logos-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px 34px;
  flex-wrap:wrap;
  margin-top:24px;
  width:100%;
}

.logos-row img{
  width:auto;
  height:64px;
  object-fit:contain;
  background:transparent;
  border:none;
  border-radius:0;
  padding:0;
  box-shadow:none;
  filter:none;
  opacity:1;
  transition:none;
  flex:0 0 auto;
}

.logos-row img:hover{
  transform:none;
  box-shadow:none;
  filter:none;
  opacity:1;
}

/* ===== Método ===== */
.corp-metodo{
  padding-top:70px;
  border-top:1px solid var(--line);
}

.corp-steps{
  list-style:decimal;
  margin:30px 0 0;
  padding-left:28px;
  display:grid;
  gap:18px;
}

.corp-steps > li{
  position:relative;
  background:rgba(255,255,255,.78);
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px 64px 18px 18px;
  box-shadow:var(--shadow-soft);
}

.corp-steps > li::before{
  content:"";
  position:absolute;
  top:16px;
  right:16px;
  width:34px;
  height:34px;
  border-radius:999px;
  background:#c9a14e;
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:700;
}

.corp-steps > li:nth-child(1)::before{ content:"1"; }
.corp-steps > li:nth-child(2)::before{ content:"2"; }
.corp-steps > li:nth-child(3)::before{ content:"3"; }
.corp-steps > li:nth-child(4)::before{ content:"4"; }
.corp-steps > li:nth-child(5)::before{ content:"5"; }

.corp-steps h3{
  margin:0 0 10px;
  font-family:'Playfair Display', serif;
  font-size:20px;
  color:#9b742f;
  line-height:1.15;
}

.corp-steps p{
  margin:0 0 14px;
  color:#2f2b28;
  font-size:15px;
  line-height:1.65;
}

.corp-bullets{
  margin:0;
  padding-left:18px;
  color:#5e5852;
  font-size:14px;
  line-height:1.55;
}

.corp-bullets li{
  margin:3px 0;
}

/* ===== Quote ===== */
.corp-quote{
  padding:82px 0;
}

.corp-bg-map{
  background:
    radial-gradient(circle at top left, rgba(198,161,91,.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(109,38,31,.08), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.3), rgba(255,255,255,.1));
}

.corp-quote blockquote{
  margin:0 auto;
  max-width:900px;
  font-family:'Playfair Display',serif;
  font-size:clamp(32px, 3vw, 50px);
  line-height:1.28;
  color:#221d19;
}

/* ===== CTA final ===== */
.corp-brief{
  padding-top:56px;
  padding-bottom:36px;
  border-top:1px solid var(--line);
}

.corp-brief .corp-wrap{
  max-width:860px;
  margin:0 auto;
  text-align:center;
}

.corp-ctas{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.corp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 20px;
  border-radius:999px;
  font-weight:700;
  transition:transform .22s ease, background .22s ease, color .22s ease;
}

.corp-btn-primary{
  background:var(--primary);
  color:#fff;
  box-shadow:0 10px 24px rgba(109,38,31,.18);
}

.corp-btn-primary:hover{
  background:var(--primary-2);
  transform:translateY(-2px);
}

.corp-btn-ghost{
  background:transparent;
  color:#7e5c2d;
  border:1px solid rgba(126,92,45,.2);
}

.corp-btn-ghost:hover{
  background:#f0e7d8;
}

/* ===== Footer premium ===== */
.site-footer-main{
  background:#e8dfd2;
  border-top:1px solid rgba(122,104,75,.18);
  margin-top:26px;
  padding:58px 0 20px;
}

.footer-grid-main{
  display:grid;
  grid-template-columns:1.4fr .8fr .8fr;
  gap:28px;
  align-items:start;
}

.footer-logo-row{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:16px;
}

.footer-logo-badge{
  width:52px;
  height:52px;
  border-radius:14px;
  overflow:hidden;
  background:#F1EDE6;
  border:1px solid #d8cebf;
  display:grid;
  place-items:center;
}

.footer-logo-badge img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.footer-brand-name{
  font-family:'Playfair Display',serif;
  font-size:21px;
  letter-spacing:.18em;
  color:#b59664;
}

.footer-text{
  max-width:430px;
  color:#5d554d;
  line-height:1.7;
  font-size:15px;
  margin:0;
}

.footer-col-main h3{
  margin:0 0 16px;
  font-family:'Playfair Display',serif;
  font-size:24px;
  color:#2a2825;
}

.footer-col-main ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.footer-col-main a{
  color:#5b5650;
  transition:color .22s ease;
}

.footer-col-main a:hover{
  color:#9b742f;
}

.footer-bottom-main{
  margin-top:28px;
  padding-top:18px;
  border-top:1px solid rgba(122,104,75,.16);
  text-align:center;
  color:#6b6259;
  font-size:14px;
}

/* ===== WhatsApp ===== */
.float-wa{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:50;
}

.btn-wa{
  width:58px;
  height:58px;
  border-radius:50%;
  background:#25D366;
  display:grid;
  place-items:center;
  border:none;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(0,0,0,.22);
  transition:transform .2s ease;
}

.btn-wa:hover{
  transform:translateY(-2px);
}

.btn-wa svg{
  width:28px;
  height:28px;
  fill:#111;
}

/* ===== Responsive ===== */
@media (max-width: 1180px){
  .corp-hero{
    grid-template-columns:1fr;
    gap:34px;
  }

  .corp-hero-copy{
    max-width:100%;
  }

  .corp-title{
    max-width:none;
    font-size:clamp(52px, 9vw, 78px);
  }

  .corp-sub{
    max-width:100%;
  }

  .corp-hero-media img{
    height:560px;
  }

  .corp-grid-3,
  .story-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .logos-row{
    gap:22px 26px;
  }

  .logos-row img{
    height:56px;
  }
}

@media (max-width: 980px){
  .bar{
    flex-wrap:wrap;
    justify-content:center;
    padding:12px 0;
  }

  .brand{
    width:100%;
    justify-content:center;
  }

  nav{
    width:100%;
  }

  .navlist{
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
  }
}

@media (max-width: 740px){
  section{
    padding:68px 0;
  }

  .corporativo{
    padding:14px 0 34px;
  }

  .corp-hero{
    width:min(100%, calc(100% - 32px));
    gap:24px;
  }

  .corp-title{
    font-size:50px;
    line-height:.96;
  }

  .corp-sub{
    font-size:17px;
    line-height:1.62;
    text-align:left;
  }

  .corp-cta,
  .corp-ctas{
    flex-direction:column;
  }

  .btn-gold,
  .corp-btn{
    width:100%;
  }

  .corp-grid-3,
  .story-grid,
  .footer-grid-main{
    grid-template-columns:1fr;
  }

  .corp-h2{
    font-size:34px;
  }

  .corp-card h3,
  .story-block h3{
    font-size:24px;
  }

  .corp-hero-media img{
    height:360px;
    border-radius:22px;
  }

  .logos-row{
    justify-content:center;
    gap:18px 22px;
  }

  .logos-row img{
    height:42px;
  }

  .corp-steps{
    padding-left:22px;
  }

  .corp-steps > li{
    padding:18px 18px 18px 18px;
  }

  .corp-steps > li::before{
    top:14px;
    right:14px;
    width:30px;
    height:30px;
    font-size:13px;
  }
}