
:root{
  --orange:#e97401;
  --green:#5d7a1f;
  --ink:#223041;
  --ink-2:#3d4e61;
  --muted:#607184;
  --line:#e7ece8;
  --bg:#ffffff;
  --soft:#f6f8f7;
  --soft-2:#fbfcfb;
  --shadow:0 14px 50px rgba(27,38,49,.08);
  --radius:26px;
  --radius-sm:18px;
  --container:1180px;
}

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

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 8% 10%, rgba(233,116,1,.08), transparent 24%),
    radial-gradient(circle at 94% 5%, rgba(93,122,31,.08), transparent 22%),
    linear-gradient(180deg,#fff 0%,#fff 55%,#f9fbfa 100%);
  line-height:1.6;
}

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

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

.container{
  width:min(calc(100% - 32px),var(--container));
  margin:0 auto;
}

.section{
  padding:88px 0;
}

.section.soft{
  background:linear-gradient(180deg,#fbfcfb 0%,#f6f8f7 100%);
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border:1px solid rgba(233,116,1,.16);
  border-radius:999px;
  background:rgba(255,255,255,.9);
  color:var(--ink-2);
  font-weight:700;
  font-size:.94rem;
  box-shadow:0 6px 24px rgba(27,38,49,.05);
}

.eyebrow::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--orange),var(--green));
}

h1,h2,h3{
  margin:0 0 14px;
  line-height:1.08;
  letter-spacing:-.03em;
}

h1{
  font-size:clamp(2.1rem,4.2vw,3.6rem);
  max-width:11ch;
}

h2{
  font-size:clamp(2rem,3.2vw,3rem);
}

h3{
  font-size:1.25rem;
}

p{
  margin:0 0 18px;
  color:var(--muted);
  font-size:1.04rem;
}

strong{
  color:var(--ink);
}

.lead{
  font-size:1.06rem;
  max-width:63ch;
}

header.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:saturate(180%) blur(18px);
  background:rgba(255,255,255,.84);
  border-bottom:1px solid rgba(231,236,232,.9);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

.logo{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:800;
}

.logo img{
  width:180px;
  height:60px;
  object-fit:contain;
}

.nav{
  display:flex;
  align-items:center;
  gap:26px;
}

.nav a{
  font-weight:600;
  color:var(--ink-2);
}

.nav a:hover{
  color:var(--orange);
}

.nav-cta{
  display:flex;
  gap:12px;
  align-items:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  font-weight:800;
  border:1px solid transparent;
  transition:.24s ease;
  box-shadow:0 10px 30px rgba(27,38,49,.08);
}

.btn.primary{
  background:linear-gradient(135deg,var(--orange),#ff9a2f);
  color:#fff;
}

.btn.secondary{
  background:linear-gradient(135deg,var(--green),#7fa332);
  color:#fff;
}

.btn.ghost{
  background:#fff;
  border-color:var(--line);
  color:var(--ink);
}

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

.menu-btn{
  display:none;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:11px 14px;
  font-weight:800;
}

.hero{
  padding:42px 0 58px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:42px;
  align-items:center;
}

.hero-copy{
  padding-right:8px;
}

.hero-copy .lead{
  max-width:58ch;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin:30px 0 10px;
}

/* si aún existe en algún HTML viejo, que no moleste */
.trust-row,
.badge-stack,
.floating-note,
.metric-strip,
.media-copy{
  display:none !important;
}

.hero-media{
  position:relative;
}

.hero-card{
  position:relative;
  overflow:hidden;
  border-radius:32px;
  background:#fff;
  border:1px solid rgba(231,236,232,.9);
  box-shadow:var(--shadow);
  min-height:520px;
}

.hero-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:26px;
}

.card{
  border:1px solid #E19301;
  background:linear-gradient(180deg,#fff 0%,#fbfcfb 100%);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}

.card::after{
  content:"";
  position:absolute;
  inset:auto -60px -90px auto;
  width:180px;
  height:180px;
  border-radius:999px;
  background:radial-gradient(circle,rgba(233,116,1,.12) 0%,rgba(233,116,1,0) 68%);
}

.card.green::after{
  background:radial-gradient(circle,rgba(93,122,31,.14) 0%,rgba(93,122,31,0) 68%);
}

.icon{
  width:66px;
  height:66px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,rgba(233,116,1,.12),rgba(93,122,31,.1));
  border:1px solid var(--line);
  margin-bottom:16px;
}

.icon svg{
  width:48px;
  height:48px;
  stroke:var(--ink);
}

.media-panel{
  min-height:460px;
  border-radius:32px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow);
}

.media-panel img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.chip{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--ink-2);
  font-weight:700;
  font-size:.94rem;
}

.cta-band{
  padding:34px;
  border-radius:34px;
  background:
    linear-gradient(135deg,rgba(233,116,1,.1),rgba(93,122,31,.12)),
    #fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.cta-band .row{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
}

.faq-item{
  border:1px solid var(--line);
  border-radius:22px;
  background:#fff;
  box-shadow:0 10px 24px rgba(27,38,49,.04);
}

.faq-q{
  width:100%;
  border:0;
  background:none;
  text-align:left;
  padding:22px 24px;
  font:inherit;
  font-weight:800;
  color:var(--ink);
  display:flex;
  justify-content:space-between;
  gap:14px;
  cursor:pointer;
}

.faq-a{
  padding:0 24px 22px;
  display:none;
}

.faq-item.open .faq-a{
  display:block;
}

.faq-item.open .faq-plus{
  transform:rotate(45deg);
}

.faq-plus{
  transition:.22s ease;
  font-size:1.4rem;
  color:var(--orange);
}

.local-links{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.local-link{
  padding:22px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:var(--shadow);
}

.breadcrumbs{
  font-size:.95rem;
  color:var(--muted);
  margin:24px 0;
}

.breadcrumbs a{
  color:var(--muted);
}

footer{
  padding:34px 0 54px;
  border-top:1px solid var(--line);
  background:#fff;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:24px;
  align-items:start;
}

.footer-small{
  font-size:.95rem;
}

.sticky-mobile{
  position:fixed;
  left:12px;
  right:12px;
  bottom:12px;
  z-index:60;
  display:none;
  gap:10px;
}

.sticky-mobile .btn{
  flex:1;
  min-height:54px;
}

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:.55s ease;
}

.reveal.visible{
  opacity:1;
  transform:none;
}

@media (max-width:1040px){
  .hero-grid,
  .grid-2,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .grid-3,
  .local-links{
    grid-template-columns:repeat(2,1fr);
  }

  .hero-card{
    min-height:420px;
  }

  .media-panel{
    min-height:380px;
  }

  h1{
    max-width:13ch;
  }
}

@media (max-width:780px){
  .nav{
    display:none;
    position:absolute;
    left:16px;
    right:16px;
    top:78px;
    flex-direction:column;
    align-items:flex-start;
    padding:18px;
    border:1px solid var(--line);
    border-radius:24px;
    background:#fff;
    box-shadow:var(--shadow);
  }

  .nav.open{
    display:flex;
  }

  .nav-cta{
    display:none;
  }

  .menu-btn{
    display:block;
  }

  .grid-3,
  .local-links{
    grid-template-columns:1fr;
  }

  .hero{
    padding-top:20px;
  }

  h1{
    font-size:clamp(1.95rem,8vw,2.8rem);
    max-width:12ch;
  }

  .hero-actions{
    flex-direction:column;
  }

  .cta-band .row{
    flex-direction:column;
    align-items:flex-start;
  }

  .sticky-mobile{
    display:flex;
  }

  .hero-card{
    min-height:300px;
  }

  .media-panel{
    min-height:300px;
  }
}

/* HERO HOME NUEVA */
.hero-home{
  position:relative;
  min-height:720px;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding:0;
  background:#111;
}

.hero-home .hero-bg{
  position:absolute;
  inset:0;
  z-index:1;
}

.hero-home .hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(18,24,32,.58) 0%, rgba(18,24,32,.34) 34%, rgba(18,24,32,.18) 62%, rgba(18,24,32,.30) 100%),
    linear-gradient(180deg, rgba(0,0,0,.14) 0%, rgba(0,0,0,.22) 100%);
}

.hero-home .hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.hero-home-wrap{
  justify-content:flex-end;
  padding:110px clamp(20px, 6vw, 80px) 80px; /* 🔥 padding lateral controlado */
}
.hero-home-wrap{
  position:relative;
  z-index:3;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:flex-end; /* 🔥 CLAVE */
  min-height:720px;
  padding:110px 0 80px;
}
.hero-home-card{
  margin-right: clamp(20px, 6vw, 80px); /* 🔥 separación del borde */
}

.hero-home-card{
  width:min(100%, 840px);
  padding:34px 34px 30px;
  border-radius:32px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.24);
  backdrop-filter:blur(18px) saturate(155%);
  -webkit-backdrop-filter:blur(18px) saturate(155%);
  box-shadow:
    0 30px 80px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.16);
}

.hero-home-card .eyebrow{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  color:#fff;
  box-shadow:none;
}

.hero-home-card .eyebrow::before{
  background:linear-gradient(135deg,var(--orange),#ffb24a);
}

.hero-home-card h1{
  font-size:clamp(2.2rem,4vw,3.6rem);
  line-height:1.02;
  letter-spacing:-.04em;
  max-width:10ch;
  color:#fff;
  margin:18px 0 18px;
  text-wrap:balance;
}

.hero-home-card .lead{
  color:rgba(255,255,255,.92);
  font-size:1.08rem;
  line-height:1.72;
  max-width:54ch;
  margin-bottom:0;
}

.hero-home-card .hero-actions{
  margin-top:28px;
}

.hero-home-card .btn.primary{
  background:linear-gradient(135deg,var(--orange),#ff9a2f);
  color:#fff;
  box-shadow:0 14px 34px rgba(233,116,1,.28);
}

.hero-home-card .btn.secondary{
  background:rgba(255,255,255,.12);
  color:#fff;
  border:1px solid rgba(255,255,255,.24);
  box-shadow:none;
}

.hero-home-card .btn.secondary:hover{
  background:rgba(255,255,255,.18);
}

@media (max-width:1040px){
  .hero-home,
  .hero-home-wrap{
    min-height:640px;
  }

  .hero-home-card{
    width:min(100%, 580px);
  }

  .hero-home-card h1{
    max-width:11ch;
    font-size:clamp(2rem,5vw,3.1rem);
  }
}

@media (max-width:780px){
  .hero-home,
  .hero-home-wrap{
    min-height:auto;
  }

  .hero-home-wrap{
    padding:96px 0 42px;
    align-items:flex-end;
  }

  .hero-home-card{
    width:100%;
    padding:24px 22px 22px;
    border-radius:24px;
    background:rgba(255,255,255,.14);
    backdrop-filter:blur(14px) saturate(150%);
    -webkit-backdrop-filter:blur(14px) saturate(150%);
  }

  .hero-home-card h1{
    font-size:clamp(1.9rem,8vw,2.7rem);
    max-width:11ch;
    margin:14px 0 14px;
  }

  .hero-home-card .lead{
    font-size:1rem;
    line-height:1.65;
  }

  .hero-home-card .hero-actions{
    flex-direction:column;
    margin-top:22px;
  }
}
