/* ===========================================================
   venta-inmobiliaria.com — styles.css
   Identidad: planos arquitectónicos + documentos de propiedad
   =========================================================== */

:root {
  /* colores corporativos, tomados directamente del logo */
  --vsw-naranja: #F5820A;
  --vsw-naranja-suave: #FFA23C;
  --vsw-rojo: #D31B0B;
  --vsw-rojo-oscuro: #8C0F06;
  --vsw-degradado: linear-gradient(90deg, var(--vsw-naranja) 0%, var(--vsw-rojo) 100%);

  --vsw-tinta: #2E2E2E;
  --vsw-tinta-suave: #63605D;
  --vsw-papel: #FFFFFF;
  --vsw-papel-alt: #FAF7F4;
  --vsw-linea: #E8E2DC;
  --vsw-blanco: #FFFFFF;

  --vsw-serif: 'Fraunces', Georgia, serif;
  --vsw-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --vsw-radio: 3px;
  --vsw-ancho-max: 1160px;

  /* puntos de quiebre de referencia: móvil <640, tablet 640-1023, laptop/desktop >=1024 */
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--vsw-sans);
  color: var(--vsw-tinta);
  background: var(--vsw-papel);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--vsw-serif);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--vsw-tinta);
}

h2 { font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.5rem); }
h3 { font-size: 1.25rem; font-weight: 600; }

p { margin: 0 0 1em; color: var(--vsw-tinta-suave); }

a { color: inherit; }

ul, ol { padding: 0; margin: 0; list-style: none; }

.vsw-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--vsw-tinta);
  color: var(--vsw-papel);
  padding: 0.75em 1.25em;
  z-index: 1000;
}
.vsw-skip:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--vsw-naranja);
  outline-offset: 2px;
}

/* ---------- botones ---------- */

.vsw-boton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9em 1.6em;
  font-family: var(--vsw-sans);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: var(--vsw-radio);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.vsw-boton--bronce {
  position: relative;
  overflow: hidden;
  background: var(--vsw-degradado);
  color: var(--vsw-blanco);
  transition: filter 0.2s ease, transform 0.15s ease;
}
.vsw-boton--bronce:hover { filter: brightness(0.92); }
.vsw-boton--bronce:active { transform: translateY(1px); }

/* onda al hacer clic */
.vsw-onda {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  transform: scale(0);
  animation: vsw-onda-anim 0.65s ease-out forwards;
  pointer-events: none;
}
@keyframes vsw-onda-anim {
  to { transform: scale(1); opacity: 0; }
}

/* estrellitas al pasar el mouse */
.vsw-chispa {
  position: fixed;
  pointer-events: none;
  font-size: 11px;
  z-index: 500;
  opacity: 0;
  animation: vsw-chispa-anim 0.85s ease-out forwards;
}
@keyframes vsw-chispa-anim {
  0% { opacity: 0; transform: translate(0, 0) scale(0.4) rotate(0deg); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(1) rotate(160deg); }
}

@media (prefers-reduced-motion: reduce) {
  .vsw-onda, .vsw-chispa { animation: none; display: none; }
}

.vsw-boton--linea {
  background: transparent;
  color: var(--vsw-tinta);
  border-color: var(--vsw-tinta);
}
.vsw-boton--linea:hover {
  background: var(--vsw-tinta);
  color: var(--vsw-papel);
}

/* ---------- header ---------- */

.vsw-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 239, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--vsw-linea);
}

.vsw-header__inner {
  max-width: var(--vsw-ancho-max);
  margin: 0 auto;
  padding: 0.6em 1.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5em;
}

.vsw-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.vsw-logo__img {
  display: block;
  height: 64px;
  width: auto;
}

.vsw-logo--footer .vsw-logo__img { height: 34px; }

.vsw-nav {
  display: flex;
  align-items: center;
  gap: 1.75em;
  font-size: 0.95rem;
}

.vsw-nav a {
  position: relative;
  text-decoration: none;
  color: var(--vsw-tinta-suave);
  padding-bottom: 4px;
  transition: color 0.2s ease;
}
.vsw-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--vsw-naranja);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.vsw-nav a:hover,
.vsw-nav a.is-activo {
  color: var(--vsw-tinta);
}
.vsw-nav a:hover::after,
.vsw-nav a.is-activo::after {
  transform: scaleX(1);
}
.vsw-nav a.vsw-nav__acceso::after { display: none; }

.vsw-nav__acceso {
  color: var(--vsw-blanco) !important;
  background: var(--vsw-tinta);
  padding: 0.55em 1.1em;
  border-radius: var(--vsw-radio);
  border-bottom: none !important;
}
.vsw-nav__acceso:hover { background: var(--vsw-rojo-oscuro); }

.vsw-navtoggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5em;
}
.vsw-navtoggle span {
  width: 22px;
  height: 2px;
  background: var(--vsw-tinta);
  display: block;
}
.vsw-navtoggle__label { display: none; }

/* ---------- hero + slider ---------- */

.vsw-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--vsw-linea);
}

.vsw-slider {
  position: relative;
  width: 100%;
  height: 46vh;
  min-height: 380px;
  max-height: 640px;
  overflow: hidden;
  background: var(--vsw-tinta);
}

.vsw-slider__track {
  position: absolute;
  inset: 0;
}

.vsw-slider__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--vsw-tinta);
  opacity: 0;
  transition: opacity 1.1s ease;
  transform: scale(1);
}
.vsw-slider__slide.is-activa {
  opacity: 1;
  animation: vsw-kenburns 7s ease-in-out forwards;
}

@keyframes vsw-kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.vsw-slider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,28,27,0.62) 0%, rgba(30,28,27,0.4) 45%, rgba(20,18,17,0.78) 100%);
}

.vsw-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  height: 100%;
  margin: 0 auto;
  padding: 0 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vsw-hero__kicker {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vsw-naranja-suave);
  margin-bottom: 0.9em;
}

.vsw-hero__titulo {
  color: var(--vsw-blanco);
  font-size: clamp(1.9rem, 1.4rem + 2.2vw, 3rem);
  opacity: 0;
  transform: translateY(14px);
  animation: vsw-entrada 0.7s ease forwards;
}

.vsw-hero__sub {
  color: #EDEAE6;
  font-size: 1.05rem;
  max-width: 46ch;
  opacity: 0;
  transform: translateY(14px);
  animation: vsw-entrada 0.7s ease 0.15s forwards;
}

.vsw-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 1.6em;
  opacity: 0;
  transform: translateY(14px);
  animation: vsw-entrada 0.7s ease 0.3s forwards;
}

.vsw-hero .vsw-boton--linea {
  color: var(--vsw-blanco);
  border-color: rgba(255,255,255,0.7);
}
.vsw-hero .vsw-boton--linea:hover {
  background: var(--vsw-blanco);
  color: var(--vsw-tinta);
}

@keyframes vsw-entrada {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .vsw-hero__titulo, .vsw-hero__sub, .vsw-hero__cta {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .vsw-slider__slide { transition: none; animation: none; }
  html { scroll-behavior: auto; }
}

/* flechas del slider */

.vsw-slider__flecha {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.18);
  color: var(--vsw-blanco);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.vsw-slider__flecha:hover { background: rgba(255,255,255,0.32); }
.vsw-slider__flecha--prev { left: 1em; }
.vsw-slider__flecha--next { right: 1em; }

/* puntos del slider */

.vsw-slider__dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.3em;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6em;
}
.vsw-slider__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.8);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.vsw-slider__dot.is-activo {
  background: var(--vsw-naranja);
  border-color: var(--vsw-naranja);
  transform: scale(1.15);
}

/* ---------- secciones generales ---------- */

.vsw-seccion {
  border-bottom: 1px solid var(--vsw-linea);
}

.vsw-seccion__inner {
  max-width: var(--vsw-ancho-max);
  margin: 0 auto;
  padding: 4.5em 1.5em;
}

.vsw-grid-2 {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3em;
  align-items: start;
}

.vsw-seccion__cabecera h2 { margin-bottom: 0.35em; }

.vsw-lista-check {
  margin-top: 1.5em;
  display: flex;
  flex-direction: column;
  gap: 0.9em;
}
.vsw-lista-check li {
  position: relative;
  padding-left: 1.6em;
  color: var(--vsw-tinta);
}
.vsw-lista-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--vsw-naranja);
  border-radius: 50%;
}

/* ---------- pasos (cómo funciona) ---------- */

.vsw-seccion--pasos { background: var(--vsw-papel-alt); }

.vsw-pasos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5em;
  margin-top: 2.5em;
  counter-reset: paso;
}

.vsw-pasos__item {
  position: relative;
  padding-top: 1.5em;
  border-top: 2px solid var(--vsw-tinta);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.vsw-pasos__item.vsw-visible {
  opacity: 1;
  transform: translateY(0);
}

.vsw-pasos__num {
  display: block;
  font-family: var(--vsw-serif);
  font-size: 2rem;
  color: var(--vsw-naranja);
  margin-bottom: 0.3em;
  transition: color 0.25s ease, transform 0.25s ease;
}
.vsw-pasos__item:hover .vsw-pasos__num {
  color: var(--vsw-rojo);
  transform: scale(1.12) translateX(2px);
}

@media (prefers-reduced-motion: reduce) {
  .vsw-pasos__item { opacity: 1; transform: none; transition: none; }
}

/* ---------- cta de registro ---------- */

.vsw-cta-registro {
  background: var(--vsw-tinta);
  color: var(--vsw-papel);
}
.vsw-cta-registro__inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 4.5em 1.5em;
  text-align: center;
}
.vsw-cta-registro h2 { color: var(--vsw-papel); }
.vsw-cta-registro p { color: #C9CDD6; margin-bottom: 1.6em; }

/* ---------- formulario de contacto ---------- */

.vsw-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2em;
}

.vsw-form__campo { display: flex; flex-direction: column; gap: 0.4em; }
.vsw-form__campo--full { grid-column: 1 / -1; }

.vsw-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vsw-tinta);
}

.vsw-form input,
.vsw-form textarea {
  font-family: var(--vsw-sans);
  font-size: 1rem;
  padding: 0.75em 0.9em;
  border: 1px solid var(--vsw-linea);
  border-radius: var(--vsw-radio);
  background: var(--vsw-blanco);
  color: var(--vsw-tinta);
}

.vsw-form input:focus,
.vsw-form textarea:focus {
  border-color: var(--vsw-naranja);
}

.vsw-form__pie {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-top: 0.4em;
}

.vsw-form__estado {
  font-size: 0.9rem;
  color: var(--vsw-tinta-suave);
}

/* ---------- footer ---------- */

.vsw-footer {
  background: var(--vsw-papel-alt);
  border-top: 1px solid var(--vsw-linea);
}

.vsw-footer__inner {
  max-width: var(--vsw-ancho-max);
  margin: 0 auto;
  padding: 3.5em 1.5em 2em;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5em;
}

.vsw-footer__col p { max-width: 32ch; }

.vsw-footer__col h3 {
  font-size: 0.85rem;
  font-family: var(--vsw-sans);
  font-weight: 700;
  color: var(--vsw-tinta);
  margin-bottom: 0.8em;
}

.vsw-footer__col a {
  display: block;
  text-decoration: none;
  color: var(--vsw-tinta-suave);
  margin-bottom: 0.6em;
}
.vsw-footer__col a:hover { color: var(--vsw-rojo-oscuro); }

.vsw-logo--footer { display: inline-block; margin-bottom: 0.8em; }

.vsw-footer__bottom {
  border-top: 1px solid var(--vsw-linea);
  padding: 1.2em 1.5em;
  text-align: center;
}
.vsw-footer__bottom p {
  margin: 0;
  font-size: 0.85rem;
}
.vsw-footer__bottom a { color: var(--vsw-tinta-suave); }

/* ==========================================================
   Responsive — 3 rangos probados explícitamente:
   móvil        : hasta 639px
   tablet       : 640px – 1023px  (portrait y landscape)
   laptop/desktop: 1024px en adelante
   ========================================================== */

/* --- tablet: layout de una sola columna donde el 2-col aprieta,
   pero conservando la navegación horizontal completa --- */
@media (max-width: 1023px) {
  .vsw-grid-2 { grid-template-columns: 1fr; gap: 2em; }
}

@media (min-width: 640px) {
  .vsw-slider { height: 56vh; min-height: 440px; }
}

@media (min-width: 1024px) {
  .vsw-slider { height: 64vh; min-height: 520px; max-height: 720px; }
}

@media (min-width: 780px) and (max-width: 1023px) {
  .vsw-pasos { grid-template-columns: repeat(3, 1fr); gap: 1.5em; }
  .vsw-footer__inner { grid-template-columns: 1.2fr 1fr 1fr; gap: 2em; }
  .vsw-form { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 779px) {
  .vsw-pasos { grid-template-columns: 1fr; }
  .vsw-footer__inner { grid-template-columns: 1fr 1fr; }
}

/* --- navegación: hamburguesa hasta 779px (cubre celulares y
   tablets angostas en vertical); desde 780px el menú horizontal
   completo ya cabe junto al logo sin apretarse --- */
@media (max-width: 779px) {
  .vsw-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--vsw-papel);
    border-bottom: 1px solid var(--vsw-linea);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .vsw-nav.is-abierto { max-height: 360px; }
  .vsw-nav a {
    width: 100%;
    padding: 1.1em 1.5em;
    border-bottom: 1px solid var(--vsw-linea);
  }
  .vsw-nav__acceso { border-radius: 0; text-align: center; }
  .vsw-navtoggle { display: flex; }

  .vsw-form { grid-template-columns: 1fr; }
}

@media (max-width: 639px) {
  .vsw-footer__inner { grid-template-columns: 1fr; }
  .vsw-logo__img { height: 51px; }
  .vsw-slider__flecha { width: 34px; height: 34px; font-size: 1.25rem; }

  /* slider 30% más alto que la base, para que el texto + botones quepan */
  .vsw-slider { height: 60vh; min-height: 500px; max-height: 680px; }

  .vsw-hero__inner { padding: 0 1.1em; }
  .vsw-hero__kicker { font-size: 0.75rem; margin-bottom: 0.6em; }
  .vsw-hero__titulo { font-size: 1.55rem; line-height: 1.25; }
  .vsw-hero__sub { font-size: 0.9rem; max-width: 34ch; }
  .vsw-hero__cta { gap: 0.7em; margin-top: 1.1em; }
  .vsw-hero .vsw-boton { padding: 0.7em 1.15em; font-size: 0.85rem; }
}

/* --- tablet en el rango donde el nav horizontal ya se muestra:
   ajustamos densidad para que los 5 enlaces + logo respiren --- */
@media (min-width: 780px) and (max-width: 900px) {
  .vsw-nav { gap: 1.25em; font-size: 0.9rem; }
  .vsw-nav__acceso { padding: 0.55em 0.9em; }
}

/* ---------- widget de WhatsApp ---------- */

.vsw-whatsapp {
  position: fixed;
  left: 1.3em;
  bottom: 1.3em;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--vsw-blanco);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  text-decoration: none;
  transition: transform 0.2s ease;
}
.vsw-whatsapp:hover { background: #1EBE5A; transform: scale(1.06); }

.vsw-whatsapp::before,
.vsw-whatsapp::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: vsw-onda-expandir 2.8s ease-out infinite;
}
.vsw-whatsapp::after { animation-delay: 1.4s; }

@keyframes vsw-onda-expandir {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .vsw-whatsapp::before, .vsw-whatsapp::after { animation: none; opacity: 0; }
}

@media (max-width: 639px) {
  .vsw-whatsapp { width: 50px; height: 50px; left: 1em; bottom: 1em; }
}

/* ---------- página de registro ---------- */

.vsw-registro__intro h2, .vsw-registro__intro h1 {
  font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem);
}

.vsw-tabla-precios {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0 0.6em;
}
.vsw-tabla-precios td {
  padding: 0.6em 0;
  border-bottom: 1px solid var(--vsw-linea);
  font-size: 0.95rem;
  color: var(--vsw-tinta-suave);
}
.vsw-tabla-precios__nota {
  display: block;
  font-size: 0.78rem;
  color: var(--vsw-tinta-suave);
  font-style: italic;
  margin-top: 0.2em;
}
.vsw-tabla-precios__monto {
  text-align: right;
  font-weight: 700;
  color: var(--vsw-rojo-oscuro);
  white-space: nowrap;
  vertical-align: top;
}

.vsw-badge-gratis {
  display: inline-block;
  background: var(--vsw-degradado);
  color: var(--vsw-blanco);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 0.5em 1.1em;
  border-radius: 999px;
  margin: 0.3em 0 1em;
}

.vsw-registro__nota {
  font-size: 0.85rem;
  color: var(--vsw-tinta-suave);
}

/* campo trampa (honeypot): oculto para personas, visible para bots que ignoran CSS */
.vsw-campo-trampa {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.vsw-form__checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--vsw-tinta-suave);
}
.vsw-form__checkbox input {
  width: auto;
  margin-top: 0.2em;
}
.vsw-form__checkbox a {
  color: var(--vsw-rojo-oscuro);
}

.vsw-form__estado.es-error { color: var(--vsw-rojo-oscuro); }
.vsw-form__estado.es-exito { color: #2E7D32; }

@media (max-width: 639px) {
  .vsw-form--registro { grid-template-columns: 1fr; }
}

/* ---------- página de cuenta suspendida / no encontrada (homecaduc.php) ---------- */

.vsw-caduc {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vsw-papel-alt);
  background-image:
    linear-gradient(var(--vsw-linea) 1px, transparent 1px),
    linear-gradient(90deg, var(--vsw-linea) 1px, transparent 1px);
  background-size: 44px 44px;
  padding: 2em 1.2em;
}

.vsw-caduc__tarjeta {
  width: 100%;
  max-width: 480px;
  background: var(--vsw-papel);
  border: 1px solid var(--vsw-linea);
  border-radius: 4px;
  padding: 2.4em 2em;
  text-align: center;
  box-shadow: 0 20px 50px rgba(46,46,46,0.08);
}

.vsw-caduc__logo {
  display: inline-flex;
  margin-bottom: 1.6em;
}
.vsw-caduc__logo .vsw-logo__img { height: 44px; }

.vsw-caduc__icono {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--vsw-papel-alt);
  color: var(--vsw-rojo);
  margin-bottom: 1.2em;
}
.vsw-caduc__icono--exito {
  background: #E8F5E9;
  color: #2E7D32;
}

.vsw-caduc__tarjeta h1 {
  font-size: 1.4rem;
  margin-bottom: 0.6em;
}

.vsw-caduc__texto {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.8em;
}
.vsw-caduc__texto strong { color: var(--vsw-rojo-oscuro); }

.vsw-caduc__acciones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em;
  justify-content: center;
  margin-bottom: 1.4em;
}

.vsw-caduc__nota {
  font-size: 0.8rem;
  color: var(--vsw-tinta-suave);
  margin: 0;
}

@media (max-width: 420px) {
  .vsw-caduc__tarjeta { padding: 2em 1.4em; }
  .vsw-caduc__acciones { flex-direction: column; }
  .vsw-caduc__acciones .vsw-boton { width: 100%; }
}
