/* =========================
   MAWDY Strong — Landing
   ========================= */

/* HERO full-bleed (ancho completo aunque estés dentro de .container) */
.mawdy-hero{
  position:relative;
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);

  min-height:64vh;
  display:flex;
  align-items:stretch;
  overflow:hidden;

  background:
    linear-gradient(120deg, rgba(0,0,0,.25), rgba(0,0,0,.25)),
    url('/img/mawdy/grua_mawdy.jpg');
  background-size:cover;
  background-position:58% 45%;
}

/* Caja interna (respeta el ancho del sitio) */
.mawdy-hero .hero-inner{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 18px;

  display:flex;
  justify-content:flex-end;
  align-items:stretch;
}

/* Panel rojo (40%) ocupa TODO el alto del hero */
.mawdy-hero .hero-panel{
  width:50%;
  min-width:480px;

  background:rgba(229,57,53,.40);
  backdrop-filter:blur(2px);

  /* oblicuo */
  clip-path:polygon(14% 0, 100% 0, 100% 100%, 0 100%);

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;

  padding:44px 34px;
  color:#fff;
}

/* Tipografía / legibilidad */
.mawdy-hero h1{
  margin:0 0 10px 0;
  font-size:clamp(30px, 3.6vw, 56px);
  line-height:1.03;
  letter-spacing:-0.6px;
  text-shadow:0 10px 24px rgba(0,0,0,.35);
}
.mawdy-hero h1 span{ color:#fff; }

.mawdy-hero .subtitle{
  margin:0;
  max-width:52ch;
  font-size:clamp(15px, 1.3vw, 18px);
  line-height:1.35;
  opacity:.98;
  text-shadow:0 10px 22px rgba(0,0,0,.25);
}

.mawdy-hero .hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:18px;
}

/* Botón WhatsApp (verde + icono) */
.btn-wa{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  padding:12px 16px;
  border-radius:10px;
  text-decoration:none;
  font-weight:800;

  background:#25D366;
  color:#fff;

  border:1px solid rgba(255,255,255,.45); /* borde más sutil */
  box-shadow:0 10px 22px rgba(0,0,0,.20);
}
.btn-wa i{ font-size:18px; }
.btn-wa:hover{ filter:brightness(.98); transform:translateY(-1px); }
.btn-wa:active{ transform:translateY(0); }

/* Botón “Ver planes” (sin icono WhatsApp) */
.btn-scroll{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:12px 16px;
  border-radius:10px;
  text-decoration:none;
  font-weight:800;

  background:rgba(255,255,255,.16);
  color:#fff;

  border:1px solid rgba(255,255,255,.40);
  box-shadow:0 10px 22px rgba(0,0,0,.18);
}
.btn-scroll:hover{ background:rgba(255,255,255,.20); transform:translateY(-1px); }
.btn-scroll:active{ transform:translateY(0); }

/* =========================
   PLANES — usando TUS clases reales
   ========================= */

.mawdy-section{
  padding:40px 0 10px 0;
}

.section-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:14px;
  margin-bottom:16px;
}

.section-head h2{
  margin:0;
  font-size:22px;
}

/* grilla 3 columnas */
.mawdy-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  align-items:stretch;
}

/* cards prolijas: botón siempre abajo */
.mawdy-card{
  background:#fff;
  border-radius:16px;
  padding:24px 22px;
  border:1px solid rgba(10,20,35,.10);
  box-shadow:0 10px 26px rgba(0,0,0,.08);

  display:flex;
  flex-direction:column;
  min-height:100%;
}

.mawdy-card h3{
  margin:0 0 8px 0;
  font-size:20px;
  color:#0b1c2d;
  min-height:44px; /* ayuda a alinear títulos */
}

.mawdy-card .desc{
  margin:0 0 12px 0;
  color:rgba(10,20,35,.78);
  font-size:14px;
  min-height:44px; /* ayuda a alinear descripciones */
}

/* lista */
.mawdy-list{
  margin:0;
  padding:0;
  list-style:none;

  display:flex;
  flex-direction:column;
  gap:10px;

  flex:1; /* estira para que el botón quede abajo */
}

.mawdy-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:rgba(10,20,35,.88);
  font-size:14px;
  line-height:1.25;
}

/* ícono fijo: evita “bailes” y queda consistente */
.mawdy-ico{
  width:28px;
  height:28px;
  min-width:28px;
  border-radius:999px;
  display:grid;
  place-items:center;

  background:rgba(37,211,102,.14);
  color:#25D366;
  font-weight:900;
}

/* CTA al pie */
.card-actions{
  margin-top:auto;
  padding-top:16px;
}

.card-actions .btn-wa{
  width:100%;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 980px){
  .mawdy-grid{ grid-template-columns:1fr; }
}

@media (max-width: 768px){
  .mawdy-hero{
    min-height:54vh;
    background-position:38% 48%;
  }

  .mawdy-hero .hero-inner{
    justify-content:center;
    padding:0 14px;
  }

  .mawdy-hero .hero-panel{
    width:100%;
    min-width:0;
    clip-path:none;
    padding:22px 18px;
  }

  .btn-wa, .btn-scroll{ width:100%; }
}
