:root {
  --bg: #dadada;
  --surface: #f6f6f4;
  --surface-2: #ffffff;
  --surface-3: #ececec;
  --line: rgba(0,0,0,.08);
  --line-strong: rgba(0,0,0,.14);
  --text: #0f0f10;
  --muted: #5c5c5c;
  --gold: #c4ad7a;
  --olive: #504602;
  --black: #000000;
  --white: #ffffff;
  --max: 1220px;
  --radius: 22px;
  --radius-lg: 30px;
  --shadow-sm: 0 8px 22px rgba(0,0,0,.04);
  --shadow-md: 0 18px 48px rgba(0,0,0,.08);
  --shadow-lg: 0 24px 70px rgba(0,0,0,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Open Sauce One',Inter,Arial,sans-serif;
  background:linear-gradient(180deg,#dcdcdc 0%,#d7d7d7 100%);
  color:var(--text);
  line-height:1.6;
}

/* JUSTIFICAR TEXTO CUERPO */
p,
li {
  text-align: justify;
  text-justify: inter-word;
}

img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
.container{width:min(calc(100% - 36px),var(--max));margin:0 auto}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.75rem;
  font-weight:800;
  color:var(--olive);
}

/* Topbar */

.topbar{background:#000;color:#fff}
.topbar .container{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  padding:10px 0;
  font-size:.9rem;
}

/* Header / nav */

header{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(218,218,218,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.45);
}
.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:14px 0;
}
.brand img{height:80px;width:auto}
.nav-links{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}
.nav-links a{font-size:.95rem;color:#1e1e1e}

/* BOTÓN WHATSAPP DIRECTO LEGIBLE */
.nav-cta{
  padding:10px 18px;
  border-radius:999px;
  background:#c4ad7a;      /* dorado paleta */
  color:#000000;
  font-weight:800;
  border:none;
  box-shadow:0 8px 18px rgba(0,0,0,.18);
}

/* TITULARES */

h1{
  font-size:clamp(2.4rem,4.2vw,3.4rem);
  line-height:1.15;
  letter-spacing:-.02em;
  margin:12px 0 18px;
  font-weight:700;
  max-width:20ch;
}

h2{
  font-size:clamp(1.8rem,3vw,2.4rem);
  line-height:1.2;
  letter-spacing:-.02em;
  font-weight:700;
  max-width:28ch;
}

h3{
  font-size:1.15rem;
  line-height:1.25;
  letter-spacing:-.01em;
  font-weight:700;
}

/* Hero */

.hero{padding:64px 0 46px}
.hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:34px;
  align-items:center;
}
.hero-copy{padding-right:8px}
.lead{
  font-size:1.08rem;
  color:#2d2d2d;
  max-width:60ch;
  margin:0 0 28px;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:26px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:14px 22px;
  border-radius:999px;
  font-weight:800;
  border:1px solid transparent;
}
.btn-primary{background:#000;color:#fff}
.btn-secondary{
  background:rgba(255,255,255,.65);
  border-color:var(--line-strong);
}
.hero-notes{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.hero-note{
  padding:15px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.62);
  border:1px solid rgba(255,255,255,.5);
  box-shadow:var(--shadow-sm);
  font-size:.95rem;
  color:var(--muted);
}

/* Hero visual */

.hero-visual{
  position:relative;
  min-height:620px;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  background:#ededed;
}
.hero-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
}
.hero-badge{
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
  background:linear-gradient(180deg,rgba(0,0,0,.2),rgba(0,0,0,.62));
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
  padding:22px;
  border-radius:22px;
  backdrop-filter:blur(8px);
}
.hero-badge h2{
  margin:8px 0 6px;
  font-size:1.45rem;
  line-height:1.05;
  font-weight:800;
}
.hero-badge p{
  margin:0;
  color:rgba(255,255,255,.82);
  max-width:38ch;
}

/* Sections */

section{padding:76px 0}
.section-head{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:end;
  gap:20px;
  margin-bottom:32px;
}
.section-head p{
  margin:0;
  max-width:58ch;
  color:var(--muted);
}

/* Grids */

.grid-4,.grid-3,.faq-grid,.footer-grid{
  display:grid;
  gap:18px;
}
.grid-4{grid-template-columns:repeat(4,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.faq-grid{grid-template-columns:1fr 1fr}
.footer-grid{grid-template-columns:1.2fr .8fr .8fr}

/* Cards */

.card,.faq-item,.contact-card,.bio-copy{
  background:linear-gradient(180deg,var(--surface-2),var(--surface));
  border:1px solid rgba(255,255,255,.58);
  border-radius:24px;
  box-shadow:var(--shadow-md);
}
.card,.faq-item,.contact-card{padding:28px}
.card h3,.faq-item h3,.contact-card h3{
  margin:12px 0 8px;
  font-size:1.16rem;
  line-height:1.14;
}
.card p,.faq-item p,.contact-card p{
  margin:0;
  color:var(--muted);
}
.mini-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:18px;
  color:var(--olive);
  font-weight:800;
}

/* Feature / bio / contact */

.feature-wrap,.contact-wrap,.bio{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
.feature-panel{
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  background:#121212;
  color:#fff;
}
.feature-panel img{
  width:100%;
  height:340px;
  object-fit:cover;
}
.feature-copy{
  padding:28px;
  background:linear-gradient(180deg,#111,#1a1a1b);
}
.feature-copy p{color:rgba(255,255,255,.8)}
.process-card .step{
  width:38px;
  height:38px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(196,173,122,.12);
  border:1px solid rgba(80,70,2,.14);
  font-size:.85rem;
  font-weight:800;
  color:var(--olive);
  margin-bottom:10px;
}
.bio-photo{
  position:relative;
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  min-height:480px;
}
.bio-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
}
.bio-tag{
  position:absolute;
  left:20px;
  bottom:20px;
  background:rgba(255,255,255,.78);
  padding:15px 18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.55);
  font-weight:800;
  max-width:24ch;
}
.bio-copy{padding:34px}
.bio-copy p{color:var(--muted)}
.points{
  list-style:none;
  padding:0;
  margin:22px 0 0;
  display:grid;
  gap:12px;
}
.points li{
  padding-top:12px;
  border-top:1px solid rgba(0,0,0,.08);
}

.contact-list{
  list-style:none;
  padding:0;
  margin:24px 0 0;
  display:grid;
  gap:16px;
}
.contact-list li span{
  display:block;
  font-size:.9rem;
  color:var(--muted);
  margin-bottom:4px;
}
.form-shell{
  border-radius:30px;
  padding:32px;
  background:linear-gradient(135deg,#0e0e0f,#1d1d1f);
  color:#fff;
  box-shadow:var(--shadow-lg);
}
.form-shell p{color:rgba(255,255,255,.8)}
.mock-form{
  display:grid;
  gap:14px;
  margin-top:20px;
}
.mock-input{
  min-height:54px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  border-radius:16px;
  padding:15px 16px;
  color:rgba(255,255,255,.72);
}
.mock-input.large{min-height:130px}

/* Footer */

footer{
  background:#000;
  color:#fff;
  padding:34px 0 88px;
  margin-top:24px;
}
.footer-title{
  margin:0 0 10px;
  font-weight:800;
  color:#fff;
}
footer p,footer a{color:rgba(255,255,255,.78)}

/* Otros */

.sticky-mobile{display:none}
.page-hero{padding:58px 0 34px}
.page-hero h1{font-size:clamp(2.7rem,4.6vw,4.8rem)}

/* Responsive */

@media (max-width:1100px){
  .hero-grid,.feature-wrap,.contact-wrap,.bio,.section-head,.footer-grid{
    grid-template-columns:1fr;
  }
  .grid-4,.grid-3,.faq-grid{grid-template-columns:repeat(2,1fr)}
  .hero-visual{min-height:430px}
}
@media (max-width:760px){
  .nav{flex-direction:column;align-items:flex-start}
  .nav-links{gap:14px}
  .grid-4,.grid-3,.faq-grid,.hero-notes{grid-template-columns:1fr}
  section{padding:58px 0}
  h1{font-size:clamp(2.4rem,9vw,3.2rem)}
  .hero-visual{min-height:340px}
  .sticky-mobile{
    display:flex;
    position:fixed;
    left:12px;
    right:12px;
    bottom:12px;
    gap:10px;
    z-index:80;
  }
  .sticky-mobile a{
    flex:1;
    text-align:center;
    padding:14px 16px;
    border-radius:999px;
    font-weight:800;
    box-shadow:0 12px 28px rgba(0,0,0,.18);
  }
  .sticky-mobile .wa{background:#000;color:#fff}
  .sticky-mobile .call{background:#fff;color:#000}
}
.card-cobertura{
  padding:38px 34px 34px 34px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.card-cobertura h3{
  margin:12px 0 20px;
}

.card-cobertura .points{
  margin-top:10px;
}

.card-cobertura .points li{
  padding-top:16px;
  padding-bottom:2px;
  line-height:1.55;
}

.card-cobertura::after{
  content:"";
  display:block;
  width:84px;
  height:1px;
  background:rgba(0,0,0,.22);
  margin-top:28px;
}
.card-foreign{
  padding:38px 34px 34px 34px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.card-foreign h3{
  margin:12px 0 14px;
}

.card-foreign p{
  max-width:42ch;
}

.card-foreign .points{
  margin-top:14px;
}

.card-foreign .points li{
  padding-top:16px;
  padding-bottom:2px;
  line-height:1.55;
}

.card-foreign::after{
  content:"";
  display:block;
  width:84px;
  height:1px;
  background:rgba(0,0,0,.22);
  margin-top:28px;
}