:root{
  --bg:#0b1220;
  --card:#111827;
  --card2:#0f172a;
  --text:#e5e7eb;
  --muted:#9ca3af;
  --line:#1f2937;
  --accent:#22c55e;
  --accent2:#38bdf8;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Arial,sans-serif;background:linear-gradient(180deg,var(--bg),#070a12);color:var(--text);}
a{color:inherit;text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:0 18px}

.header{
  position:sticky;top:0;z-index:50;
  background:rgba(7,10,18,.75);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(31,41,55,.8);
}
.nav{display:flex;align-items:center;justify-content:space-between;padding:14px 0;gap:14px}

.brand{display:flex;align-items:center;gap:12px}
.brand-mark{
  width:40px;height:40px;border-radius:12px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  display:grid;place-items:center;font-weight:800;color:#00110a;
}
.brand-text{display:flex;flex-direction:column;line-height:1.1}
.brand-text small{color:var(--muted);font-size:12px;margin-top:2px}

.menu{display:flex;gap:14px;align-items:center;flex-wrap:wrap}
.menu a{color:var(--muted);font-size:14px}
.menu a:hover{color:var(--text)}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 14px;border-radius:14px;font-weight:700;
  border:1px solid transparent;cursor:pointer;
}
.btn-primary{background:linear-gradient(135deg,var(--accent),#16a34a);color:#03130b}
.btn-primary:hover{filter:brightness(1.05)}
.btn-outline{border-color:rgba(229,231,235,.25);background:transparent;color:var(--text)}
.btn-outline:hover{border-color:rgba(229,231,235,.45)}
.btn-ghost{background:transparent;color:var(--muted)}
.btn-ghost:hover{color:var(--text)}

.hero{padding:54px 0 22px; position:relative; overflow:hidden;}
.hero-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:22px;align-items:stretch; position:relative; z-index:2}
.hero-copy h1{font-size:40px;line-height:1.05;margin:0 0 12px}
.hero-copy p{color:var(--muted);font-size:16px;line-height:1.5;margin:0 0 18px}
.accent{color:var(--accent2)}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:14px}

.hero-photo{
  background-image:url("https://images.unsplash.com/photo-1556912167-f556f1f39fdf?auto=format&fit=crop&w=1800&q=80");
  background-size:cover;
  background-position:center;
  border-bottom:1px solid rgba(31,41,55,.7);
}
.hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(7,10,18,.92) 0%, rgba(7,10,18,.82) 45%, rgba(7,10,18,.55) 100%);
  z-index:1;
}

.badges{display:flex;gap:10px;flex-wrap:wrap}
.badge{
  border:1px solid rgba(229,231,235,.16);
  background:rgba(17,24,39,.55);
  padding:8px 10px;border-radius:999px;
  color:var(--muted);font-size:13px
}

.hero-card{
  background:linear-gradient(180deg,rgba(17,24,39,.88),rgba(15,23,42,.88));
  border:1px solid rgba(229,231,235,.12);
  border-radius:18px;
  padding:18px;
}
.hero-card h3{margin:0 0 10px}
.hero-card ul{margin:0;padding-left:18px;color:var(--muted);line-height:1.6}
.hero-mini{margin-top:10px}
.link{color:var(--accent2)}
.link:hover{text-decoration:underline}

.section{padding:44px 0}
.section.alt{background:rgba(17,24,39,.25);border-top:1px solid rgba(31,41,55,.7);border-bottom:1px solid rgba(31,41,55,.7)}
h2{margin:0 0 10px;font-size:28px}
.sub{color:var(--muted);margin:0 0 18px;line-height:1.5}

.grid{display:grid;gap:14px}
.grid.two{grid-template-columns:repeat(2,1fr)}
.grid.three{grid-template-columns:repeat(3,1fr)}
.grid.four{grid-template-columns:repeat(4,1fr)}

.card{
  background:rgba(17,24,39,.72);
  border:1px solid rgba(229,231,235,.10);
  border-radius:18px;
  padding:16px;
}
.card h3{margin:0 0 8px}
.card p{margin:0 0 10px;color:var(--muted);line-height:1.5}
.price{font-weight:800;color:var(--text)}
.muted{color:var(--muted)}
.tiny{font-size:12px}

.check{margin:0;padding-left:18px;color:var(--muted);line-height:1.7}

.card-photo{padding:0; overflow:hidden}
.card-img{height:160px; overflow:hidden}
.card-img img{width:100%;height:100%;object-fit:cover;display:block; filter:saturate(1.05) contrast(1.05)}
.card-body{padding:16px}

.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.step{
  background:rgba(15,23,42,.7);
  border:1px solid rgba(229,231,235,.10);
  border-radius:18px;
  padding:16px;
}
.step-num{
  display:inline-grid;place-items:center;
  width:32px;height:32px;border-radius:10px;
  background:rgba(56,189,248,.18);
  border:1px solid rgba(56,189,248,.35);
  margin-bottom:10px;font-weight:800;color:var(--accent2)
}
.step h3{margin:0 0 6px}
.step p{margin:0;color:var(--muted);line-height:1.5}

.form label{display:flex;flex-direction:column;gap:8px;margin-bottom:12px;color:var(--muted);font-size:14px}
input,select,textarea{
  padding:12px 12px;border-radius:14px;
  border:1px solid rgba(229,231,235,.14);
  background:rgba(2,6,23,.55);color:var(--text);
  outline:none;
}
input:focus,select:focus,textarea:focus{border-color:rgba(56,189,248,.5)}
.divider{height:1px;background:rgba(229,231,235,.10);margin:14px 0}

.contact-card{position:relative; overflow:hidden}
.contact-photo{height:140px; border-radius:14px; overflow:hidden; margin-bottom:12px; border:1px solid rgba(229,231,235,.10)}
.contact-photo img{width:100%;height:100%;object-fit:cover;display:block;filter:saturate(1.05) contrast(1.05)}

.footer{padding:22px 0;border-top:1px solid rgba(31,41,55,.7);background:rgba(2,6,23,.35)}
.footer-row{display:flex;justify-content:space-between;gap:10px;flex-wrap:wrap}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .grid.four{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 520px){
  .grid.two,.grid.three,.grid.four{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .hero-copy h1{font-size:34px}
  .menu{display:none}
}
/* === LOGO HEADER: MÁS GRANDE === */
.brand-mark.brand-logo{
  width: 92px !important;
  height: 92px !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  overflow: hidden !important;
  display: grid !important;
  place-items: center !important;
}

.brand-mark.brand-logo img{
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 0px !important; /* antes 6px: lo hacía más chico */
  display: block !important;
}