:root {
  --bg: #f6f7fb;
  --text: #0f172a;
  --muted: #6b7280;
  --gray-brand: #b1b5b8;
  --card: #ffffff;
  --nav: #ffffff;
  --primary: #ffd201;

  --principal: #074075;
  --primary2: #0d3752;

  --soft: #91b6d6;

  --ring: rgba(255, 210, 1, 0.35);
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  --radius: 20px;
  --radius2: 16px;
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    "Montserrat",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    Arial;
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
}


body.page-home .hero .container {
  max-width: none;
  padding: 0;
}

/* ===== NAV ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: saturate(140%) blur(6px);
}

.nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand .logo {
  width: 150px;
  padding: 9px 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand .logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand small {
  display: block;
  color: var(--muted);
  font-weight: 800;
  margin-top: 2px;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 800;
  font-size: 17px;
  color: var(--primary2);
}

.navlinks a {
  opacity: 0.9;
}

.navlinks a:hover {
  opacity: 1;
}

.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    0.18s transform,
    0.18s box-shadow;
  box-shadow: 0 10px 18px rgba(2, 6, 23, 0.08);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--primary);
  color: var(--primary2);
}

.btn-primary:hover {
  box-shadow: 0 14px 24px rgba(255, 210, 1, 0.25);
}

.btn-ghost {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: none;
}

.btn-ghost:hover {
  box-shadow: 0 10px 18px rgba(2, 6, 23, 0.08);
}

/* mobile nav */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--primary2);
  width: 18px;
  margin: 0 auto;
  position: relative;
}

.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--primary2);
}

.hamburger span::before {
  top: -6px;
}

.hamburger span::after {
  top: 6px;
}

.mobilemenu {
  display: none;
  padding: 12px 0 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.mobilemenu a {
  display: block;
  padding: 10px 0;
  font-weight: 800;
  color: var(--primary2);
}

.mobilemenu .row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.mobilemenu.show {
  display: block;
}

/* ===== HERO SLIDER ===== */
.hero {
  padding: 0;
}

.slider {
  overflow: hidden;
  background: var(--primary2);
  position: relative;
  min-height: 680px;
}

.slides {
  display: flex;
  transition: transform 0.6s ease;
  height: 100%;
}

.slide {
  min-width: 100%;
  position: relative;
  display: grid;
  align-items: center;
  padding: 42px max(16px, calc((100vw - 1280px) / 2 + 16px));
  color: white;
  height: 680px;
  background-size: cover;
  background-position: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 55, 82, 0.85) 0%,
    rgba(13, 55, 82, 0.65) 45%,
    rgba(13, 55, 82, 0.25) 100%
  );
}

.content {
  position: relative;
  max-width: 600px;
}

.pill {
  display: inline-block;
  background: rgba(255, 210, 1, 0.95);
  color: var(--primary2);
  font-weight: 800;
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.h1 {
  font-size: 60px;
  line-height: 1.05;
  margin: 8px 0 14px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.h1 .accent {
  color: var(--primary);
}

.p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
}

.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta .btn {
  font-size: 16px;
  padding: 13px 22px;
}

.btn-dark {
  background: var(--principal);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.btn-dark:hover {
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
}

.navarrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(2, 6, 23, 0.28);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: 0.15s background;
  z-index: 5;
}

.navarrow:hover {
  background: rgba(2, 6, 23, 0.42);
}

.navarrow.left {
  left: 14px;
}

.navarrow.right {
  right: 14px;
}

.dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 6;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.dot.active {
  background: var(--primary);
}

/* ===== SECCIONES ===== */
.section {
  padding: 44px 0;
}

.section h2 {
  margin: 0 0 10px;
  font-size: 26px;
  letter-spacing: -0.3px;
}

.section .sub {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 300;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

/* .card .thumb{
  height:160px;
  background:#e2e8f0;
  position:relative;
  background-size:cover;
  background-position:center;
} */

.card .thumb {
  height: 260px;
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== Carrusel modelos ===== */
.carousel {
  position: relative;
  margin-top: 10px;
}

.carousel .track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 6px 14px;
  scrollbar-width: none;
  /* Firefox */
}

.carousel .track::-webkit-scrollbar {
  display: none;
}

/* Chrome */

.model-card {
  flex: 0 0 340px;
  /* ancho card */
  scroll-snap-align: start;
}

.model-card .thumb {
  height: 240px;
  /* más alto para plano */
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.model-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* planos: no recortar */
}

/* Flechas */
/* ===== Flechas carrusel premium ===== */
.cnav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  color: var(--primary2);
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;

  z-index: 5;
}

.cnav:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}

.cnav:active {
  transform: translateY(-50%) scale(0.95);
}

/* Posición */
.cnav.left {
  left: -24px;
}

.cnav.right {
  right: -24px;
}

@media (max-width: 920px) {
  .cnav.left {
    left: 8px;
  }

  .cnav.right {
    right: 8px;
  }
}

/* ===== Modal ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  padding: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.32s ease,
    visibility 0.32s ease;
}

.modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  /* CLAVE */
  max-width: min(1100px, 96vw);
  max-height: 92vh;
  transform: scale(0.96);
  transition: transform 0.15s ease;
}

.modal.show .modal-content {
  transform: scale(1);
}

.modal-content img {
  width: 100%;
  height: auto;
  max-height: 92vh;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--primary2);
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.close-modal:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.close-modal:active {
  transform: scale(0.96);
}

.modalDatosActions {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.btnDatosAccept {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  background: var(--primary);
  color: var(--primary2);
  box-shadow: 0 14px 26px rgba(255, 210, 1, 0.28);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.btnDatosAccept:hover {
  box-shadow: 0 18px 32px rgba(255, 210, 1, 0.35);
}
.btnDatosAccept:active {
  transform: translateY(1px);
}

/* 🔥 Banner azul 81 m² */
.area-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary2);
  color: white;
  font-weight: 800;
  font-size: 20px;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(13, 55, 82, 0.92);
  color: white;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.price {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: var(--primary2);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.card .body {
  padding: 14px 14px 16px;
}

.card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.meta {
  color: var(--muted);
  font-weight: 300;
  font-size: 13px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Testimonios */
.testi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.quote {
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.quote .stars {
  font-size: 14px;
  margin-bottom: 10px;
}

.quote p {
  margin: 0 0 12px;
  color: #0f172a;
  font-weight: 300;
  line-height: 1.5;
}

.quote b {
  display: block;
}

.quote small {
  color: var(--muted);
  font-weight: 800;
}

.quote.highlight {
  background: var(--primary2);
  color: #fff;
}

.quote.highlight p {
  color: rgba(255, 255, 255, 0.86);
}

.quote.highlight small {
  color: rgba(255, 255, 255, 0.75);
}

/* CTA */
.ctaBar {
  background: linear-gradient(0deg, #ffd201 0%, #ffe066 100%);
  border-radius: 24px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow);
}

.ctaBar h3 {
  margin: 0 0 6px;
  font-size: 26px;
}

.ctaBar p {
  margin: 0;
  color: var(--primary2);
  font-weight: 300;
}

.ctaBar .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-blue {
  background: var(--primary2);
  color: #fff;
}

/* Footer */
footer {
  background: var(--primary2);
  color: #dbeafe;
  padding: 34px 0;
}

footer .fgrid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
}

footer a {
  opacity: 0.9;
}

footer a:hover {
  opacity: 1;
}

footer h4 {
  margin: 0 0 10px;
}

footer p {
  margin: 0;
  color: rgba(219, 234, 254, 0.85);
  font-weight: 300;
  line-height: 1.5;
}

footer .social {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

footer .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #fff;
  color: var(--primary2);
  opacity: 1;
  transition: transform 0.15s ease;
}

footer .social a:hover {
  transform: translateY(-2px);
  opacity: 1;
}

footer .social svg {
  width: 12px;
  height: 12px;
}

.copy {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 18px;
  padding-top: 14px;
  font-weight: 300;
  color: rgba(219, 234, 254, 0.75);
  font-size: 13px;
}

/* ===== Responsive ===== */
@media (max-width: 920px) {
  .grid3,
  .testi {
    grid-template-columns: 1fr;
  }

  .h1 {
    font-size: 42px;
  }

  .slider {
    min-height: 560px;
  }

  .slide {
    height: 560px;
    padding: 28px max(16px, calc((100vw - 1280px) / 2 + 16px));
  }

  footer .fgrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .navlinks {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

/* ===== Contactanos ===== */
.contactHero {
  padding: 48px 0;
}

.contactWrap2 {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 45px rgba(2, 6, 23, 0.1);

  background-image:
    radial-gradient(
      1000px 420px at 10% 25%,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(255, 255, 255, 0.78) 40%,
      rgba(255, 255, 255, 0.35) 75%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(0deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.65)),
    url("../images/contactanos.jpeg");
  background-size: cover;
  background-position: center;

  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 22px;
  align-items: start;
  padding: 20px 28px;
  min-height: 430px;
}

.contactLeft {
  margin-top: -10px;
}

.contactTitle {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.03;
  letter-spacing: -0.8px;
  font-weight: 800;
  color: var(--primary2);
}

.mark {
  background: var(--primary2);
  color: var(--primary);
  padding: 2px 10px;
  /* 👈 más alto que antes */
  border-radius: 10px;
  display: inline-block;
}

.contactDesc {
  margin: 0 0 16px;
  color: rgba(15, 23, 42, 0.74);
  font-weight: 300;
  max-width: 540px;
}

.chipRow {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.chip {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  color: var(--primary2);
  box-shadow: 0 10px 18px rgba(2, 6, 23, 0.08);
  width: fit-content;
}

/* Form tarjeta derecha */
.contactRight {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 35px rgba(2, 6, 23, 0.12);
}

.contactRight h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.formMsg {
  display: none;
  border-radius: 12px;
  padding: 10px 14px;
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
}

.formMsg.show {
  display: block;
}

.formMsg.success {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.formMsg.error {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.formGrid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.7);
  margin: 0 0 6px;
}

.field input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 11px 12px;
  outline: none;
  font-weight: 300;
  background: #fff;
}

.field input:focus {
  border-color: rgba(255, 210, 1, 0.9);
  box-shadow: 0 0 0 4px rgba(255, 210, 1, 0.25);
}

.field.full {
  grid-column: 1 / -1;
}

.check2 {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 10px 0;
  font-weight: 300;
  color: rgba(15, 23, 42, 0.7);
  font-size: 12px;
}

.check2 input {
  margin-top: 3px;
}

/* ===== Modal Datos Personales ===== */
.modalDatos {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 9999;
}

.modalDatos.show {
  opacity: 1;
  visibility: visible;
}

#openPolitica {
  color: var(--principal);
  text-decoration: underline;
  font-weight: 800;
}

#openPolitica:hover {
  color: var(--primary2);
  text-decoration-thickness: 2px;
}

#openPolitica:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(7, 64, 117, 0.22);
  border-radius: 6px;
}

.modalDatosContent {
  background: #fff;
  max-width: 600px;
  width: 90%;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.modalDatosContent h2 {
  margin-top: 0;
  font-size: 22px;
}

.closeDatos {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: #f1f5f9;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}

/* Botón ancho amarillo como captura */
.btnSend {
  width: 100%;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 800;
  background: var(--primary);
  color: var(--primary2);
  box-shadow: 0 14px 26px rgba(255, 210, 1, 0.28);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.btnSend:hover {
  box-shadow: 0 18px 32px rgba(255, 210, 1, 0.35);
}

.btnSend:active {
  transform: translateY(1px);
}

.ctaAlt {
  grid-column: 1 / -1;
  margin-top: 20px;
  text-align: center;
  font-weight: 800;
}

.btnWhatsIcon {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  background: #25d366;
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
}

.btnWhatsIcon:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
}

.btnWhatsIcon svg {
  display: block;
}

/* Responsive */
@media (max-width: 920px) {
  .contactWrap2 {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .contactTitle {
    font-size: 32px;
  }
}
html {
  scroll-behavior: smooth;
}

.navlinks a.active {
  background: var(--primary2);
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
}


/* 🔥 Sticky footer */
html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* ===== Beneficios ===== */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.benefit-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 28px 20px;
  text-align: center;
  flex: 1 1 170px;
  max-width: 210px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.12);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: rgba(7, 64, 117, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.benefit-icon svg { display: block; }

.benefit-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--primary2);
}

.benefit-card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
}

/* ===== Section header (título + botón en fila) ===== */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.section-header h2 {
  margin: 0 0 8px;
  font-size: 26px;
  letter-spacing: -0.3px;
}

.section-header .sub {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
}

/* ===== Preview bands (Bono / Novedades) ===== */
.preview-band {
  padding: 12px 0 44px;
}

.preview-inner {
  border-radius: 24px;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.bono-band .preview-inner {
  background: linear-gradient(135deg, var(--primary2) 0%, var(--principal) 100%);
  box-shadow: 0 16px 48px rgba(13, 55, 82, 0.25);
}

.novedades-band .preview-inner {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
}

.preview-text .pill {
  margin-bottom: 14px;
}

.pill-white {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.preview-text h2 {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.1;
}

.preview-text p {
  margin: 0 0 22px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 520px;
}

.bono-band .preview-text h2,
.bono-band .preview-text p {
  color: rgba(255, 255, 255, 0.92);
}

.preview-visual {
  opacity: 0.18;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.preview-visual svg { display: block; }

@media (max-width: 760px) {
  .preview-inner {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .preview-visual {
    display: none;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .benefits-grid {
    gap: 12px;
  }

  .benefit-card {
    flex: 1 1 calc(50% - 12px);
    max-width: none;
  }
}

