/* =========================
   Acosta & Prieu - Base
   ========================= */

   :root{
    --bg: #f4f5f7;
    --card: #ffffff;
    --text: #111318;
    --muted: #5b6472;
    --line: rgba(17,19,24,.10);
    --shadow: 0 10px 30px rgba(17,19,24,.06);
    --shadow2: 0 6px 18px rgba(17,19,24,.08);
    --radius: 18px;
    --radius2: 22px;
  
    --max: 1120px;
    --pad: 24px;
  
    --accent: #111318; /* sobrio: negro */
    --accent2: #2b3442; /* gris azulado */
  }
  
  *{ box-sizing:border-box; }
  html{ scroll-behavior:smooth; }
  body{
    margin:0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
  }
  
  img{ max-width:100%; height:auto; display:block; }
  a{ color:inherit; text-decoration:none; }
  p{ margin:0 0 14px; color: var(--muted); }
  h1,h2,h3{ margin:0 0 10px; line-height:1.2; }
  h1{ font-size: clamp(34px, 5vw, 54px); letter-spacing:-0.02em; }
  h2{ font-size: clamp(22px, 3vw, 30px); letter-spacing:-0.01em; }
  h3{ font-size: 18px; }
  
  .container{
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
  }
  
  .section{
    padding: 64px 0;
  }
  
  .badge{
    display:inline-flex;
    gap:10px;
    align-items:center;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(6px);
    font-size: 13px;
    color: var(--muted);
  }
  
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text);
    box-shadow: var(--shadow2);
    transition: transform .12s ease, box-shadow .12s ease;
    cursor:pointer;
    font-weight: 600;
  }
  .btn:hover{ transform: translateY(-1px); }
  .btn:active{ transform: translateY(0); box-shadow: var(--shadow); }
  
  .btn-primary{
    background: var(--accent);
    color:#fff;
    border-color: transparent;
  }
  .btn-ghost{
    background: transparent;
    box-shadow: none;
  }
  .btn-ghost:hover{
    background: rgba(255,255,255,.65);
  }
  
  .grid{
    display:grid;
    gap: 18px;
  }
  
  .card{
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow:hidden;
  }
  
  .card-pad{ padding: 18px; }
  
  /* =========================
     Header / Nav
     ========================= */
  .header{
    position: sticky;
    top:0;
    z-index: 20;
    background: rgba(244,245,247,.72);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  
  .nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 14px 0;
  }
  
  .brand{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight: 800;
    letter-spacing: .02em;
  }
  .brand img{
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #fff;
  }
  .brand small{
    display:block;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 11px;
  }
  
  .navlinks{
    display:flex;
    gap: 18px;
    align-items:center;
  }
  .navlinks a{
    padding: 10px 10px;
    border-radius: 10px;
    color: var(--muted);
    font-weight: 600;
  }
  .navlinks a:hover{ background: rgba(255,255,255,.7); color: var(--text); }
  
  .nav-cta{
    display:flex;
    gap: 10px;
    align-items:center;
  }
  
  .burger{
    display:none;
    border: 1px solid var(--line);
    background:#fff;
    border-radius: 12px;
    padding: 10px 12px;
  }
  
  /* =========================
     Hero
     ========================= */
  .hero{
    padding: 54px 0 28px;
  }
  
  .hero-wrap{
    display:grid;
    gap: 18px;
    grid-template-columns: 1.2fr .8fr;
    align-items: stretch;
  }
  
  .hero-left{
    padding: 26px;
    border-radius: var(--radius2);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.65));
    box-shadow: var(--shadow);
  }
  
  .hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap: 12px;
    margin-top: 18px;
  }
  
  .kpis{
    margin-top: 18px;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .kpi{
    padding: 12px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.8);
  }
  .kpi strong{ display:block; font-size: 16px; }
  .kpi span{ display:block; font-size: 12px; color: var(--muted); margin-top:4px; }
  
  .hero-right{
    border-radius: var(--radius2);
    border: 1px solid var(--line);
    overflow:hidden;
    box-shadow: var(--shadow);
    background:#fff;
    display:flex;
    flex-direction:column;
  }
  .hero-photo{
    height: 100%;
    min-height: 340px;
    background: #e9ecf0;
    position: relative;
  }
  .hero-photo img{
    width:100%;
    height:100%;
    object-fit: cover;
    filter: contrast(1.02) saturate(1.02);
  }
  .hero-photo::after{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(180deg, rgba(17,19,24,.0), rgba(17,19,24,.22));
  }
  
  /* =========================
     Blocks
     ========================= */
  .split{
    display:grid;
    gap: 18px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
  .figure{
    border-radius: var(--radius2);
    overflow:hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background:#fff;
  }
  
  .mini{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
  }
  
  .mini .card{
    border-radius: 16px;
  }
  
  .list{
    margin: 10px 0 0;
    padding: 0;
    list-style:none;
    display:grid;
    gap: 10px;
  }
  .list li{
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.75);
    display:flex;
    justify-content:space-between;
    gap: 10px;
  }
  .list li span{
    color: var(--muted);
    font-weight: 600;
  }
  
  /* Areas cards */
  .areas{
    grid-template-columns: repeat(3, 1fr);
  }
  .area-title{
    font-weight: 800;
    letter-spacing: .01em;
  }
  .area-meta{
    font-size: 13px;
    color: var(--muted);
  }
  
  /* Editorial teaser */
  .posts{
    grid-template-columns: repeat(3, 1fr);
  }
  .post-title{ font-weight: 800; }
  .post-meta{ font-size: 12px; color: var(--muted); margin-top:6px; }
  
  /* CTA */
  .cta{
    padding: 22px;
    border-radius: var(--radius2);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.7));
    box-shadow: var(--shadow);
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
  }
  
  .footer{
    padding: 24px 0 44px;
    border-top: 1px solid var(--line);
    color: var(--muted);
  }
  .footer .row{
    display:flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
  }
  .footer a{ text-decoration: underline; text-underline-offset: 3px; }
  
  /* =========================
     Responsive
     ========================= */
  @media (max-width: 980px){
    .hero-wrap{ grid-template-columns: 1fr; }
    .split{ grid-template-columns: 1fr; }
    .areas{ grid-template-columns: 1fr; }
    .posts{ grid-template-columns: 1fr; }
    .kpis{ grid-template-columns: 1fr; }
    .navlinks{ display:none; }
    .burger{ display:inline-flex; }
  }
  
  /* Grilla de servicios/áreas */
.cards-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 980px){
  .cards-grid{ grid-template-columns: 1fr; }
}

.service-card{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.service-card .top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
}

.service-pill{
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.75);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.service-card p{
  margin:0;
}

/* Grilla de servicios/áreas */
.cards-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 980px){
  .cards-grid{ grid-template-columns: 1fr; }
}

.service-card{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.service-card .top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
}

.service-pill{
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.75);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.service-card p{
  margin:0;
}

/* ===== Editorial: cards con imagen ===== */
.editorial-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 980px){
  .editorial-grid{ grid-template-columns: 1fr; }
}

.post-card{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  transition: transform .12s ease, box-shadow .12s ease;
}

.post-card:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow2);
}

.post-thumb{
  height: 170px;
  background: #e9ecf0;
  position: relative;
  overflow:hidden;
}

.post-thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  filter: contrast(1.02) saturate(1.02);
}

.post-thumb::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(17,19,24,.0), rgba(17,19,24,.18));
}

.post-body{
  padding: 16px 18px 18px;
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.post-kicker{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}

.post-pill{
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.75);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.post-date{
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.post-title{
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 0;
}

.post-excerpt{
  margin:0;
  color: var(--muted);
}

.post-footer{
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
}

/* ===== Áreas: iconito SVG ===== */
.service-head{
  display:flex;
  align-items:flex-start;
  gap: 12px;
}

.service-icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.8);
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}

.service-icon svg{
  width: 22px;
  height: 22px;
  stroke: var(--text);
  opacity: .78;
}

/* ===== Hover elegante en cards de áreas ===== */

.service-card{
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease;
}

.service-card::before{
  content:"";
  position:absolute;
  left:0;
  top:18px;
  bottom:18px;
  width:3px;
  background: transparent;
  border-radius:3px;
  transition: background .18s ease;
}

.service-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
}

.service-card:hover::before{
  background: rgba(17,19,24,.15);
}

.service-card:hover .service-icon{
  background: rgba(17,19,24,.05);
  border-color: rgba(17,19,24,.18);
}

.service-card:hover .service-icon svg{
  opacity: 1;
  stroke: #111318;
}
.service-card:hover .service-pill{
  background: rgba(17,19,24,.06);
  border-color: rgba(17,19,24,.2);
}

/* =========================
   CONTACTO – HERO DEFINITIVO
   Imagen: /assets/img/contacto-hero.jpg
   ========================= */

   .hero-contacto{
    background-image: url('/assets/img/contacto-hero.jpg');
    background-size: cover;
    background-position: center 35%;
    min-height: 360px;
    position: relative;
    z-index: 1;
  }
  
  /* Oscurece suavemente la imagen para mejor lectura */
  .hero-contacto::before{
    content:"";
    position:absolute;
    inset:0;
    background: rgba(0,0,0,.10);
    pointer-events:none;
  }
  
  .hero-overlay{
    padding: 54px 0 68px;
    color: #fff;
    position: relative;
    z-index: 2;
    background: linear-gradient(
      180deg,
      rgba(17,19,24,.82) 0%,
      rgba(17,19,24,.62) 55%,
      rgba(17,19,24,.55) 100%
    );
  }
  
  .hero-kicker{
    display:inline-block;
    font-size:12px;
    letter-spacing:.12em;
    text-transform:uppercase;
    padding:8px 12px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.25);
    background:rgba(255,255,255,.08);
  }
  
  .hero-contacto h1{
    margin:14px 0 10px;
    font-size:44px;
    line-height:1.05;
    letter-spacing:-0.02em;
    max-width:18ch;
  }
  
  .hero-contacto p{
    margin:0;
    max-width:62ch;
    font-size:18px;
    color:rgba(255,255,255,.92);
  }
  
  .hero-actions{
    margin-top:16px;
    display:flex;
    gap:12px;
    flex-wrap:wrap;
  }
  
  .hero-ghost{
    border-color:rgba(255,255,255,.35) !important;
    color:#fff !important;
    background:rgba(255,255,255,.08) !important;
  }
  
  .hero-ghost:hover{
    background:rgba(255,255,255,.14) !important;
  }
  
  /* Overlap elegante de las cards */
  .contacto-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
    align-items:start;
  
    margin-top:-46px;
    position:relative;
    z-index:3;
  }
  
  /* Fondo suave general */
  body{
    background:#f6f7f9;
  }
  
  /* Responsive */
  @media (max-width:900px){
    .contacto-grid{
      grid-template-columns:1fr;
      margin-top:-26px;
    }
  
    .hero-contacto{
      min-height:320px;
    }
  
    .hero-contacto h1{
      font-size:36px;
    }
  }
  
  @media (max-width:520px){
    .contacto-grid{ margin-top:-18px; }
    .hero-contacto h1{ font-size:32px; }
    .hero-contacto p{ font-size:16px; }
  }

/* =========================
   HERO CONTACTO – BIBLIOTECA VERSION PRO
   Imagen: /assets/img/contacto-hero.jpg
   ========================= */

   .hero-contacto{
    position: relative;
    min-height: 420px;                 /* un poco más alto para biblioteca */
    overflow: hidden;
    z-index: 1;
  }
  
  /* Imagen con ajuste fino */
  .hero-contacto::before{
    content:"";
    position:absolute;
    inset:0;
    background-image: url('/assets/img/contacto-hero.jpg');
    background-size: cover;
    background-position: center 45%;   /* ajusta si querés más arriba/abajo */
    transform: scale(1.02);
    filter: grayscale(.15) contrast(1.05) brightness(.80);
  }
  
  /* Overlay editorial más elegante (oscuro izquierda, liviano derecha) */
  .hero-contacto::after{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(
      90deg,
      rgba(10,12,16,.88) 0%,
      rgba(17,19,24,.70) 40%,
      rgba(17,19,24,.40) 65%,
      rgba(17,19,24,.15) 100%
    );
    pointer-events:none;
  }
  
  .hero-overlay{
    position: relative;
    z-index: 2;
    padding: 70px 0 80px;
    color: #fff;
  }
  
  .hero-kicker{
    display:inline-block;
    font-size:12px;
    letter-spacing:.12em;
    text-transform:uppercase;
    padding:8px 12px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.25);
    background:rgba(255,255,255,.08);
  }
  
  .hero-contacto h1{
    margin:14px 0 12px;
    font-size:46px;
    line-height:1.05;
    letter-spacing:-0.02em;
    max-width:18ch;
  }
  
  .hero-contacto p{
    margin:0;
    max-width:62ch;
    font-size:18px;
    color:rgba(255,255,255,.92);
  }
  
  .hero-actions{
    margin-top:18px;
    display:flex;
    gap:12px;
    flex-wrap:wrap;
  }
  
  .hero-ghost{
    border-color:rgba(255,255,255,.35) !important;
    color:#fff !important;
    background:rgba(255,255,255,.08) !important;
  }
  
  .hero-ghost:hover{
    background:rgba(255,255,255,.14) !important;
  }
  
  /* Overlap elegante de las cards */
  .contacto-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
    align-items:start;
  
    margin-top:-46px;
    position:relative;
    z-index:3;
  }
  
  /* Fondo suave general */
  body{
    background:#f6f7f9;
  }
  
  /* Responsive */
  @media (max-width:900px){
  
    .contacto-grid{
      grid-template-columns:1fr;
      margin-top:-26px;
    }
  
    .hero-contacto{
      min-height:360px;
    }
  
    .hero-overlay{
      padding:60px 0 70px;
    }
  
    .hero-contacto h1{
      font-size:38px;
    }
  }
  
  @media (max-width:520px){
  
    .contacto-grid{ margin-top:-18px; }
  
    .hero-contacto h1{ font-size:32px; }
    .hero-contacto p{ font-size:16px; }
  }
  
  /* =========================
   HERO – Ajuste más claro con degradé elegante
   ========================= */

.hero-contacto::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: url('/assets/img/contacto-hero.jpg');
  background-size: cover;
  background-position: center 45%;
  transform: scale(1.02);

  /* Más claridad */
  filter: grayscale(.10) contrast(1.05) brightness(.92);
}

.hero-contacto::after{
  content:"";
  position:absolute;
  inset:0;

  /* Degradé más sutil pero con foco en el texto */
  background: linear-gradient(
    90deg,
    rgba(12,15,20,.75) 0%,
    rgba(17,19,24,.55) 35%,
    rgba(17,19,24,.30) 60%,
    rgba(17,19,24,.12) 80%,
    rgba(17,19,24,0) 100%
  );

  pointer-events:none;
}

/* CTA dentro del grid ocupando ancho completo */
.cta-full{
  grid-column: 1 / -1;
  margin-top: 10px;
}

/* Que el grid tenga más respiración */
.contacto-grid{
  gap: 26px;
}

/* Sombra más elegante para el CTA */
.cta{
  box-shadow: 0 20px 60px rgba(17,19,24,.08);
}

.cta-full{
  grid-column: 1 / -1;
}
/* =========================
   FIX HUECO SIN TOCAR HTML
   (CTA se mete en la columna izquierda)
   ========================= */

   @media (min-width: 901px){

    /* tu grid ya es 2 columnas; replicamos el gap */
    .cta{
      width: calc(50% - 11px);     /* 11px = gap/2 (tu gap ~22px) */
      margin-top: -240px;          /* 👈 AJUSTÁ ESTE VALOR (220–320 suele ir) */
      position: relative;
      z-index: 5;
    }
  
    /* asegura que no quede centrado raro */
    .cta{
      margin-left: 0;
      margin-right: auto;
    }
  }
  
  /* En mobile vuelve normal */
  @media (max-width: 900px){
    .cta{
      width: 100%;
      margin-top: 22px;
    }
  }

  /* =========================
   HERO ÁREAS (igual estilo que Contacto)
   Imagen: /assets/img/areas-hero.jpg
   ========================= */

.hero-areas{
  position: relative;
  min-height: 420px;
  overflow: hidden;
  z-index: 1;
}

.hero-areas::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: url('/assets/img/areas-hero.jpg');
  background-size: cover;
  background-position: center 45%;
  transform: scale(1.02);
  filter: grayscale(.10) contrast(1.05) brightness(.92);
}

/* Degradé editorial (oscuro izquierda, liviano derecha) */
.hero-areas::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    rgba(12,15,20,.75) 0%,
    rgba(17,19,24,.55) 35%,
    rgba(17,19,24,.30) 60%,
    rgba(17,19,24,.12) 80%,
    rgba(17,19,24,0) 100%
  );
  pointer-events:none;
}

.hero-areas .hero-overlay{
  position: relative;
  z-index: 2;
  padding: 70px 0 80px;
  color: #fff;
}

/* Reutiliza estilos ya existentes si los tenés;
   si no, estas reglas cubren todo */
.hero-areas .hero-kicker{
  display:inline-block;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.08);
}

.hero-areas h1{
  margin:14px 0 12px;
  font-size:46px;
  line-height:1.05;
  letter-spacing:-0.02em;
  max-width:18ch;
}

.hero-areas p{
  margin:0;
  max-width:70ch;
  font-size:18px;
  color:rgba(255,255,255,.92);
}

.hero-areas .hero-actions{
  margin-top:18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* Responsive */
@media (max-width:900px){
  .hero-areas{ min-height:360px; }
  .hero-areas .hero-overlay{ padding:60px 0 70px; }
  .hero-areas h1{ font-size:38px; }
}

@media (max-width:520px){
  .hero-areas h1{ font-size:32px; }
  .hero-areas p{ font-size:16px; }
}

.hero-areas::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    rgba(12,15,20,.65) 0%,
    rgba(17,19,24,.45) 35%,
    rgba(17,19,24,.20) 60%,
    rgba(17,19,24,.05) 80%,
    rgba(17,19,24,0) 100%
  );
}

.hero-areas::before{
  filter: grayscale(.08) contrast(1.05) brightness(.98);
}

.section-light{
  background:#f6f7f9;
}

.map-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.map-embed iframe{
  border-radius:12px;
}

.section-cta{
  padding-top:60px;
}

.cta.centered{
  text-align:center;
  max-width:720px;
  margin:0 auto;
}

.cta-buttons{
  margin-top:18px;
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

@media(max-width:900px){
  .map-section{
    grid-template-columns:1fr;
  }
}
/* =========================
   ONDA EXTRA: SVG + reveal + mapa + secciones
   ========================= */

   .hero { position: relative; overflow: hidden; }
   .hero-decor{
     position:absolute;
     inset:auto -120px -80px -120px;
     height: 260px;
     pointer-events:none;
     opacity: .10;
   }
   .hero-decor svg{ width:100%; height:100%; }
   .hero-decor path{ fill: #111318; }
   
   /* Sección suavizada para editorial */
   .section-soft{
     background: #f6f7f9;
   }
   
   /* Location (texto + mapa) */
   .location{
     display:grid;
     grid-template-columns: 1fr 1fr;
     gap: 26px;
     align-items: start;
   }
   .map-card{
     padding: 0;
     overflow: hidden;
   }
   .map-card iframe{
     display:block;
     width:100%;
     height: 340px;
     border: 0;
   }
   
   /* CTA centrado */
   .section-cta{ padding-top: 56px; }
   .cta.centered{
     text-align:center;
     max-width: 780px;
     margin: 0 auto;
   }
   .cta-buttons{
     margin-top: 16px;
     display:flex;
     justify-content:center;
     gap: 12px;
     flex-wrap: wrap;
   }
   
   /* Reveal animation */
   .reveal{
     opacity: 0;
     transform: translateY(10px);
     transition: opacity .55s ease, transform .55s ease;
   }
   .reveal.is-visible{
     opacity: 1;
     transform: translateY(0);
   }
   @media (prefers-reduced-motion: reduce){
     .reveal{ opacity: 1; transform:none; transition:none; }
   }
   
   /* Responsive */
   @media (max-width: 900px){
     .location{ grid-template-columns: 1fr; }
     .hero-decor{ opacity: .08; height: 200px; inset:auto -120px -60px -120px; }
   }
   .hero-corners{
    position:absolute;
    inset:0;
    pointer-events:none;
    z-index: 0; /* detrás del texto */
  }
  
  .hero-corners .corner{
    position:absolute;
    width: 220px;
    height: 220px;
    opacity: .10;
    filter: blur(.0px);
  }
  
  .corner-tr{ top: -35px; right: -35px; transform: rotate(8deg); }
  .corner-bl{ bottom: -35px; left: -35px; transform: rotate(-10deg); }
  
  .hero-corners path{
    fill: none;
    stroke: rgba(255,255,255,.85);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  
  @media (max-width: 900px){
    .hero-corners .corner{ width: 170px; height: 170px; opacity: .08; }
  }
  .section-divider{
    margin-top: -18px; /* engancha con el hero */
    position: relative;
    z-index: 2;
    line-height: 0;
  }
  
  .section-divider svg{
    display:block;
    width:100%;
    height: 64px;
  }
  
  .section-divider path{
    fill: #f6f7f9; /* mismo que tu fondo soft */
  }
  .section-soft{
    position: relative;
    background: #f6f7f9;
    overflow: hidden;
  }
  
  .section-soft::before{
    content:"";
    position:absolute;
    inset:-120px -120px -120px -120px;
    background-image: radial-gradient(rgba(17,19,24,.10) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: .18;
    pointer-events:none;
    transform: rotate(-6deg);
  }
  @media (prefers-reduced-motion: no-preference){
    .hero-corners .corner{
      animation: floaty 6s ease-in-out infinite;
    }
    .corner-bl{ animation-delay: -2s; }
  }
  
  @keyframes floaty{
    0%,100%{ transform: translateY(0) rotate(8deg); }
    50%{ transform: translateY(8px) rotate(8deg); }
  }
  /* =========================
   SVG ORNAMENTS
   ========================= */

/* HERO ORNAMENTS */
.hero { position: relative; }

.hero-ornaments{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
}

.hero-ornaments svg{
  position:absolute;
  width:200px;
  height:200px;
  opacity:.08;
}

.ornament-tr{
  top:-40px;
  right:-40px;
  transform: rotate(8deg);
}

.ornament-bl{
  bottom:-40px;
  left:-40px;
  transform: rotate(-8deg);
}

.hero-ornaments path{
  fill:none;
  stroke:#111318;
  stroke-width:2;
  stroke-linecap:round;
}

/* Divider */
.section-divider{
  line-height:0;
  margin-top:-10px;
}

.section-divider svg{
  width:100%;
  height:60px;
}

.section-divider path{
  fill:#f6f7f9;
}

/* H2 ornamental line */
.section h2{
  position:relative;
  display:inline-block;
  padding-bottom:10px;
}

.section h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:60%;
  height:2px;
  background:linear-gradient(to right, #111318, transparent);
  opacity:.25;
}

/* CTA ornament */
.cta-ornament{
  margin-bottom:14px;
  opacity:.2;
}

.cta-ornament svg{
  width:180px;
  height:40px;
}

.cta-ornament path{
  stroke:#111318;
  stroke-width:2;
  fill:none;
}

.cta-ornament circle{
  fill:#111318;
}

/* Animación sutil */
@media (prefers-reduced-motion: no-preference){
  .hero-ornaments svg{
    animation: floaty 6s ease-in-out infinite;
  }
}

@keyframes floaty{
  0%,100%{ transform: translateY(0) rotate(8deg); }
  50%{ transform: translateY(6px) rotate(8deg); }
}

@media (max-width:900px){
  .hero-ornaments svg{
    width:150px;
    height:150px;
    opacity:.06;
  }
}
/* =========================
   FOOTER PRO
   ========================= */

   .footer-pro{
    margin-top: 56px;
    padding: 22px 0;
    background: #0f1116;
    color: rgba(255,255,255,.86);
    border-top: 1px solid rgba(255,255,255,.08);
  }
  
  .footer-pro__inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 16px;
  }
  
  .footer-pro__name{
    font-weight: 800;
    letter-spacing: -0.01em;
  }
  
  .footer-pro__meta{
    margin-top: 3px;
    font-size: 13px;
    color: rgba(255,255,255,.62);
  }
  
  .footer-pro__legal{
    margin-top: 10px;
    font-size: 12px;
    color: rgba(255,255,255,.50);
  }
  
  .footer-pro__right{
    display:flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content:flex-end;
  }
  
  /* Pills sociales */
  .social-pill{
    display:inline-flex;
    align-items:center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.90);
    text-decoration:none;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
  }
  
  .social-pill__icon{
    width: 18px;
    height: 18px;
    display:inline-flex;
  }
  
  .social-pill__icon svg{
    width: 18px;
    height: 18px;
    color: rgba(255,255,255,.92);
  }
  
  .social-pill__text{
    font-weight: 700;
    font-size: 13px;
  }
  
  /* Hover con “onda” */
  .social-pill:hover{
    transform: translateY(-2px);
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.18);
  }
  
  /* Focus accesible */
  .social-pill:focus-visible{
    outline: 2px solid rgba(255,255,255,.35);
    outline-offset: 2px;
  }
  
  /* Responsive */
  @media (max-width: 900px){
    .footer-pro__inner{
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-pro__right{
      justify-content:flex-start;
    }
  }

  /* Centrar botones del CTA del index */

.section-cta .cta{
  text-align: center;
}

.section-cta .cta-buttons{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.section-cta .cta{
  max-width: 640px;
  margin: 0 auto;
}
.section-cta .cta-buttons{
  margin: 18px auto 0 auto;
  text-align: center;
}

.section-cta .cta-buttons a{
  display: inline-block;
  margin: 0 6px;
}
/* =========================
   Editorial cards con imagen
   ========================= */

   .card-post{
    overflow: hidden;
    padding: 0;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  
  .card-post:hover{
    transform: translateY(-4px);
  }
  
  .card-post .card-image{
    height: 180px;
    overflow: hidden;
  }
  
  .card-post .card-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
  }
  
  .card-post:hover .card-image img{
    transform: scale(1.05);
  }
  
  .card-post .card-pad{
    padding: 18px;
  }

  /* =========================
   AREAS - cards con SVG + microinteracción
   ========================= */

.area-card{
  position: relative;
  display: block;
  padding: 18px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  border: 1px solid rgba(17,19,24,.08);
}

.area-head{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.area-ico{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(17,19,24,.04);
  border: 1px solid rgba(17,19,24,.08);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.area-ico svg{
  width: 22px;
  height: 22px;
  stroke: #111318;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .92;
}

/* Títulos existentes */
.area-title{
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.area-meta{
  color: rgba(17,19,24,.65);
  font-size: 14px;
}

.area-cta{
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  color: rgba(17,19,24,.80);
}

/* Hover pro */
.area-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(17,19,24,.10);
  border-color: rgba(17,19,24,.14);
}

.area-card:hover .area-ico{
  background: rgba(17,19,24,.06);
  border-color: rgba(17,19,24,.14);
}

/* Focus accesible */
.area-card:focus-visible{
  outline: 2px solid rgba(17,19,24,.30);
  outline-offset: 3px;
}

/* =========================
   UBICACIÓN / MAPA (match con tu HTML)
   ========================= */

   .location{
    display:grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 18px;
    align-items: start;
  }
  
  @media (max-width: 900px){
    .location{
      grid-template-columns: 1fr;
    }
  }
  
  /* Card del mapa */
  .map-card{
    position: relative;
    overflow: hidden;
    border-radius: 18px;                 /* redondeo lindo */
    box-shadow: 0 18px 40px rgba(0,0,0,.14);
    transform: translateZ(0);            /* mejora render */
    transition: transform .35s ease, box-shadow .35s ease;
    border: 1px solid rgba(255,255,255,.08); /* si tu sitio es oscuro queda 🔥 */
  }
  
  /* Efecto hover sutil (no circo) */
  .map-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(0,0,0,.22);
  }
  
  /* El iframe del mapa */
  .map-card iframe{
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
    filter: saturate(1.05) contrast(1.05) grayscale(.12);
  }
  
  /* Degradado overlay para integrar con estética */
  .map-card::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
      radial-gradient(600px 240px at 30% 15%, rgba(199,161,74,.18), rgba(0,0,0,0) 60%),
      linear-gradient(180deg, rgba(0,0,0,0) 58%, rgba(0,0,0,.16));
    opacity: .95;
  }
  
  /* “brillito” en el borde cuando hover */
  .map-card::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    border-radius: 18px;
    background: linear-gradient(135deg,
      rgba(199,161,74,.35),
      rgba(255,255,255,.08),
      rgba(199,161,74,.10)
    );
    opacity: 0;
    transition: opacity .35s ease;
    mix-blend-mode: overlay;
  }
  
  .map-card:hover::before{
    opacity: .55;
  }
  
  /* Extra: si querés que el bloque “Dirección” quede más parejo con el mapa */
  .location .card{
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,.10);
  }
  
  /* Ajuste visual para que no quede “aplastado” en desktop */
  .location .reveal:first-child .card{
    position: sticky;
    top: 18px; /* si no te gusta sticky, borrá estas 2 líneas */
  }
  /* BOTÓN WHATSAPP HEADER */

.btn-whatsapp{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all .3s ease;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp svg{
  flex-shrink: 0;
}

/* WHATSAPP HEADER CIRCULAR */

.whatsapp-fab{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111318; /* si tu header es claro */
  color: #25D366;
  text-decoration: none;
  transition: all .3s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,.15);
}

.whatsapp-fab:hover{
  background: #25D366;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(37,211,102,.35);
}
/* =========================
   AREA HERO (visual + deco)
   ========================= */
   .area-hero{
    margin:18px 0 26px;
    display:grid;
    grid-template-columns: 1.05fr .95fr;
    gap:18px;
    align-items:stretch;
    border-radius:18px;
    padding:18px;
    position:relative;
    overflow:hidden;
    background: linear-gradient(180deg, rgba(17,19,24,.04), rgba(17,19,24,.00));
    border:1px solid rgba(17,19,24,.10);
  }
  
  @media (max-width: 900px){
    .area-hero{ grid-template-columns:1fr; }
  }
  
  .area-hero__content{ display:flex; flex-direction:column; gap:12px; padding:6px 6px 6px 10px; }
  .area-hero__kicker{ display:flex; flex-wrap:wrap; gap:10px; }
  
  .area-chip{
    display:inline-flex; align-items:center; gap:8px;
    padding:8px 10px;
    border-radius:999px;
    background: rgba(255,255,255,.8);
    border:1px solid rgba(17,19,24,.10);
    font-weight:600;
    font-size:13px;
  }
  .area-chip svg{ width:16px; height:16px; fill: currentColor; opacity:.9; }
  
  .area-hero__text{
    margin:0;
    font-size:16px;
    line-height:1.5;
    opacity:.9;
  }
  
  .area-hero__meta{
    margin-top:auto;
    display:flex;
    flex-wrap:wrap;
    gap:10px 14px;
    opacity:.92;
  }
  .meta-item{ display:flex; align-items:center; gap:8px; font-size:13px; }
  .meta-dot{ width:8px; height:8px; border-radius:50%; background: currentColor; opacity:.35; }
  
  .area-hero__media{
    margin:0;
    position:relative;
    border-radius:16px;
    overflow:hidden;
    min-height:220px;
    border:1px solid rgba(17,19,24,.12);
    transform: translateZ(0);
  }
  .area-hero__img{
    width:100%;
    height:100%;
    min-height:220px;
    object-fit:cover;
    display:block;
    transform: scale(1.02);
    will-change: transform;
  }
  .area-hero__shade{
    position:absolute; inset:0;
    background: radial-gradient(800px 280px at 20% 10%, rgba(255,255,255,.08), transparent 55%),
                linear-gradient(180deg, rgba(17,19,24,.05), rgba(17,19,24,.22));
    pointer-events:none;
  }
  
  .area-hero__orn{
    position:absolute;
    color: rgba(255,255,255,.92);
    pointer-events:none;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,.18));
  }
  .area-hero__orn.a{ top:-20px; left:-20px; width:220px; opacity:.75; }
  .area-hero__orn.b{ bottom:-40px; right:-40px; width:240px; opacity:.65; }
  
  .area-dots{ position:absolute; inset:0; pointer-events:none; }
  .area-dots span{
    position:absolute;
    width:7px; height:7px;
    border-radius:50%;
    background: rgba(255,255,255,.75);
    opacity:.22;
    filter: blur(.2px);
  }
  .area-dots span:nth-child(1){ top:16%; left:18%; }
  .area-dots span:nth-child(2){ top:28%; left:70%; width:9px; height:9px; opacity:.18; }
  .area-dots span:nth-child(3){ top:58%; left:38%; width:6px; height:6px; opacity:.22; }
  .area-dots span:nth-child(4){ top:72%; left:82%; width:10px; height:10px; opacity:.14; }
  .area-dots span:nth-child(5){ top:82%; left:14%; width:8px; height:8px; opacity:.16; }
  
  /* =========================
     REVEAL (animación scroll)
     ========================= */
  .reveal{
    opacity:0;
    transform: translateY(14px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .reveal.is-visible{
    opacity:1;
    transform: translateY(0);
  }
  /* Parche stacking: imagen abajo, overlay arriba, deco arriba del overlay */
.area-hero__img{ position:relative; z-index:1; }
.area-hero__shade{ z-index:2; }
.area-hero__orn{ z-index:3; }
.area-dots{ z-index:3; }

/* Botón hamburguesa */
.nav-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:42px; height:42px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:inherit;
  cursor:pointer;
}

/* Responsive: ocultar links desktop y mostrar toggle */
@media (max-width: 860px){
  .navlinks{ display:none; }
  .nav-toggle{ display:flex; }
}