
:root{
  --green:#14763d;
  --green-dark:#0f5e31;
  --green-soft:#eaf6ef;
  --ink:#07152f;
  --text:#344054;
  --muted:#667085;
  --line:#e6e9ef;
  --bg:#ffffff;
  --soft:#f7faf8;
  --card:#ffffff;
  --purple:#efe9ff;
  --blue:#eaf3ff;
  --orange:#fff0df;
  --teal:#e8fbf8;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:"Segoe UI",Inter,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.navbar{
  width:min(1180px,90%);
  margin:auto;
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-mark{
  width:48px;
  height:48px;
  border-radius:14px;
  background:linear-gradient(135deg,#0f6f3b,#8bd69f);
  display:grid;
  place-items:center;
  color:white;
  font-weight:900;
  letter-spacing:-1px;
  box-shadow:0 10px 24px rgba(20,118,61,.2);
}
.brand-text strong{
  display:block;
  font-size:28px;
  line-height:1;
  color:var(--ink);
  letter-spacing:-1px;
}
.brand-text span{
  font-size:12px;
  font-weight:800;
  letter-spacing:2px;
  color:#3b4b63;
}
.menu{
  display:flex;
  align-items:center;
  gap:34px;
  font-weight:650;
  color:#101828;
}
.menu a{
  position:relative;
}
.menu a:hover{color:var(--green)}
.menu a.active::after{
  content:"";
  height:3px;
  width:100%;
  background:var(--green);
  border-radius:999px;
  position:absolute;
  left:0;
  bottom:-12px;
}
.header-cta{
  background:var(--green);
  color:white;
  padding:13px 22px;
  border-radius:10px;
  font-weight:800;
  box-shadow:0 10px 22px rgba(20,118,61,.22);
}
.header-cta:hover{background:var(--green-dark)}

.hero{
  width:min(1180px,90%);
  margin:auto;
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:44px;
  align-items:center;
  padding:64px 0 22px;
}
.hero-copy .eyebrow,
.eyebrow{
  display:inline-block;
  color:var(--green-dark);
  font-weight:900;
  letter-spacing:.2px;
  margin-bottom:16px;
}
.hero h1{
  color:var(--ink);
  font-size:58px;
  line-height:1.08;
  letter-spacing:-2px;
  margin-bottom:20px;
}
.hero p{
  font-size:18px;
  color:#3c465a;
  max-width:660px;
  margin-bottom:28px;
}
.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:32px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:15px 24px;
  border-radius:10px;
  font-weight:850;
  border:1px solid transparent;
  cursor:pointer;
}
.btn-primary{
  background:var(--green);
  color:white;
  box-shadow:0 10px 24px rgba(20,118,61,.22);
}
.btn-primary:hover{background:var(--green-dark)}
.btn-secondary{
  border-color:var(--green);
  color:var(--green-dark);
  background:white;
}
.btn-secondary:hover{background:var(--green-soft)}

.hero-points{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:8px;
}
.point{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  color:#344054;
}
.icon-dot{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:var(--green-soft);
  color:var(--green);
  font-weight:900;
}

.hero-visual{
  position:relative;
  min-height:490px;
  border-radius:34px;
  overflow:hidden;
  background:
    linear-gradient(90deg,rgba(255,255,255,.05),rgba(255,255,255,0)),
    url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?w=1300") center/cover;
  box-shadow:0 24px 70px rgba(7,21,47,.13);
}
.hero-visual::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(255,255,255,.95) 0%,rgba(255,255,255,.38) 27%,rgba(255,255,255,0) 58%);
}
.trust-card{
  position:absolute;
  right:22px;
  bottom:28px;
  width:255px;
  background:white;
  border-radius:20px;
  padding:22px;
  display:flex;
  gap:15px;
  align-items:center;
  box-shadow:0 18px 50px rgba(7,21,47,.16);
}
.trust-card strong{
  display:block;
  color:var(--ink);
  font-size:20px;
}
.trust-card span{
  color:#465266;
  font-size:14px;
}

.value-strip{
  width:min(1180px,90%);
  margin:34px auto 0;
  background:#fbfcfb;
  border:1px solid var(--line);
  border-radius:20px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  box-shadow:0 18px 50px rgba(7,21,47,.06);
}
.value-item{
  display:flex;
  gap:18px;
  align-items:center;
  padding:25px 28px;
  border-right:1px solid var(--line);
}
.value-item:last-child{border-right:0}
.value-item h3{
  color:var(--ink);
  font-size:16px;
  margin-bottom:3px;
}
.value-item p{
  color:#475467;
  font-size:14px;
}
.big-icon{
  width:54px;
  height:54px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:var(--green-soft);
  color:var(--green);
  font-size:28px;
  flex:0 0 auto;
}

section{
  padding:78px 0;
}
.section-inner{
  width:min(1180px,90%);
  margin:auto;
}
.section-head{
  text-align:center;
  max-width:780px;
  margin:0 auto 38px;
}
.section-head h2{
  color:var(--ink);
  font-size:36px;
  line-height:1.15;
  letter-spacing:-.8px;
  margin-bottom:12px;
}
.section-head p{
  font-size:17px;
  color:#475467;
}

.categories{
  background:linear-gradient(180deg,#fff 0%,#f8fbf9 100%);
}
.category-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:22px;
}
.category-card{
  padding:30px 20px;
  border-radius:20px;
  min-height:255px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  text-align:center;
  transition:.25s;
  border:1px solid transparent;
}
.category-card:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 45px rgba(7,21,47,.1);
}
.category-card h3{
  color:var(--ink);
  font-size:20px;
  line-height:1.15;
  margin:14px 0 10px;
}
.category-card p{
  color:#475467;
  font-size:15px;
  margin-bottom:18px;
}
.category-card a{
  color:var(--green-dark);
  font-weight:900;
}
.bg-green{background:linear-gradient(180deg,#edf8f1,#f9fdfb)}
.bg-purple{background:linear-gradient(180deg,var(--purple),#fbfaff)}
.bg-blue{background:linear-gradient(180deg,var(--blue),#fbfdff)}
.bg-orange{background:linear-gradient(180deg,var(--orange),#fffaf5)}
.bg-teal{background:linear-gradient(180deg,var(--teal),#f8fffd)}

.problems{
  background:#fff;
}
.problem-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}
.problem-card{
  display:flex;
  gap:14px;
  padding:22px;
  border-right:1px solid var(--line);
}
.problem-card:last-child{border-right:0}
.problem-card h3{
  color:var(--ink);
  font-size:16px;
  margin-bottom:5px;
}
.problem-card p{
  color:#475467;
  font-size:14px;
}

.about{
  background:var(--soft);
}
.about-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:44px;
  align-items:center;
}
.about h2{
  color:var(--ink);
  font-size:38px;
  line-height:1.15;
  letter-spacing:-.8px;
  margin-bottom:18px;
}
.about p{
  font-size:17px;
  color:#475467;
  margin-bottom:16px;
}
.about-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:22px;
}
.about-list div{
  background:white;
  padding:16px;
  border-radius:14px;
  border:1px solid var(--line);
  font-weight:800;
  color:var(--ink);
}
.about-img{
  border-radius:26px;
  min-height:390px;
  background:url("https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1200") center/cover;
  box-shadow:0 22px 60px rgba(7,21,47,.12);
}

.internal-hero{
  background:linear-gradient(180deg,#f7fbf8,#fff);
  padding:74px 0 48px;
}
.internal-hero .section-inner{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:34px;
  align-items:center;
}
.internal-hero h1{
  color:var(--ink);
  font-size:48px;
  line-height:1.08;
  letter-spacing:-1.3px;
  margin-bottom:16px;
}
.internal-hero p{
  font-size:18px;
  max-width:760px;
  color:#475467;
  margin-bottom:26px;
}
.internal-card{
  background:white;
  border:1px solid var(--line);
  border-radius:22px;
  padding:26px;
  box-shadow:0 18px 46px rgba(7,21,47,.08);
}
.programs{
  background:white;
}
.program-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
}
.program-box{
  background:#fbfcfb;
  border:1px solid var(--line);
  border-radius:22px;
  padding:32px;
}
.program-box h2,
.program-box h3{
  color:var(--ink);
  margin-bottom:18px;
}
.program-list{
  list-style:none;
  display:grid;
  gap:12px;
}
.program-list li{
  padding:13px 14px;
  background:white;
  border:1px solid var(--line);
  border-radius:12px;
}
.program-list li::before{
  content:"✓";
  color:var(--green);
  font-weight:900;
  margin-right:10px;
}

.seo-block{
  background:#f8fbf9;
}
.seo-block h2{
  color:var(--ink);
  font-size:32px;
  margin-bottom:14px;
}
.seo-block p{
  font-size:17px;
  color:#475467;
  max-width:980px;
}

.contact{
  background:white;
}
.contact-wrap{
  width:min(900px,90%);
  margin:auto;
  text-align:center;
}
.contact h2{
  color:var(--ink);
  font-size:36px;
  margin-bottom:12px;
}
.contact p{
  color:#475467;
  font-size:17px;
}
form{
  margin:34px auto 24px;
  max-width:720px;
  text-align:left;
  background:#fbfcfb;
  border:1px solid var(--line);
  border-radius:22px;
  padding:28px;
}
label{
  display:block;
  color:var(--ink);
  font-weight:800;
  margin-bottom:6px;
}
input,textarea{
  width:100%;
  border:1px solid #d0d5dd;
  border-radius:10px;
  padding:14px;
  font:inherit;
  margin-bottom:16px;
  background:white;
}
textarea{resize:vertical}
.privacy-note{
  font-size:13px!important;
  color:#667085!important;
  margin-top:14px;
}
.direct-contact{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  margin-top:18px;
  color:#344054;
}

.site-footer{
  background:#07152f;
  color:white;
  padding:42px 0;
}
.footer-inner{
  width:min(1180px,90%);
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.site-footer strong{color:#a8e6bd}
.site-footer a{text-decoration:underline}

@media(max-width:1020px){
  .hero,.about-grid,.internal-hero .section-inner,.program-grid{grid-template-columns:1fr}
  .hero-visual{min-height:360px}
  .category-grid{grid-template-columns:repeat(2,1fr)}
  .value-strip{grid-template-columns:repeat(2,1fr)}
  .value-item{border-right:0;border-bottom:1px solid var(--line)}
  .problem-grid{grid-template-columns:repeat(2,1fr)}
  .problem-card{border-right:0;border-bottom:1px solid var(--line)}
}
@media(max-width:720px){
  .navbar{min-height:auto;padding:14px 0;flex-direction:column}
  .menu{gap:13px;flex-wrap:wrap;justify-content:center;font-size:14px}
  .header-cta{display:none}
  .brand-text strong{font-size:24px}
  .hero{padding:42px 0 20px}
  .hero h1{font-size:38px}
  .hero p{font-size:16px}
  .hero-points{grid-template-columns:repeat(2,1fr)}
  .category-grid,.problem-grid,.value-strip,.about-list{grid-template-columns:1fr}
  .category-card{text-align:left}
  .value-item{padding:20px}
  .section-head h2,.contact h2{font-size:30px}
  .internal-hero h1{font-size:36px}
}

/* ===== Logo original SyB ===== */
.brand{
  display:flex;
  align-items:center;
  gap:0 !important;
}
.brand-logo-img{
  width:190px;
  height:auto;
  display:block;
}
.brand-mark,
.brand-text{
  display:none !important;
}
@media(max-width:720px){
  .brand-logo-img{
    width:165px;
  }
}


/* ===== Ajustes finales logo SyB correcto ===== */
.brand-logo-img{
  width:145px !important;
  height:auto !important;
  display:block !important;
  object-fit:contain !important;
}

.brand{
  display:flex !important;
  align-items:center !important;
}

.brand-mark,
.brand-text{
  display:none !important;
}

/* Ocultar tarjeta +150 empresas si quedara en caché o HTML antiguo */
.trust-card{
  display:none !important;
}

@media(max-width:720px){
  .brand-logo-img{
    width:125px !important;
  }
}
