:root {
  --velaure-bg: #F4F0E8;
  --velaure-surface: #FFFDF8;
  --velaure-ink: #171714;
  --velaure-muted: #68675F;
  --velaure-line: rgba(23, 23, 20, .12);
  --velaure-accent: #A98D62;
  --velaure-accent-dark: #7D6749;
  --velaure-green: #273C35;
  --velaure-white: #FFFFFF;
  --velaure-radius: 24px;
  --velaure-shadow: 0 22px 60px rgba(23, 23, 20, .10);
  --velaure-container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--velaure-bg);
  color: var(--velaure-ink);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
}
body.admin-bar .v-header { top: 32px; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.v-container { width: min(calc(100% - 40px), var(--velaure-container)); margin-inline: auto; }

.v-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(244, 240, 232, .90);
  border-bottom: 1px solid var(--velaure-line);
}
.v-nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.v-logo,
.v-logo:visited,
.v-logo:hover {
  color: var(--velaure-ink) !important;
  font: 800 26px/1 "Manrope", sans-serif;
  letter-spacing: -.04em;
  text-decoration: none !important;
}
.v-logo span { color: var(--velaure-accent-dark); }
.v-menu { display: flex; align-items: center; gap: 28px; }
.v-menu a,
.v-menu a:visited {
  color: var(--velaure-ink) !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.v-menu a:hover { opacity: .65; }

.v-button,
.v-button:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none !important;
  font-weight: 700;
  border: 1px solid var(--velaure-ink);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.v-button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(23,23,20,.12); }
.v-button--dark,
.v-button--dark:visited { background: var(--velaure-ink); color: var(--velaure-white) !important; }
.v-button--light,
.v-button--light:visited { background: transparent; color: var(--velaure-ink) !important; }
.v-button--small {
  min-height: 44px;
  padding-inline: 22px;
  font-size: 14px;
  min-width: 150px;
}

.v-hero {
  padding: 90px 0 72px;
  overflow: hidden;
}
.v-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 64px;
}
.v-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid var(--velaure-line);
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  font-size: 13px;
  font-weight: 700;
}
.v-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--velaure-accent); box-shadow: 0 0 0 6px rgba(169,141,98,.14); }
.v-hero h1 {
  font: 800 clamp(44px, 7vw, 84px)/.98 "Manrope", sans-serif;
  letter-spacing: -.065em;
  margin: 24px 0 18px;
  max-width: 760px;
  color: var(--velaure-ink);
}
.v-hero h1 em {
  font-style: normal;
  color: var(--velaure-green);
}
.v-hero p {
  color: var(--velaure-muted);
  font-size: 19px;
  max-width: 650px;
  margin: 0 0 26px;
}
.v-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.v-proof {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--velaure-muted);
}
.v-avatars { display: flex; }
.v-avatar {
  width: 36px; height: 36px; margin-left: -8px;
  border-radius: 50%; border: 3px solid var(--velaure-bg);
  display: grid; place-items: center;
  background: var(--velaure-accent); color: white; font-weight: 800;
}
.v-avatar:first-child { margin-left: 0; }
.v-note {
  margin-top: 10px;
  color: var(--velaure-muted);
  font-size: 13px;
}
.v-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.v-badge {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border:1px solid var(--velaure-line);
  border-radius:999px;
  background:#fff;
  font-size:13px;
  font-weight:700;
}
.v-badge strong { color: var(--velaure-green); }

.v-agent-card {
  position: relative;
  min-height: 560px;
  border-radius: 34px;
  background: var(--velaure-green);
  color: white;
  padding: 30px;
  box-shadow: var(--velaure-shadow);
  overflow: hidden;
}
.v-agent-card::before {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  top: -130px; right: -100px;
}
.v-agent-top { position: relative; display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.v-status { display: flex; align-items: center; gap: 9px; font-size: 13px; opacity: .84; }
.v-status i { width: 9px; height: 9px; border-radius: 50%; background: #8FE0AE; box-shadow: 0 0 0 6px rgba(143,224,174,.13); }

.v-chat-flow { position: relative; display:flex; flex-direction:column; gap:16px; margin-top:22px; }
.v-chat-bubble {
  max-width: 82%;
  padding: 18px 20px;
  border-radius: 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}
.v-chat-bubble--user {
  margin-left: auto;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.14);
}
.v-chat-bubble--bot {
  background: rgba(255,255,255,.95);
  color: var(--velaure-ink);
}
.v-chat-label {
  display:block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .74;
  margin-bottom: 8px;
  font-weight: 700;
}
.v-chat-text {
  font-size: 18px;
  line-height: 1.4;
  margin:0;
  font-weight: 600;
}
.v-wave {
  margin: 20px 0 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  height: 34px;
}
.v-wave span {
  display: block;
  width: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  animation: wave 1s ease-in-out infinite;
}
.v-wave span:nth-child(2n) { animation-delay: .12s; }
.v-wave span:nth-child(3n) { animation-delay: .24s; }
@keyframes wave {
  0%, 100% { height: 9px; opacity: .45; }
  50% { height: 32px; opacity: 1; }
}
.v-chat-foot {
  margin-top: 12px;
  display: grid;
  gap: 4px;
}
.v-chat-foot strong { font:700 18px/1.3 "Manrope"; }
.v-chat-foot small { opacity: .72; }

.v-section { padding: 88px 0; }
.v-section--white { background: var(--velaure-surface); }
.v-section-head { max-width: 760px; margin-bottom: 42px; }
.v-section h2 {
  font: 800 clamp(36px, 5vw, 58px)/1.05 "Manrope", sans-serif;
  letter-spacing: -.045em;
  margin: 0 0 16px;
  color: var(--velaure-ink);
}
.v-section-head p { color: var(--velaure-muted); font-size: 18px; }

.v-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.v-card {
  background: var(--velaure-surface);
  border: 1px solid var(--velaure-line);
  border-radius: var(--velaure-radius);
  padding: 28px;
  min-height: 250px;
}
.v-card-number {
  width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--velaure-bg);
  color: var(--velaure-accent-dark);
  font-weight: 800;
}
.v-card h3 { font: 700 23px/1.2 "Manrope"; margin: 38px 0 12px; color: var(--velaure-ink); }
.v-card p { color: var(--velaure-muted); margin: 0; }

.v-sectors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.v-sector,
.v-sector:visited {
  min-height: 380px;
  border-radius: 28px;
  padding: 28px;
  color: white !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
}
.v-sector::after {
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.12));
}
.v-sector > * { position: relative; z-index: 2; }
.v-sector h3 { font: 800 30px/1.1 "Manrope"; margin: 0 0 8px; color: white; }
.v-sector p { margin: 0; opacity: .88; font-size: 15px; }
.v-sector--beauty { background-image: url('../images/sector-beauty.jpg'); }
.v-sector--restaurant { background-image: url('../images/sector-restaurant.jpg'); }
.v-sector--auto { background-image: url('../images/sector-workshop.jpg'); }

.v-price {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  background: var(--velaure-ink);
  color: white;
  border-radius: 34px;
  padding: 44px;
}
.v-price h2 { margin-bottom: 12px; color: white; }
.v-price p { opacity: .78; margin: 0; max-width: 680px; }
.v-price-box { text-align: right; }
.v-price-box strong { display: block; font: 800 56px/1 "Manrope"; letter-spacing: -.05em; }
.v-price-box span { opacity: .72; }
.v-price-mini { margin-top: 10px; font-size: 13px; opacity: .72; }

.v-footnote {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255,255,255,.72);
}

.v-footer { padding: 42px 0; border-top: 1px solid var(--velaure-line); }
.v-footer-grid { display: flex; justify-content: space-between; gap: 30px; color: var(--velaure-muted); font-size: 14px; }


.v-mobile-toggle {
  display: none;
  border: 0 !important;
  background: transparent !important;
  font-size: 24px;
  color: var(--velaure-ink) !important;
  padding: 10px;
  line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  -webkit-appearance: none;
}
.v-mobile-toggle:hover,
.v-mobile-toggle:focus,
.v-mobile-toggle:focus-visible,
.v-mobile-toggle:active,
.v-mobile-toggle[aria-expanded="true"] {
  color: var(--velaure-ink) !important;
  background: transparent !important;
  border-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}
.v-demo-call-note {
  margin-top: 11px;
  max-width: 500px;
  color: var(--velaure-muted);
  font-size: 12px;
  line-height: 1.45;
}
.v-demo-call-note strong {
  color: var(--velaure-ink);
}


@media (max-width: 1024px) {
  .v-hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  body.admin-bar .v-header { top: 46px; }
  .v-menu { display: none; position: absolute; top: 76px; left: 20px; right: 20px; flex-direction: column; align-items: stretch; background: var(--velaure-surface); padding: 22px; border-radius: 20px; box-shadow: var(--velaure-shadow); }
  .v-menu.is-open { display: flex; }
  .v-mobile-toggle { display: block; }
  .v-price, .v-grid-3, .v-sectors { grid-template-columns: 1fr; }
  .v-agent-card { min-height: auto; }
  .v-price-box { text-align: left; }
}
@media (max-width: 560px) {
  .v-hero { padding-top: 58px; }
  .v-hero h1 { font-size: 49px; }
  .v-section { padding: 68px 0; }
  .v-agent-card { padding: 24px; }
  .v-footer-grid { flex-direction: column; }
  .v-chat-bubble { max-width: 92%; }
}


/* =========================================================
   VELAURE V0.5 — CORRECCIONES VERIFICADAS
   ========================================================= */

/* Botón CTA de cabecera: fuerza texto blanco frente a reglas del menú/Hello. */
.v-header .v-menu a.v-button.v-button--dark,
.v-header .v-menu a.v-button.v-button--dark:link,
.v-header .v-menu a.v-button.v-button--dark:visited,
.v-header .v-menu a.v-button.v-button--dark:hover,
.v-header .v-menu a.v-button.v-button--dark:focus,
.v-header .v-menu a.v-button.v-button--dark:active {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 178px !important;
  color: #FFFFFF !important;
  background: #171714 !important;
  -webkit-text-fill-color: #FFFFFF !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-indent: 0 !important;
}

/* Círculo dorado restaurado dentro del panel verde. */
.v-orb-stage {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  margin: 10px 0 18px;
}
.v-orb-stage .v-orb {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #F1DFC0 0%, #C7A56D 48%, #8E6B3C 100%);
  box-shadow:
    0 0 0 14px rgba(255,255,255,.06),
    0 0 0 29px rgba(255,255,255,.035),
    0 18px 38px rgba(0,0,0,.22);
  animation: velaureOrbPulse 2.5s ease-in-out infinite;
}
@keyframes velaureOrbPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}
.v-wave--center {
  justify-content: center;
  margin: 26px 0 0 !important;
}

/* Fotografías reales dentro de las tarjetas de sectores. */
.v-sector {
  min-height: 380px !important;
  padding: 0 !important;
  background: #171714 !important;
  isolation: isolate;
  transform: translateZ(0);
}
.v-sector-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  opacity: 1 !important;
  filter: saturate(.95) contrast(1.04);
  transition: transform .45s ease;
}
.v-sector:hover .v-sector-media {
  transform: scale(1.045);
}
.v-sector::after {
  display: none !important;
}
.v-sector-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(8,10,9,.92) 0%, rgba(8,10,9,.54) 42%, rgba(8,10,9,.06) 78%),
    linear-gradient(120deg, rgba(39,60,53,.10), transparent 58%);
}
.v-sector-copy {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 26px;
  display: grid;
  gap: 8px;
  color: #FFFFFF !important;
}
.v-sector-copy strong {
  color: #FFFFFF !important;
  font: 800 30px/1.08 "Manrope", sans-serif;
}
.v-sector-copy small {
  color: rgba(255,255,255,.88) !important;
  font-size: 15px;
  line-height: 1.45;
}

/* Menú móvil sin rojo en ningún estado. */
.v-mobile-toggle,
.v-mobile-toggle:hover,
.v-mobile-toggle:focus,
.v-mobile-toggle:focus-visible,
.v-mobile-toggle:active,
.v-mobile-toggle[aria-expanded="true"] {
  color: #171714 !important;
  -webkit-text-fill-color: #171714 !important;
  background: transparent !important;
  border-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent !important;
}


/* =========================================================
   VELAURE V0.6 — AJUSTES FINALES
   ========================================================= */

/* El span evita que cualquier estilo de Hello o Elementor oculte el texto. */
.v-header .v-menu a.v-demo-call > span {
  display: inline !important;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  opacity: 1 !important;
  visibility: visible !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

/* El botón superior debe mantener siempre contraste blanco/negro. */
.v-header .v-menu a.v-demo-call,
.v-header .v-menu a.v-demo-call:link,
.v-header .v-menu a.v-demo-call:visited,
.v-header .v-menu a.v-demo-call:hover,
.v-header .v-menu a.v-demo-call:focus,
.v-header .v-menu a.v-demo-call:active {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  background-color: #171714 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Las imágenes llenan toda la tarjeta sin bordes blancos. */
.v-sector-media {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: scale(1.02);
}


/* =========================================================
   VELAURE V0.7 — IMÁGENES DE SECTORES REHECHAS
   ========================================================= */
.v-sectors {
  align-items: stretch;
}
.v-sector {
  min-height: 410px !important;
  border-radius: 28px;
  overflow: hidden;
}
.v-sector-media {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
  filter: none !important;
}
.v-sector:hover .v-sector-media {
  transform: scale(1.02) !important;
}
.v-sector-shade {
  background: linear-gradient(to top, rgba(8,10,9,.82) 0%, rgba(8,10,9,.36) 42%, rgba(8,10,9,.04) 76%) !important;
}
.v-sector-copy {
  left: 28px !important;
  right: 28px !important;
  bottom: 24px !important;
}
.v-sector-copy strong {
  font-size: 28px !important;
}
.v-sector-copy small {
  font-size: 15px !important;
}


/* =========================================================
   VELAURE V0.7.2 — HERO COPY, MÓVIL Y CAPACIDADES
   ========================================================= */

.v-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.v-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--velaure-line);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  color: var(--velaure-ink);
}
.v-badge strong { color: var(--velaure-green); }

.v-mobile-highlights {
  display: none;
}

@media (max-width: 767px) {
  /* Quitar en móvil las pastillas tachadas por el usuario */
  .v-badge-row {
    display: none !important;
  }

  .v-mobile-highlights {
    display: grid;
    gap: 10px;
    margin: 16px 0 4px;
  }

  .v-mobile-highlight {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--velaure-line);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 10px rgba(23,23,20,.04);
  }

  .v-mobile-highlight__icon {
    min-width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(169,141,98,.14);
    color: var(--velaure-green);
    font: 800 18px/1 "Manrope", sans-serif;
  }

  .v-mobile-highlight__flags {
    min-width: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
  }

  .v-mobile-highlight__text {
    display: grid;
    gap: 2px;
  }

  .v-mobile-highlight__text strong {
    color: var(--velaure-ink);
    font: 700 15px/1.25 "Manrope", sans-serif;
  }

  .v-mobile-highlight__text small {
    color: var(--velaure-muted);
    font-size: 12px;
    line-height: 1.35;
  }
}


/* =========================================================
   VELAURE V0.7.3 — FAQ + burbuja cliente visible
   ========================================================= */

/* Texto blanco en el globo gris del cliente */
.v-chat-bubble--user,
.v-chat-bubble--user .v-chat-label,
.v-chat-bubble--user .v-chat-text {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}
.v-chat-bubble--user {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
}
.v-chat-bubble--user .v-chat-label {
  opacity: .82;
}
.v-chat-bubble--user .v-chat-text {
  opacity: .96;
}

/* FAQ */
.v-faq-list {
  display: grid;
  gap: 14px;
}
.v-faq-item {
  background: var(--velaure-surface);
  border: 1px solid var(--velaure-line);
  border-radius: 22px;
  padding: 0;
  overflow: hidden;
}
.v-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font: 700 20px/1.35 "Manrope", sans-serif;
  color: var(--velaure-ink);
  position: relative;
  padding-right: 56px;
}
.v-faq-item summary::-webkit-details-marker {
  display: none;
}
.v-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(169,141,98,.14);
  color: var(--velaure-green);
  font: 800 18px/1 "Manrope", sans-serif;
}
.v-faq-item[open] summary::after {
  content: "–";
}
.v-faq-answer {
  padding: 0 24px 22px;
}
.v-faq-answer p {
  margin: 0;
  color: var(--velaure-muted);
  font-size: 17px;
  line-height: 1.65;
}
.v-faq-answer strong {
  color: var(--velaure-ink);
}

@media (max-width: 767px) {
  .v-faq-item summary {
    font-size: 18px;
    padding: 20px 20px;
    padding-right: 54px;
  }
  .v-faq-answer {
    padding: 0 20px 20px;
  }
  .v-faq-answer p {
    font-size: 16px;
  }
}


/* =========================================================
   VELAURE V0.7.4 — NUEVAS SECCIONES INFORMATIVAS
   ========================================================= */

.v-section-head--center {
  text-align: center;
  margin-inline: auto;
}

/* 1) Story cards */
.v-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.v-story-card {
  background: #DCEAF5;
  border-radius: 28px;
  padding: 22px;
  border: 1px solid rgba(23,23,20,.08);
}
.v-story-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font: 800 16px/1.2 "Manrope", sans-serif;
  color: #1163c9;
  margin-bottom: 10px;
}
.v-story-step span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #10233c;
  font-size: 16px;
}
.v-story-mini {
  margin: 0 0 16px;
  color: var(--velaure-ink);
  font-size: 15px;
}
.v-story-media {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 240px;
  margin-bottom: 18px;
  background: #000;
}
.v-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.v-story-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border-radius: 16px;
  padding: 14px 16px;
  color: #fff;
  font: 700 15px/1.35 "Manrope", sans-serif;
  z-index: 2;
}
.v-story-overlay--warning { background: rgba(0,0,0,.86); }
.v-story-overlay--success { background: linear-gradient(135deg, rgba(124,22,100,.92), rgba(42,9,51,.92)); }
.v-story-chat {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border-radius: 18px;
  padding: 15px 16px;
  z-index: 2;
  color: #fff;
  background: linear-gradient(135deg, rgba(124,22,100,.94), rgba(63,16,84,.94));
  border: 2px solid rgba(238,102,255,.35);
  box-shadow: 0 10px 28px rgba(34,8,44,.28);
  font-size: 15px;
  line-height: 1.4;
}
.v-story-chat strong {
  display: block;
  margin-bottom: 6px;
  color: #ff8fe4;
}
.v-story-card h3 {
  margin: 0 0 10px;
  color: #1163c9;
  font: 800 22px/1.2 "Manrope", sans-serif;
}
.v-story-card p:last-child {
  margin: 0;
  color: var(--velaure-ink);
}

/* 2) Benefits layout */
.v-benefits-layout {
  display: grid;
  grid-template-columns: 1fr 360px 1fr;
  gap: 28px;
  align-items: start;
}
.v-benefits-col {
  display: grid;
  gap: 22px;
}
.v-benefit-item h3 {
  margin: 0 0 10px;
  color: #1163c9;
  font: 800 18px/1.25 "Manrope", sans-serif;
  position: relative;
  padding-left: 18px;
}
.v-benefit-item h3::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--velaure-ink);
  font-weight: 800;
}
.v-benefit-item p {
  margin: 0;
  color: var(--velaure-ink);
  font-size: 16px;
  line-height: 1.65;
}
.v-benefits-visual {
  display: grid;
  place-items: center;
}
.v-benefits-illustration {
  position: relative;
  width: 320px;
  height: 380px;
}
.v-benefit-desk {
  position: absolute;
  bottom: 20px;
  left: 40px;
  right: 40px;
  height: 24px;
  border-radius: 999px;
  background: #111;
}
.v-benefit-screen {
  position: absolute;
  right: 52px;
  top: 146px;
  width: 110px;
  height: 88px;
  border: 10px solid #111;
  border-bottom-width: 18px;
  border-radius: 16px;
}
.v-benefit-avatar {
  position: absolute;
  left: 82px;
  top: 80px;
  width: 120px;
  height: 180px;
}
.v-benefit-head {
  width: 76px;
  height: 76px;
  border: 10px solid #111;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
}
.v-benefit-head::after {
  content: "";
  position: absolute;
  inset: 14px 18px 18px;
  border-bottom: 8px solid #111;
  border-radius: 50%;
}
.v-benefit-body {
  width: 100%;
  height: 94px;
  margin-top: 10px;
  border: 10px solid #111;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom: none;
}
.v-benefit-star {
  position: absolute;
  color: #1f76d8;
  opacity: .95;
  line-height: 1;
}
.v-benefit-star--one { top: 96px; left: 24px; font-size: 52px; }
.v-benefit-star--two { top: 40px; right: 36px; font-size: 88px; }
.v-benefit-star--three { bottom: 0; right: 12px; font-size: 92px; }

/* 3) Efficiency panel */
.v-efficiency-panel {
  background: #DCEAF5;
  border-radius: 28px;
  padding: 22px;
  border: 1px solid rgba(23,23,20,.08);
}
.v-efficiency-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 24px;
  margin-bottom: 24px;
  background: #111;
}
.v-efficiency-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v-efficiency-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,.52), rgba(10,10,10,.10) 45%, rgba(10,10,10,.28));
}
.v-efficiency-calendar {
  position: absolute;
  left: 42px;
  top: 122px;
  z-index: 2;
  width: 400px;
  max-width: calc(100% - 84px);
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.v-efficiency-calendar strong {
  display: block;
  margin-bottom: 16px;
  color: #3b6d9e;
  font: 800 28px/1.1 "Manrope", sans-serif;
}
.v-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
.v-calendar-grid span {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  background: #e6eaef;
  position: relative;
}
.v-calendar-grid span.is-active::after,
.v-calendar-grid span.is-highlight::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  height: 10px;
  bottom: 16%;
  border-radius: 999px;
  background: #4da4ff;
}
.v-calendar-grid span.is-highlight {
  background: #0c1938;
}
.v-calendar-grid span.is-highlight::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  right: -4px;
  top: -4px;
  border-radius: 999px;
  background: #ea4cae;
}
.v-efficiency-toast {
  position: absolute;
  top: 34px;
  left: 38%;
  z-index: 3;
  min-width: 330px;
  max-width: 420px;
  padding: 18px 22px;
  border-radius: 20px;
  background: rgba(7,8,12,.96);
  color: #fff;
  border: 2px solid rgba(242,89,235,.65);
  box-shadow: 0 16px 40px rgba(13,8,20,.36);
}
.v-efficiency-toast strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font: 800 18px/1.2 "Manrope", sans-serif;
}
.v-efficiency-toast small {
  display: block;
  color: rgba(255,255,255,.76);
  font-size: 14px;
}
.v-efficiency-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.v-eff-feature h3 {
  margin: 0 0 12px;
  color: #1163c9;
  font: 800 24px/1.2 "Manrope", sans-serif;
}
.v-eff-feature p {
  margin: 0;
  color: var(--velaure-ink);
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .v-story-grid { grid-template-columns: 1fr; }
  .v-benefits-layout { grid-template-columns: 1fr; }
  .v-benefits-visual { order: -1; margin-bottom: 8px; }
  .v-efficiency-features { grid-template-columns: 1fr; }
  .v-efficiency-toast {
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 70px);
    min-width: 0;
    max-width: 520px;
  }
}
@media (max-width: 767px) {
  .v-story-card { padding: 18px; }
  .v-story-media { min-height: 220px; }
  .v-benefits-illustration { width: 260px; height: 320px; }
  .v-benefit-screen { right: 34px; top: 126px; width: 92px; height: 74px; }
  .v-benefit-avatar { left: 56px; top: 64px; transform: scale(.88); transform-origin: top left; }
  .v-benefit-desk { left: 18px; right: 18px; }
  .v-efficiency-panel { padding: 16px; }
  .v-efficiency-hero { min-height: 360px; }
  .v-efficiency-calendar {
    position: absolute;
    left: 16px;
    right: 16px;
    top: auto;
    bottom: 18px;
    width: auto;
    max-width: none;
    padding: 16px;
  }
  .v-efficiency-calendar strong {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .v-calendar-grid { gap: 6px; }
  .v-efficiency-toast {
    top: 16px;
    left: 16px;
    right: 16px;
    width: auto;
    transform: none;
    padding: 14px 16px;
  }
  .v-eff-feature h3 { font-size: 21px; }
}


/* =========================================================
   VELAURE V0.7.5 — REESTILADO CORPORATIVO DE SECCIONES
   ADN VISUAL: beige + verde oscuro + dorado + negro
   ========================================================= */

/* Afinado global de las nuevas secciones */
#proceso-velaure,
#beneficios-ampliados,
#eficiencia-negocio {
  background: transparent;
}

#proceso-velaure .v-section-head,
#beneficios-ampliados .v-section-head,
#eficiencia-negocio .v-section-head {
  max-width: 920px;
}

/* 1) Sección: del problema a la solución */
.v-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.v-story-card {
  background: var(--velaure-surface) !important;
  border: 1px solid var(--velaure-line) !important;
  border-radius: 28px !important;
  padding: 22px !important;
  box-shadow: 0 18px 38px rgba(23,23,20,.06);
}

.v-story-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font: 800 16px/1.2 "Manrope", sans-serif;
  color: var(--velaure-green) !important;
  margin-bottom: 10px;
}

.v-story-step span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--velaure-green) !important;
  box-shadow: 0 8px 18px rgba(39,60,53,.16);
  font-size: 16px;
}

.v-story-mini {
  margin: 0 0 16px;
  color: var(--velaure-muted) !important;
  font-size: 15px;
}

.v-story-media {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 240px;
  margin-bottom: 18px;
  background: #171714;
}

.v-story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.68), rgba(10,10,10,.08));
  z-index: 1;
}

.v-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.v-story-overlay,
.v-story-chat {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  border-radius: 18px;
  padding: 15px 16px;
  color: #fff;
  box-shadow: 0 16px 35px rgba(23,23,20,.22);
}

.v-story-overlay--warning {
  background: rgba(23,23,20,.92) !important;
  border: 1px solid rgba(255,255,255,.08);
}

.v-story-overlay--success {
  background: linear-gradient(135deg, rgba(39,60,53,.94), rgba(23,23,20,.94)) !important;
  border: 1px solid rgba(169,141,98,.38);
}

.v-story-chat {
  background: linear-gradient(135deg, rgba(39,60,53,.95), rgba(31,50,44,.95)) !important;
  border: 1px solid rgba(169,141,98,.45) !important;
}

.v-story-chat strong {
  display: block;
  margin-bottom: 6px;
  color: #E6D0A4 !important;
}

.v-story-card h3 {
  margin: 0 0 10px;
  color: var(--velaure-green) !important;
  font: 800 22px/1.18 "Manrope", sans-serif;
  letter-spacing: -.02em;
}

.v-story-card p:last-child {
  margin: 0;
  color: var(--velaure-ink) !important;
  line-height: 1.65;
}

/* 2) Beneficios corporativos */
.v-benefits-layout {
  display: grid;
  grid-template-columns: 1fr 360px 1fr;
  gap: 28px;
  align-items: start;
}

.v-benefits-col {
  display: grid;
  gap: 22px;
}

.v-benefit-item {
  background: rgba(255,255,255,.32);
  border: 1px solid rgba(23,23,20,.08);
  border-radius: 22px;
  padding: 20px 20px 18px;
}

.v-benefit-item h3 {
  margin: 0 0 10px;
  color: var(--velaure-green) !important;
  font: 800 18px/1.25 "Manrope", sans-serif;
  position: relative;
  padding-left: 18px;
}

.v-benefit-item h3::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--velaure-accent) !important;
  font-weight: 800;
}

.v-benefit-item p {
  margin: 0;
  color: var(--velaure-ink) !important;
  font-size: 16px;
  line-height: 1.65;
}

.v-benefits-visual {
  display: grid;
  place-items: center;
}

.v-benefits-illustration {
  position: relative;
  width: 320px;
  height: 380px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.50), rgba(244,240,232,.35));
  border: 1px solid rgba(23,23,20,.08);
}

.v-benefit-desk {
  position: absolute;
  bottom: 34px;
  left: 42px;
  right: 42px;
  height: 18px;
  border-radius: 999px;
  background: #171714 !important;
}

.v-benefit-screen {
  position: absolute;
  right: 56px;
  top: 150px;
  width: 108px;
  height: 84px;
  border: 9px solid #171714 !important;
  border-bottom-width: 16px;
  border-radius: 16px;
}

.v-benefit-avatar {
  position: absolute;
  left: 88px;
  top: 88px;
  width: 120px;
  height: 180px;
}

.v-benefit-head {
  width: 76px;
  height: 76px;
  border: 9px solid #171714 !important;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
}

.v-benefit-head::after {
  content: "";
  position: absolute;
  inset: 14px 18px 18px;
  border-bottom: 7px solid #171714 !important;
  border-radius: 50%;
}

.v-benefit-body {
  width: 100%;
  height: 94px;
  margin-top: 10px;
  border: 9px solid #171714 !important;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom: none !important;
}

.v-benefit-star {
  position: absolute;
  line-height: 1;
}

.v-benefit-star--one {
  top: 104px;
  left: 28px;
  font-size: 42px;
  color: var(--velaure-accent) !important;
}

.v-benefit-star--two {
  top: 42px;
  right: 34px;
  font-size: 74px;
  color: var(--velaure-green) !important;
}

.v-benefit-star--three {
  bottom: 6px;
  right: 18px;
  font-size: 78px;
  color: rgba(169,141,98,.70) !important;
}

/* 3) Eficiencia de negocio */
.v-efficiency-panel {
  background: var(--velaure-surface) !important;
  border: 1px solid var(--velaure-line) !important;
  border-radius: 30px !important;
  padding: 22px !important;
  box-shadow: 0 22px 44px rgba(23,23,20,.06);
}

.v-efficiency-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 24px;
  margin-bottom: 24px;
  background: #111;
}

.v-efficiency-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v-efficiency-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,.46), rgba(10,10,10,.10) 46%, rgba(10,10,10,.24));
}

.v-efficiency-calendar {
  position: absolute;
  left: 42px;
  top: 122px;
  z-index: 2;
  width: 400px;
  max-width: calc(100% - 84px);
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,253,248,.97) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
  border: 1px solid rgba(23,23,20,.08);
}

.v-efficiency-calendar strong {
  display: block;
  margin-bottom: 16px;
  color: var(--velaure-green) !important;
  font: 800 28px/1.1 "Manrope", sans-serif;
}

.v-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.v-calendar-grid span {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  background: #E7E6E1 !important;
  position: relative;
}

.v-calendar-grid span.is-active::after,
.v-calendar-grid span.is-highlight::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  height: 10px;
  bottom: 16%;
  border-radius: 999px;
  background: var(--velaure-accent) !important;
}

.v-calendar-grid span.is-highlight {
  background: var(--velaure-green) !important;
}

.v-calendar-grid span.is-highlight::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  right: -4px;
  top: -4px;
  border-radius: 999px;
  background: #D65BB0 !important;
}

.v-efficiency-toast {
  position: absolute;
  top: 34px;
  left: 38%;
  z-index: 3;
  min-width: 330px;
  max-width: 420px;
  padding: 18px 22px;
  border-radius: 20px;
  background: rgba(23,23,20,.95) !important;
  color: #fff;
  border: 1px solid rgba(169,141,98,.52) !important;
  box-shadow: 0 16px 40px rgba(13,8,20,.36);
}

.v-efficiency-toast strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font: 800 18px/1.2 "Manrope", sans-serif;
}

.v-efficiency-toast small {
  display: block;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}

.v-efficiency-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.v-eff-feature {
  background: rgba(244,240,232,.55);
  border: 1px solid rgba(23,23,20,.08);
  border-radius: 22px;
  padding: 20px;
}

.v-eff-feature h3 {
  margin: 0 0 12px;
  color: var(--velaure-green) !important;
  font: 800 24px/1.2 "Manrope", sans-serif;
  letter-spacing: -.02em;
}

.v-eff-feature p {
  margin: 0;
  color: var(--velaure-ink) !important;
  line-height: 1.7;
}

/* Nada de azules corporativos ajenos */
#proceso-velaure h2,
#beneficios-ampliados h2,
#eficiencia-negocio h2 {
  color: var(--velaure-ink) !important;
}

#proceso-velaure .v-section-head p,
#beneficios-ampliados .v-section-head p,
#eficiencia-negocio .v-section-head p {
  color: var(--velaure-muted) !important;
}

/* Responsive */
@media (max-width: 1100px) {
  .v-story-grid {
    grid-template-columns: 1fr;
  }

  .v-benefits-layout {
    grid-template-columns: 1fr;
  }

  .v-benefits-visual {
    order: -1;
    margin-bottom: 8px;
  }

  .v-efficiency-features {
    grid-template-columns: 1fr;
  }

  .v-efficiency-toast {
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 70px);
    min-width: 0;
    max-width: 520px;
  }
}

@media (max-width: 767px) {
  .v-story-card {
    padding: 18px !important;
  }

  .v-story-media {
    min-height: 220px;
  }

  .v-benefits-illustration {
    width: 260px;
    height: 320px;
  }

  .v-benefit-screen {
    right: 34px;
    top: 126px;
    width: 92px;
    height: 74px;
  }

  .v-benefit-avatar {
    left: 56px;
    top: 64px;
    transform: scale(.88);
    transform-origin: top left;
  }

  .v-benefit-desk {
    left: 18px;
    right: 18px;
  }

  .v-efficiency-panel {
    padding: 16px !important;
  }

  .v-efficiency-hero {
    min-height: 360px;
  }

  .v-efficiency-calendar {
    position: absolute;
    left: 16px;
    right: 16px;
    top: auto;
    bottom: 18px;
    width: auto;
    max-width: none;
    padding: 16px;
  }

  .v-efficiency-calendar strong {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .v-calendar-grid {
    gap: 6px;
  }

  .v-efficiency-toast {
    top: 16px;
    left: 16px;
    right: 16px;
    width: auto;
    transform: none;
    padding: 14px 16px;
  }

  .v-eff-feature h3 {
    font-size: 21px;
  }
}


/* =========================================================
   VELAURE V0.7.6 — EMPLEADOS DIGITALES / ICONO NUEVO / MÁS ANCHO
   ========================================================= */

/* Web más ancha y respirada */
.v-container {
  width: min(100% - 56px, 1380px) !important;
  max-width: 1380px !important;
}

@media (max-width: 767px) {
  .v-container {
    width: min(100% - 28px, 1380px) !important;
  }
}

/* Ajuste de títulos para mantener proporción en contenedores más anchos */
#proceso-velaure .v-section-head,
#beneficios-ampliados .v-section-head,
#eficiencia-negocio .v-section-head {
  max-width: 1080px !important;
}

/* Quitar cualquier resto visual que suene a plantilla ajena */
.v-story-step,
.v-benefit-item h3,
.v-eff-feature h3 {
  letter-spacing: -0.02em;
}

/* =========================================================
   NUEVO ICONO CENTRAL PROPIO DE VELAURE
   Inspiración corporativa: empleado digital + voz + automatización
   ========================================================= */

.v-benefits-illustration {
  position: relative;
  width: 360px !important;
  height: 410px !important;
  border-radius: 36px !important;
  background:
    radial-gradient(circle at 68% 24%, rgba(169,141,98,.15) 0%, rgba(169,141,98,0) 34%),
    radial-gradient(circle at 22% 22%, rgba(39,60,53,.10) 0%, rgba(39,60,53,0) 34%),
    linear-gradient(180deg, rgba(255,255,255,.65), rgba(244,240,232,.46)) !important;
  border: 1px solid rgba(23,23,20,.08) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 16px 42px rgba(23,23,20,.06);
  overflow: hidden;
}

/* Reconfiguramos las piezas para crear un icono nuevo, no parecido al de la competencia */
.v-benefit-avatar {
  position: absolute !important;
  left: 108px !important;
  top: 78px !important;
  width: 142px !important;
  height: 178px !important;
}

.v-benefit-head {
  width: 84px !important;
  height: 84px !important;
  border: 8px solid #171714 !important;
  border-radius: 50% !important;
  background: transparent !important;
  margin: 0 auto !important;
  position: relative !important;
}

.v-benefit-head::before {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: -18px;
  height: 26px;
  border: 8px solid var(--velaure-green);
  border-bottom: none;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.v-benefit-head::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 18px;
  height: 10px;
  border-bottom: 6px solid #171714 !important;
  border-radius: 999px;
}

.v-benefit-body {
  width: 132px !important;
  height: 74px !important;
  margin: 14px auto 0 !important;
  border: 8px solid #171714 !important;
  border-bottom: none !important;
  border-top-left-radius: 64px !important;
  border-top-right-radius: 64px !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/* La "pantalla" pasa a ser una tarjeta flotante con interfaz propia */
.v-benefit-screen {
  position: absolute !important;
  right: 52px !important;
  top: 136px !important;
  width: 126px !important;
  height: 110px !important;
  border: 0 !important;
  border-radius: 24px !important;
  background: linear-gradient(180deg, rgba(39,60,53,.98), rgba(23,23,20,.98)) !important;
  box-shadow: 0 14px 28px rgba(23,23,20,.18);
}

.v-benefit-screen::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 24px;
  height: 10px;
  border-radius: 999px;
  background: rgba(230,208,164,.95);
  box-shadow:
    0 24px 0 0 rgba(255,255,255,.18),
    0 42px 0 0 rgba(255,255,255,.12);
}

.v-benefit-screen::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  right: 16px;
  top: 14px;
  border-radius: 999px;
  background: var(--velaure-accent);
  box-shadow: 0 0 0 8px rgba(169,141,98,.14);
}

/* La base se convierte en una barra de actividad/voz */
.v-benefit-desk {
  position: absolute !important;
  bottom: 42px !important;
  left: 46px !important;
  right: 46px !important;
  height: 18px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #171714 0 68%, rgba(169,141,98,.9) 68% 83%, rgba(169,141,98,.45) 83% 100%) !important;
}

.v-benefit-desk::before {
  content: "";
  position: absolute;
  right: 24px;
  bottom: -18px;
  width: 34px;
  height: 34px;
  background:
    linear-gradient(var(--velaure-accent), var(--velaure-accent)) center/12px 34px no-repeat,
    linear-gradient(var(--velaure-accent), var(--velaure-accent)) center/34px 12px no-repeat;
  opacity: .88;
}

.v-benefit-desk::after {
  content: "";
  position: absolute;
  left: 28px;
  top: -58px;
  width: 64px;
  height: 24px;
  background:
    linear-gradient(90deg,
      rgba(23,23,20,.12) 0 10%,
      var(--velaure-green) 10% 16%,
      rgba(23,23,20,.12) 16% 26%,
      var(--velaure-accent) 26% 32%,
      rgba(23,23,20,.12) 32% 42%,
      var(--velaure-green) 42% 48%,
      rgba(23,23,20,.12) 48% 58%,
      var(--velaure-accent) 58% 64%,
      rgba(23,23,20,.12) 64% 74%,
      var(--velaure-green) 74% 80%,
      rgba(23,23,20,.12) 80% 100%);
  border-radius: 999px;
}

/* Decoración propia, más sutil y corporativa */
.v-benefit-star--one {
  top: 110px !important;
  left: 34px !important;
  font-size: 32px !important;
  color: rgba(169,141,98,.95) !important;
}

.v-benefit-star--two {
  top: 52px !important;
  right: 34px !important;
  font-size: 56px !important;
  color: var(--velaure-green) !important;
}

.v-benefit-star--three {
  bottom: 10px !important;
  right: 22px !important;
  font-size: 58px !important;
  color: rgba(169,141,98,.72) !important;
}

/* Mayor presencia de las secciones nuevas al ensanchar layout */
.v-story-grid {
  gap: 24px !important;
}

.v-benefits-layout {
  grid-template-columns: 1fr 400px 1fr !important;
  gap: 34px !important;
}

.v-efficiency-features {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 22px !important;
}

.v-efficiency-panel,
.v-story-card,
.v-benefit-item,
.v-eff-feature {
  backdrop-filter: saturate(1.02);
}

/* Responsive del icono nuevo */
@media (max-width: 1100px) {
  .v-benefits-layout {
    grid-template-columns: 1fr !important;
  }

  .v-benefits-visual {
    order: -1;
    margin-bottom: 8px;
  }
}

@media (max-width: 767px) {
  .v-benefits-illustration {
    width: 290px !important;
    height: 340px !important;
  }

  .v-benefit-avatar {
    left: 78px !important;
    top: 64px !important;
    transform: none !important;
  }

  .v-benefit-screen {
    right: 30px !important;
    top: 122px !important;
    width: 112px !important;
    height: 96px !important;
  }

  .v-benefit-desk {
    left: 24px !important;
    right: 24px !important;
    bottom: 30px !important;
  }
}


/* =========================================================
   VELAURE V0.7.7 — ESFERA DORADA CENTRAL EN BENEFICIOS
   ========================================================= */

/* Limpiar el icono anterior por completo */
.v-benefits-illustration .v-benefit-avatar,
.v-benefits-illustration .v-benefit-head,
.v-benefits-illustration .v-benefit-body,
.v-benefits-illustration .v-benefit-screen,
.v-benefits-illustration .v-benefit-desk,
.v-benefits-illustration .v-benefit-star {
  display: none !important;
}

/* Contenedor del bloque central */
.v-benefits-illustration {
  position: relative !important;
  width: 360px !important;
  height: 380px !important;
  border-radius: 36px !important;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,255,255,.72) 0%, rgba(255,255,255,.18) 42%, rgba(255,255,255,0) 70%),
    linear-gradient(180deg, rgba(255,255,255,.42), rgba(244,240,232,.34)) !important;
  border: 1px solid rgba(23,23,20,.08) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 16px 42px rgba(23,23,20,.06);
  overflow: hidden;
}

/* Esfera dorada Velaure */
.v-benefits-illustration::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 44%;
  width: 124px;
  height: 124px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #F3E3C3 0%, #CFB07B 48%, #9A7444 100%);
  box-shadow:
    0 0 0 16px rgba(169,141,98,.10),
    0 0 0 34px rgba(39,60,53,.07),
    0 20px 44px rgba(23,23,20,.18);
  animation: velaure-orb-speaking 2.2s ease-in-out infinite;
}

/* Movimiento visual tipo voz */
.v-benefits-illustration::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 86px;
  width: 118px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,0) 0 4%,
      var(--velaure-green) 4% 8%,
      rgba(255,255,255,0) 8% 16%,
      var(--velaure-accent) 16% 20%,
      rgba(255,255,255,0) 20% 28%,
      var(--velaure-green) 28% 32%,
      rgba(255,255,255,0) 32% 40%,
      var(--velaure-accent) 40% 44%,
      rgba(255,255,255,0) 44% 52%,
      var(--velaure-green) 52% 56%,
      rgba(255,255,255,0) 56% 64%,
      var(--velaure-accent) 64% 68%,
      rgba(255,255,255,0) 68% 76%,
      var(--velaure-green) 76% 80%,
      rgba(255,255,255,0) 80% 88%,
      var(--velaure-accent) 88% 92%,
      rgba(255,255,255,0) 92% 100%);
  box-shadow:
    0 0 0 10px rgba(255,255,255,.22),
    0 8px 20px rgba(23,23,20,.08);
  animation: velaure-voice-bars 1.1s ease-in-out infinite;
}

/* Anillos / respiración */
@keyframes velaure-orb-speaking {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow:
      0 0 0 16px rgba(169,141,98,.10),
      0 0 0 34px rgba(39,60,53,.07),
      0 20px 44px rgba(23,23,20,.18);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.045);
    box-shadow:
      0 0 0 20px rgba(169,141,98,.14),
      0 0 0 42px rgba(39,60,53,.10),
      0 24px 54px rgba(23,23,20,.22);
  }
}

@keyframes velaure-voice-bars {
  0%, 100% {
    transform: translateX(-50%) scaleX(1) scaleY(1);
    opacity: .9;
  }
  25% {
    transform: translateX(-50%) scaleX(1.05) scaleY(1.08);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) scaleX(.94) scaleY(.92);
    opacity: .82;
  }
  75% {
    transform: translateX(-50%) scaleX(1.08) scaleY(1.04);
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .v-benefits-illustration {
    width: 290px !important;
    height: 320px !important;
  }

  .v-benefits-illustration::before {
    width: 104px;
    height: 104px;
    top: 42%;
  }

  .v-benefits-illustration::after {
    width: 98px;
    bottom: 64px;
  }
}


/* =========================================================
   VELAURE V0.7.8 — FIX MÓVIL SECCIÓN EFICIENCIA
   ========================================================= */

@media (max-width: 767px) {

  /* Evitar desbordes horizontales en esta sección */
  #eficiencia-negocio,
  #eficiencia-negocio .v-container,
  #eficiencia-negocio .v-efficiency-panel,
  #eficiencia-negocio .v-efficiency-features {
    overflow-x: clip !important;
  }

  /* Panel general con márgenes correctos */
  #eficiencia-negocio .v-efficiency-panel {
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px !important;
    border-radius: 24px !important;
    box-sizing: border-box !important;
  }

  /* La rejilla debe pasar SIEMPRE a una sola columna */
  #eficiencia-negocio .v-efficiency-features {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 0 !important;
    box-sizing: border-box !important;
  }

  /* Cada tarjeta debe ocupar el ancho completo disponible */
  #eficiencia-negocio .v-eff-feature {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: block !important;
    box-sizing: border-box !important;
    padding: 18px 16px !important;
    border-radius: 20px !important;
    margin: 0 !important;
  }

  #eficiencia-negocio .v-eff-feature h3 {
    font-size: 18px !important;
    line-height: 1.15 !important;
    margin-bottom: 10px !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }

  #eficiencia-negocio .v-eff-feature p {
    font-size: 15px !important;
    line-height: 1.55 !important;
    margin: 0 !important;
  }

  /* La imagen grande también se contiene mejor */
  #eficiencia-negocio .v-efficiency-hero {
    min-height: 320px !important;
    border-radius: 20px !important;
    margin-bottom: 14px !important;
  }

  #eficiencia-negocio .v-efficiency-calendar {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
    width: auto !important;
    max-width: none !important;
    padding: 14px !important;
    border-radius: 18px !important;
  }

  #eficiencia-negocio .v-efficiency-toast {
    top: 14px !important;
    left: 14px !important;
    right: 14px !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    padding: 12px 14px !important;
    border-radius: 16px !important;
  }

  #eficiencia-negocio .v-efficiency-toast strong {
    font-size: 15px !important;
  }

  #eficiencia-negocio .v-efficiency-toast small {
    font-size: 12px !important;
  }
}


/* =========================================================
   VELAURE V0.7.9 — FORMULARIO DE CONTACTO
   ========================================================= */

.v-contact-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(169,141,98,.10), transparent 34%),
    radial-gradient(circle at 88% 78%, rgba(39,60,53,.08), transparent 32%),
    var(--velaure-bg);
}

.v-contact-shell {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 54px;
  align-items: start;
  padding: 54px;
  border-radius: 34px;
  background: var(--velaure-surface);
  border: 1px solid var(--velaure-line);
  box-shadow: 0 28px 70px rgba(23,23,20,.08);
}

.v-contact-copy h2 {
  max-width: 650px;
  margin-top: 22px;
}

.v-contact-copy > p {
  max-width: 620px;
  color: var(--velaure-muted);
  font-size: 18px;
}

.v-contact-points {
  display: grid;
  gap: 14px;
  margin: 34px 0;
}

.v-contact-point {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--velaure-line);
}

.v-contact-point > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--velaure-green);
  font: 800 12px/1 "Manrope", sans-serif;
}

.v-contact-point div {
  display: grid;
  gap: 4px;
}

.v-contact-point strong {
  color: var(--velaure-ink);
  font: 700 17px/1.3 "Manrope", sans-serif;
}

.v-contact-point small {
  color: var(--velaure-muted);
  font-size: 14px;
  line-height: 1.5;
}

.v-contact-email {
  display: inline-flex;
  color: var(--velaure-green) !important;
  font: 800 18px/1.2 "Manrope", sans-serif;
  text-decoration: none !important;
  border-bottom: 1px solid var(--velaure-accent);
}

.v-contact-card {
  padding: 30px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(255,255,255,.08), transparent 30%),
    var(--velaure-green);
  box-shadow: 0 24px 54px rgba(39,60,53,.18);
}

.v-contact-form {
  display: grid;
  gap: 18px;
}

.v-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.v-form-field {
  display: grid;
  gap: 8px;
}

.v-form-field label {
  color: rgba(255,255,255,.90);
  font-size: 13px;
  font-weight: 700;
}

.v-form-field input,
.v-form-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  padding: 15px 16px;
  color: var(--velaure-ink);
  background: rgba(255,255,255,.96);
  font: 500 16px/1.45 "DM Sans", sans-serif;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.v-form-field textarea {
  resize: vertical;
  min-height: 150px;
}

.v-form-field input::placeholder,
.v-form-field textarea::placeholder {
  color: #8A877F;
}

.v-form-field input:focus,
.v-form-field textarea:focus {
  border-color: var(--velaure-accent);
  box-shadow: 0 0 0 4px rgba(169,141,98,.20);
}

.v-form-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.5;
  cursor: pointer;
}

.v-form-consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--velaure-accent);
}

.v-form-consent a {
  color: #E6D0A4 !important;
  text-decoration: underline;
}

.v-contact-submit {
  width: 100%;
  border: 0;
  color: var(--velaure-ink) !important;
  background: #E6D0A4 !important;
  cursor: pointer;
}

.v-contact-submit:hover {
  background: #F0DDB7 !important;
}

.v-form-help {
  margin: -4px 0 0;
  color: rgba(255,255,255,.58);
  text-align: center;
  font-size: 12px;
}

.v-form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.v-form-notice {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
  padding: 15px 16px;
  border-radius: 16px;
  font-size: 14px;
}

.v-form-notice strong {
  font-family: "Manrope", sans-serif;
}

.v-form-notice--success {
  color: #163528;
  background: #DDF1E5;
  border: 1px solid rgba(22,53,40,.12);
}

.v-form-notice--error {
  color: #6A2424;
  background: #F7DFDF;
  border: 1px solid rgba(106,36,36,.12);
}

@media (max-width: 980px) {
  .v-contact-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .v-contact-shell {
    gap: 28px;
    padding: 22px;
    border-radius: 26px;
  }

  .v-contact-card {
    padding: 20px;
    border-radius: 22px;
  }

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

  .v-contact-copy > p {
    font-size: 16px;
  }

  .v-contact-point {
    grid-template-columns: 38px 1fr;
  }
}


/* =========================================================
   VELAURE V0.7.10 — ENLACES A LANDINGS DE SECTORES
   ========================================================= */

.v-sector {
  cursor: pointer;
}

.v-sector-copy::after {
  content: "Ver solución →";
  display: block;
  margin-top: 8px;
  color: #E6D0A4;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .25s ease, transform .25s ease;
}

.v-sector:hover .v-sector-copy::after,
.v-sector:focus-visible .v-sector-copy::after {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .v-sector-copy::after {
    opacity: 1;
    transform: none;
  }
}


/* =========================================================
   VELAURE V0.7.11 — CONTACTO POR EMAIL Y WHATSAPP
   ========================================================= */

.v-contact-card--actions {
  display: grid;
  gap: 24px;
  align-content: center;
  min-height: 560px;
}

.v-contact-orb {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 4px;
  display: grid;
  place-items: center;
}

.v-contact-orb::before,
.v-contact-orb::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  animation: velaure-contact-ring 2.4s ease-in-out infinite;
}

.v-contact-orb::before {
  inset: 12px;
  border: 1px solid rgba(230,208,164,.28);
}

.v-contact-orb::after {
  inset: 0;
  border: 1px solid rgba(255,255,255,.10);
  animation-delay: .25s;
}

.v-contact-orb__core {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 34% 28%,
    #F3E3C3 0%,
    #CFB07B 48%,
    #9A7444 100%
  );
  box-shadow:
    0 0 0 13px rgba(169,141,98,.10),
    0 18px 36px rgba(0,0,0,.22);
  animation: velaure-contact-core 2.2s ease-in-out infinite;
}

.v-contact-orb__wave {
  position: absolute;
  bottom: 4px;
  width: 80px;
  height: 18px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      transparent 0 6%,
      rgba(230,208,164,.95) 6% 10%,
      transparent 10% 18%,
      rgba(255,255,255,.72) 18% 23%,
      transparent 23% 32%,
      rgba(230,208,164,.95) 32% 37%,
      transparent 37% 47%,
      rgba(255,255,255,.72) 47% 52%,
      transparent 52% 63%,
      rgba(230,208,164,.95) 63% 68%,
      transparent 68% 78%,
      rgba(255,255,255,.72) 78% 83%,
      transparent 83% 100%
    );
  animation: velaure-contact-wave 1.1s ease-in-out infinite;
}

@keyframes velaure-contact-ring {
  0%, 100% {
    transform: scale(.96);
    opacity: .52;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes velaure-contact-core {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.045);
  }
}

@keyframes velaure-contact-wave {
  0%, 100% {
    transform: scaleX(.92);
    opacity: .68;
  }
  50% {
    transform: scaleX(1.08);
    opacity: 1;
  }
}

.v-contact-card-copy {
  display: grid;
  gap: 10px;
  text-align: center;
}

.v-contact-card-eyebrow {
  color: #E6D0A4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.v-contact-card-copy h3 {
  max-width: 560px;
  margin: 0 auto;
  color: #FFFFFF;
  font: 800 clamp(28px, 3vw, 42px)/1.08 "Manrope", sans-serif;
  letter-spacing: -.04em;
}

.v-contact-card-copy p {
  max-width: 590px;
  margin: 0 auto;
  color: rgba(255,255,255,.70);
  font-size: 16px;
  line-height: 1.65;
}

.v-contact-actions {
  display: grid;
  gap: 13px;
  margin-top: 4px;
}

.v-contact-action,
.v-contact-action:link,
.v-contact-action:visited {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 18px;
  border-radius: 19px;
  text-decoration: none !important;
  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}

.v-contact-action:hover {
  transform: translateY(-2px);
}

.v-contact-action--email {
  color: var(--velaure-ink) !important;
  background: #E6D0A4;
  border: 1px solid #E6D0A4;
}

.v-contact-action--email:hover {
  background: #F0DDB7;
  box-shadow: 0 13px 28px rgba(0,0,0,.15);
}

.v-contact-action--whatsapp {
  color: #FFFFFF !important;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
}

.v-contact-action--whatsapp:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(230,208,164,.45);
  box-shadow: 0 13px 28px rgba(0,0,0,.14);
}

.v-contact-action__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  font-size: 20px;
  font-weight: 800;
}

.v-contact-action--email .v-contact-action__icon {
  color: #FFFFFF;
  background: var(--velaure-green);
}

.v-contact-action--whatsapp .v-contact-action__icon {
  color: var(--velaure-green);
  background: #E6D0A4;
}

.v-contact-action__copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.v-contact-action__copy small {
  color: inherit;
  opacity: .66;
  font-size: 12px;
}

.v-contact-action__copy strong {
  color: inherit;
  overflow-wrap: anywhere;
  font: 800 17px/1.25 "Manrope", sans-serif;
}

.v-contact-action__arrow {
  color: inherit;
  font-size: 22px;
  font-weight: 800;
  transition: transform .2s ease;
}

.v-contact-action:hover .v-contact-action__arrow {
  transform: translateX(4px);
}

.v-contact-card-note {
  margin: 0;
  color: rgba(255,255,255,.52);
  text-align: center;
  font-size: 12px;
}

@media (max-width: 767px) {
  .v-contact-card--actions {
    min-height: auto;
  }

  .v-contact-orb {
    width: 128px;
    height: 128px;
  }

  .v-contact-orb__core {
    width: 76px;
    height: 76px;
  }

  .v-contact-card-copy h3 {
    font-size: 29px;
  }

  .v-contact-action,
  .v-contact-action:link,
  .v-contact-action:visited {
    grid-template-columns: 44px minmax(0, 1fr) 24px;
    padding: 14px;
  }

  .v-contact-action__icon {
    width: 42px;
    height: 42px;
  }

  .v-contact-action__copy strong {
    font-size: 15px;
  }
}


/* =========================================================
   VELAURE V0.7.12 — CTA PRINCIPALES
   ========================================================= */

.v-demo-call {
  letter-spacing: .015em;
}

.v-actions .v-button--light {
  white-space: nowrap;
}


/* =========================================================
   VELAURE V0.8.0 — LANDING BELLEZA
   ========================================================= */

.vb-page {
  overflow: hidden;
}

.vb-hero {
  padding: 88px 0 82px;
  background:
    radial-gradient(circle at 86% 18%, rgba(169,141,98,.12), transparent 30%),
    radial-gradient(circle at 10% 84%, rgba(39,60,53,.07), transparent 34%),
    var(--velaure-bg);
}

.vb-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 66px;
  align-items: center;
}

.vb-hero-copy h1 {
  margin: 24px 0 22px;
  max-width: 780px;
  color: var(--velaure-ink);
  font: 800 clamp(52px, 6.6vw, 88px)/.98 "Manrope", sans-serif;
  letter-spacing: -.065em;
}

.vb-hero-copy h1 em {
  display: block;
  color: var(--velaure-green);
  font-style: normal;
}

.vb-hero-lead {
  max-width: 700px;
  margin: 0 0 24px;
  color: var(--velaure-muted);
  font-size: 19px;
  line-height: 1.65;
}

.vb-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}

.vb-proof-row span {
  display: inline-flex;
  padding: 9px 13px;
  color: var(--velaure-ink);
  background: rgba(255,255,255,.58);
  border: 1px solid var(--velaure-line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.vb-proof-row strong {
  color: var(--velaure-green);
}

.vb-hero-visual {
  position: relative;
  min-height: 650px;
  border-radius: 36px;
  overflow: hidden;
  background: var(--velaure-green);
  box-shadow: 0 34px 76px rgba(23,23,20,.15);
}

.vb-hero-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .36;
  filter: saturate(.78) contrast(1.04);
}

.vb-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(25,45,38,.94), rgba(25,45,38,.28) 65%, rgba(25,45,38,.58));
}

.vb-live-card {
  position: absolute;
  z-index: 2;
  inset: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vb-live-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.vb-live-head > strong {
  font: 800 18px/1.2 "Manrope", sans-serif;
}

.vb-live-head > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.vb-live-head i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8FE0AE;
  box-shadow: 0 0 0 6px rgba(143,224,174,.13);
}

.vb-mini-orb {
  width: 104px;
  height: 104px;
  margin: 26px auto 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #F3E3C3, #CFB07B 48%, #9A7444);
  box-shadow:
    0 0 0 15px rgba(255,255,255,.055),
    0 0 0 34px rgba(255,255,255,.03),
    0 20px 42px rgba(0,0,0,.24);
  animation: vb-orb-speak 2.3s ease-in-out infinite;
}

@keyframes vb-orb-speak {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}

.vb-chat {
  max-width: 84%;
  padding: 17px 18px;
  border-radius: 20px;
  box-shadow: 0 16px 38px rgba(0,0,0,.12);
}

.vb-chat small {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .10em;
}

.vb-chat p {
  margin: 0;
  font-size: 17px;
  line-height: 1.42;
  font-weight: 600;
}

.vb-chat--client {
  margin-left: auto;
  color: #fff;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
}

.vb-chat--velaure {
  color: var(--velaure-ink);
  background: rgba(255,253,248,.97);
}

.vb-live-result {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding: 15px 17px;
  color: #fff;
  border: 1px solid rgba(230,208,164,.32);
  border-radius: 19px;
  background: rgba(23,23,20,.66);
  backdrop-filter: blur(14px);
}

.vb-live-result > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--velaure-green);
  background: #E6D0A4;
  font-weight: 900;
}

.vb-live-result div {
  display: grid;
  gap: 2px;
}

.vb-live-result strong {
  font-family: "Manrope", sans-serif;
}

.vb-live-result small {
  color: rgba(255,255,255,.62);
}

.vb-section-soft {
  background: var(--velaure-surface);
}

.vb-section-head-center {
  margin-inline: auto;
  text-align: center;
}

.vb-usecase-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
}

.vb-usecase-card {
  position: relative;
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--velaure-line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(23,23,20,.05);
}

.vb-usecase-card--featured {
  grid-row: span 2;
  background:
    radial-gradient(circle at 92% 8%, rgba(169,141,98,.11), transparent 35%),
    #fff;
}

.vb-usecase-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(23,23,20,.34);
  font: 800 13px/1 "Manrope", sans-serif;
}

.vb-usecase-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  color: #fff;
  background: var(--velaure-green);
  border-radius: 15px;
  font-size: 20px;
  font-weight: 800;
}

.vb-usecase-card h3 {
  margin: 0 0 12px;
  color: var(--velaure-ink);
  font: 800 24px/1.18 "Manrope", sans-serif;
  letter-spacing: -.025em;
}

.vb-usecase-card > p {
  color: var(--velaure-muted);
}

.vb-usecase-card ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.vb-usecase-card li {
  position: relative;
  padding-left: 20px;
  color: var(--velaure-ink);
  font-size: 15px;
}

.vb-usecase-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--velaure-accent-dark);
  font-weight: 900;
}

.vb-usecase-intro {
  max-width: 630px;
}

.vb-conversation {
  display: grid;
  gap: 10px;
  margin: 24px 0 18px;
}

.vb-conversation-line {
  display: grid;
  gap: 4px;
  padding: 13px 15px;
  border-radius: 16px;
}

.vb-conversation-line strong {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vb-conversation-line span {
  font-size: 15px;
  line-height: 1.45;
}

.vb-conversation-line--client {
  margin-left: 34px;
  color: #fff;
  background: var(--velaure-green);
}

.vb-conversation-line--velaure {
  margin-right: 34px;
  color: var(--velaure-ink);
  background: var(--velaure-bg);
  border: 1px solid var(--velaure-line);
}

.vb-result-pill {
  padding: 12px 14px;
  color: var(--velaure-green);
  background: rgba(169,141,98,.13);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
}

.vb-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.vb-feature-grid article {
  min-height: 220px;
  padding: 25px;
  border: 1px solid var(--velaure-line);
  border-radius: 24px;
  background: var(--velaure-surface);
}

.vb-feature-grid article > span {
  display: block;
  color: var(--velaure-accent-dark);
  font: 800 13px/1 "Manrope", sans-serif;
}

.vb-feature-grid h3 {
  margin: 46px 0 10px;
  color: var(--velaure-green);
  font: 800 23px/1.2 "Manrope", sans-serif;
}

.vb-feature-grid p {
  margin: 0;
  color: var(--velaure-muted);
}

.vb-integration-section {
  background:
    radial-gradient(circle at 9% 18%, rgba(169,141,98,.09), transparent 34%),
    var(--velaure-bg);
}

.vb-integration-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 68px;
  align-items: center;
}

.vb-integration-grid h2 {
  max-width: 760px;
  margin: 22px 0 18px;
  color: var(--velaure-ink);
  font: 800 clamp(38px, 5vw, 62px)/1.04 "Manrope", sans-serif;
  letter-spacing: -.048em;
}

.vb-integration-grid > div:first-child > p {
  max-width: 720px;
  color: var(--velaure-muted);
  font-size: 18px;
}

.vb-integration-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 18px;
}

.vb-integration-tags span {
  padding: 10px 14px;
  color: var(--velaure-ink);
  background: #fff;
  border: 1px solid var(--velaure-line);
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
}

.vb-integration-note {
  font-size: 13px !important;
  line-height: 1.55;
}

.vb-sync-panel {
  position: relative;
  min-height: 520px;
  display: grid;
  align-content: center;
  gap: 19px;
  padding: 34px;
  overflow: hidden;
  color: #fff;
  background: var(--velaure-green);
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(39,60,53,.18);
}

.vb-sync-panel::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}

.vb-sync-orb {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 96px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #F3E3C3, #CFB07B 48%, #9A7444);
  box-shadow:
    0 0 0 15px rgba(255,255,255,.055),
    0 18px 38px rgba(0,0,0,.20);
}

.vb-sync-source,
.vb-sync-destination {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 17px 18px;
  border-radius: 18px;
}

.vb-sync-source {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.15);
}

.vb-sync-destination {
  color: var(--velaure-ink);
  background: #fff;
}

.vb-sync-source small,
.vb-sync-destination small {
  font-weight: 800;
  letter-spacing: .10em;
  opacity: .62;
}

.vb-sync-line {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 6px;
  height: 30px;
  align-items: center;
}

.vb-sync-line i {
  display: block;
  width: 5px;
  border-radius: 999px;
  background: #E6D0A4;
  animation: vb-sync-wave 1s ease-in-out infinite;
}

.vb-sync-line i:nth-child(1) { height: 10px; }
.vb-sync-line i:nth-child(2) { height: 22px; animation-delay: .10s; }
.vb-sync-line i:nth-child(3) { height: 30px; animation-delay: .18s; }
.vb-sync-line i:nth-child(4) { height: 18px; animation-delay: .28s; }
.vb-sync-line i:nth-child(5) { height: 9px; animation-delay: .36s; }

@keyframes vb-sync-wave {
  50% { transform: scaleY(.55); opacity: .54; }
}

.vb-steps-section {
  background: var(--velaure-surface);
}

.vb-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.vb-steps-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--velaure-line);
  border-radius: 23px;
}

.vb-steps-grid span {
  color: var(--velaure-accent-dark);
  font: 800 13px/1 "Manrope", sans-serif;
}

.vb-steps-grid h3 {
  margin: 38px 0 9px;
  color: var(--velaure-green);
  font: 800 21px/1.2 "Manrope", sans-serif;
}

.vb-steps-grid p {
  margin: 0;
  color: var(--velaure-muted);
}

.vb-price-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  padding: 48px;
  color: #fff;
  background:
    radial-gradient(circle at 87% 14%, rgba(255,255,255,.08), transparent 28%),
    var(--velaure-ink);
  border-radius: 34px;
}

.vb-price-card h2 {
  margin: 20px 0 12px;
  color: #fff;
  font: 800 clamp(38px, 5vw, 58px)/1.04 "Manrope", sans-serif;
  letter-spacing: -.045em;
}

.vb-price-card p {
  max-width: 710px;
  color: rgba(255,255,255,.68);
  font-size: 17px;
}

.vb-price-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
  color: #E6D0A4;
  font-weight: 700;
  font-size: 14px;
}

.vb-price-side {
  min-width: 230px;
  display: grid;
  justify-items: end;
  gap: 9px;
  text-align: right;
}

.vb-price-side > strong {
  font: 800 58px/1 "Manrope", sans-serif;
  letter-spacing: -.055em;
}

.vb-price-side > span {
  margin-bottom: 15px;
  color: rgba(255,255,255,.58);
}

.vb-price-side .v-button {
  color: var(--velaure-ink) !important;
  background: #E6D0A4;
  border-color: #E6D0A4;
}

.vb-final-cta {
  background: var(--velaure-bg);
}

.vb-final-cta-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 40px;
  border: 1px solid var(--velaure-line);
  border-radius: 30px;
  background: var(--velaure-surface);
  box-shadow: 0 24px 60px rgba(23,23,20,.07);
}

.vb-final-orb {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #F3E3C3, #CFB07B 48%, #9A7444);
  box-shadow:
    0 0 0 14px rgba(169,141,98,.10),
    0 15px 32px rgba(23,23,20,.14);
}

.vb-final-cta-card h2 {
  margin: 17px 0 8px;
  color: var(--velaure-ink);
  font: 800 clamp(32px, 4vw, 50px)/1.05 "Manrope", sans-serif;
  letter-spacing: -.042em;
}

.vb-final-cta-card p {
  margin: 0;
  color: var(--velaure-muted);
}

.vb-final-actions {
  display: grid;
  gap: 10px;
}

@media (max-width: 1080px) {
  .vb-hero-grid,
  .vb-integration-grid {
    grid-template-columns: 1fr;
  }

  .vb-hero-visual {
    min-height: 630px;
  }

  .vb-usecase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vb-usecase-card--featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .vb-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vb-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vb-final-cta-card {
    grid-template-columns: 100px 1fr;
  }

  .vb-final-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, max-content);
  }
}

@media (max-width: 767px) {
  .vb-hero {
    padding: 58px 0 62px;
  }

  .vb-hero-grid {
    gap: 38px;
  }

  .vb-hero-copy h1 {
    font-size: 48px;
  }

  .vb-hero-lead {
    font-size: 17px;
  }

  .vb-proof-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .vb-proof-row span {
    justify-content: center;
  }

  .vb-hero-visual {
    min-height: 600px;
    border-radius: 26px;
  }

  .vb-live-card {
    inset: 20px;
  }

  .vb-live-head {
    align-items: flex-start;
    gap: 12px;
  }

  .vb-live-head > span {
    justify-content: flex-end;
  }

  .vb-chat {
    max-width: 94%;
  }

  .vb-usecase-grid,
  .vb-feature-grid,
  .vb-steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .vb-usecase-card--featured {
    grid-column: auto;
  }

  .vb-conversation-line--client,
  .vb-conversation-line--velaure {
    margin-left: 0;
    margin-right: 0;
  }

  .vb-integration-grid {
    gap: 36px;
  }

  .vb-sync-panel {
    min-height: 490px;
    padding: 22px;
    border-radius: 26px;
  }

  .vb-price-card {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .vb-price-side {
    justify-items: start;
    text-align: left;
  }

  .vb-final-cta-card {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }

  .vb-final-orb {
    width: 84px;
    height: 84px;
  }

  .vb-final-actions {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .vb-final-actions .v-button {
    width: 100%;
  }
}


/* =========================================================
   VELAURE V0.9.0 — LANDINGS RESTAURANTES Y TALLERES
   Reutilizan la estructura y estilo corporativo de Belleza.
   ========================================================= */

.vr-hero {
  background:
    radial-gradient(circle at 86% 18%, rgba(169,141,98,.14), transparent 30%),
    radial-gradient(circle at 10% 84%, rgba(39,60,53,.07), transparent 34%),
    var(--velaure-bg);
}

.vt-hero {
  background:
    radial-gradient(circle at 86% 18%, rgba(39,60,53,.11), transparent 30%),
    radial-gradient(circle at 10% 84%, rgba(169,141,98,.08), transparent 34%),
    var(--velaure-bg);
}

.vr-page .vb-usecase-icon {
  background: linear-gradient(145deg, #80633F, #4A3928);
}

.vt-page .vb-usecase-icon {
  background: linear-gradient(145deg, #344A42, #1B2723);
}

.vr-page .vb-sync-panel {
  background:
    radial-gradient(circle at 86% 14%, rgba(255,255,255,.08), transparent 30%),
    #3B3026;
}

.vt-page .vb-sync-panel {
  background:
    radial-gradient(circle at 86% 14%, rgba(255,255,255,.08), transparent 30%),
    var(--velaure-green);
}

@media (max-width: 767px) {
  .vr-page,
  .vt-page {
    overflow-x: clip;
  }
}
