:root {
  --vm-gold: #a88431;
  --vm-gold-light: #c9a961;
  --vm-gold-soft: #f6d98a;
  --vm-dark: #2b1d10;
  --vm-cream: #faf5e8;
  --vm-text: #2b1d10;
  --vm-text-soft: #5a4a35;
  --vm-wa: #25D366;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--vm-text);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--vm-dark); }
img { max-width: 100%; height: auto; display: block; }

/* ===== Cintillo + Header ===== */
.vm-topbar {
  background: linear-gradient(90deg, #2b1d10 0%, #3d2a16 50%, #5a3d20 100%);
  color: #f6e6c3;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,169,97,.3);
}
.vm-topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
}
.vm-topbar-info { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.vm-topbar-info span { display: inline-flex; align-items: center; gap: 5px; }
.vm-topbar-info i { color: var(--vm-gold-light); font-size: 15px; }
.vm-topbar-wa {
  background: var(--vm-wa);
  color: #fff !important;
  padding: 5px 14px;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(37,211,102,.35);
}
.vm-topbar-wa:hover { background: #1ebe5d; color: #fff; }
.vm-topbar-wa i { font-size: 16px; }

@media (max-width: 768px) {
  .vm-topbar { font-size: 11px; padding: 6px 0; }
  .vm-topbar-info span:nth-child(2) { display: none; }
  .vm-topbar .container { flex-wrap: nowrap !important; }
  .vm-topbar-info { flex: 1; min-width: 0; overflow: hidden; }
  .vm-topbar-wa {
    padding: 4px 10px;
    flex-shrink: 0;
  }
  .vm-topbar-wa i { font-size: 18px; }
}

.vm-header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  position: sticky; top: 0;
  z-index: 1000;
}
.vm-header .navbar-brand img { max-height: 60px; width: auto; }
.vm-nav-link {
  color: var(--vm-text) !important;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 8px 14px !important;
  transition: color .2s;
}
.vm-nav-link:hover { color: var(--vm-gold) !important; }
.vm-nav-cta {
  background: linear-gradient(135deg, var(--vm-gold), var(--vm-gold-light));
  color: #fff !important;
  border-radius: 24px;
  padding: 8px 18px !important;
  margin-left: 8px;
  box-shadow: 0 3px 10px rgba(168,132,49,.3);
}
.vm-nav-cta:hover { color: #fff !important; background: linear-gradient(135deg, #8f6e29, var(--vm-gold)); }

@media (max-width: 768px) {
  .vm-header .navbar-brand img { max-height: 48px; }
}

/* ===== Botones base ===== */
.vm-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: none;
  transition: all .25s;
  cursor: pointer;
}
.vm-btn-primary {
  background: linear-gradient(135deg, var(--vm-gold), var(--vm-gold-light));
  color: #fff;
  box-shadow: 0 4px 14px rgba(168,132,49,.35);
}
.vm-btn-primary:hover { background: linear-gradient(135deg, #8f6e29, var(--vm-gold)); color: #fff; transform: translateY(-2px); }
.vm-btn-wa {
  background: var(--vm-wa);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.vm-btn-wa:hover { background: #1ebe5d; color: #fff; transform: translateY(-2px); }
.vm-btn-outline {
  background: transparent;
  color: var(--vm-gold);
  border: 2px solid var(--vm-gold);
}
.vm-btn-outline:hover { background: var(--vm-gold); color: #fff; }

/* ===== Section utilities — espaciado uniforme y ritmo visual ===== */
.vm-section { padding: 50px 0; background: #fff; }
@media (min-width: 768px) { .vm-section { padding: 60px 0; } }
/* TODA sección consecutiva → padding-top 0 (gap solo del padding-bottom anterior) */
.vm-section + .vm-section,
.vm-section + .vm-section-alt,
.vm-section-alt + .vm-section,
.vm-section-alt + .vm-section-alt { padding-top: 0; }
/* Después del hero, padding-top inicial razonable */
.vm-page-hero + .vm-section,
.vm-page-hero + .vm-section-alt { padding-top: 40px; }
@media (min-width: 768px) {
  .vm-page-hero + .vm-section,
  .vm-page-hero + .vm-section-alt { padding-top: 50px; }
}
/* Variante con fondo crema — el cambio de bg es el divisor visual */
.vm-section-alt { background: linear-gradient(180deg, #fff 0%, var(--vm-cream) 100%); }
/* Garantizar separación entre hero y primera sección */
.vm-hero + .vm-section { padding-top: 50px; }
@media (min-width: 768px) {
  .vm-hero + .vm-section { padding-top: 80px; }
}
/* Imágenes siempre responsivas */
.vm-section img,
.vm-page-hero + .vm-section img { max-width: 100%; height: auto; }
/* Force border-radius en cards de servicio imágenes */
.vm-sv-card-img { width: 100%; }

.vm-badge {
  display: inline-block;
  background: rgba(168,132,49,.12);
  color: var(--vm-gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.vm-title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 12px;
}
@media (min-width: 768px) { .vm-title { font-size: 2.6rem; } }
.vm-title em { font-style: italic; color: var(--vm-gold); }
.vm-underline {
  width: 70px; height: 3px;
  background: linear-gradient(90deg, var(--vm-gold), var(--vm-gold-light));
  margin: 14px auto 22px;
  border-radius: 2px;
}
.vm-underline.left { margin-left: 0; margin-right: 0; }
.vm-lead {
  color: var(--vm-text-soft);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== Hero slider ===== */
.vm-hero { position: relative; }
.vm-hero .carousel-item {
  height: 70vh;
  min-height: 460px;
  background-size: cover;
  background-position: center;
}
@media (min-width: 768px) {
  .vm-hero .carousel-item { height: 80vh; min-height: 580px; }
}
.vm-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(15,10,5,.8) 0%, rgba(43,29,16,.55) 50%, rgba(43,29,16,.2) 100%);
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .vm-hero-overlay { background: linear-gradient(180deg, rgba(15,10,5,.8) 0%, rgba(15,10,5,.5) 50%, rgba(15,10,5,.85) 100%); }
}
.vm-hero-content { color: #fff; max-width: 600px; padding: 0 16px; }
.vm-hero-tag {
  display: inline-block;
  background: rgba(201,169,97,.2);
  color: var(--vm-gold-soft);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(246,217,138,.4);
}
.vm-hero-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 2px 14px rgba(0,0,0,.4);
}
@media (min-width: 768px) { .vm-hero-title { font-size: 3.2rem; } }
.vm-hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--vm-gold-soft), var(--vm-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vm-hero-subt {
  font-size: 1rem;
  color: rgba(255,255,255,.92);
  margin-bottom: 22px;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
@media (min-width: 768px) { .vm-hero-subt { font-size: 1.15rem; } }
.vm-hero-ctas { display: flex; flex-wrap: wrap; gap: 10px; }

.carousel-indicators [data-bs-target] {
  width: 30px; height: 4px;
  background-color: rgba(255,255,255,.5);
  border-radius: 2px;
  border: none;
}
.carousel-indicators .active {
  background-color: var(--vm-gold-soft);
  width: 50px;
}

/* ===== Quiénes somos ===== */
.vm-qs { background: linear-gradient(180deg, #fff 0%, var(--vm-cream) 100%); }
.vm-qs-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(168,132,49,.2);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.vm-qs-bullets { list-style: none; padding: 0; margin: 18px 0 24px; }
.vm-qs-bullets li {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0;
  color: var(--vm-text-soft);
}
.vm-qs-bullets li i { color: var(--vm-gold); font-size: 20px; flex-shrink: 0; }

/* ===== Servicio cards ===== */
.vm-sv-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0,0,0,.08);
  transition: all .3s;
  height: 100%;
  display: flex; flex-direction: column;
}
.vm-sv-card:hover { transform: translateY(-6px); box-shadow: 0 14px 34px rgba(168,132,49,.2); }
.vm-sv-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.vm-sv-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.vm-sv-card-body h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--vm-dark); }
.vm-sv-card-body p { color: var(--vm-text-soft); font-size: .92rem; flex: 1; margin-bottom: 14px; }
.vm-sv-card-btns { display: flex; gap: 6px; }
.vm-sv-card-btns .vm-btn { flex: 1; justify-content: center; font-size: 12px; padding: 9px 12px; }

/* ===== Sección dorada (más tratamientos) ===== */
.vm-mas {
  background:
    linear-gradient(180deg, rgba(15,30,55,.75) 0%, rgba(20,40,70,.7) 50%, rgba(15,25,45,.85) 100%),
    url('/assets/img/hero/bg-mas-tratamientos.jpg') center/cover no-repeat;
  color: #fff;
}
.vm-mas .vm-title { color: #fff; }
.vm-mas .vm-title em { color: var(--vm-gold-soft); -webkit-text-fill-color: var(--vm-gold-soft); }
.vm-mas .vm-lead { color: rgba(255,255,255,.85); }

/* ===== Doble CTA ===== */
.vm-cta-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transition: all .3s;
  border-top: 4px solid var(--vm-gold);
}
.vm-cta-card.dark {
  background: linear-gradient(135deg, var(--vm-dark) 0%, #3d2a16 100%);
  color: #fff;
  border-top-color: var(--vm-gold-soft);
}
.vm-cta-card.dark h3 { color: #fff; }
.vm-cta-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,.14); }
.vm-cta-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--vm-gold), var(--vm-gold-light));
  color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(168,132,49,.3);
}
.vm-cta-card.dark .vm-cta-icon {
  background: linear-gradient(135deg, var(--vm-gold-soft), var(--vm-gold-light));
  color: var(--vm-dark);
}
.vm-cta-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.vm-cta-card p { margin-bottom: 18px; opacity: .9; }

/* ===== Médicos ===== */
.vm-medico-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.vm-medico-photo {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(168,132,49,.2);
  position: relative;
}
.vm-medico-photo img { width: 100%; height: 200px; object-fit: cover; object-position: top; }
.vm-medico-photo span {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(43,29,16,.9) 0%, transparent 100%);
  color: #fff; padding: 18px 10px 10px;
  font-weight: 600; font-size: 13px; text-align: center;
}
.vm-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 18px 0 22px; }
.vm-stat {
  background: #fff;
  border: 1px solid #f0e7d0;
  border-radius: 12px;
  padding: 16px 8px;
  text-align: center;
}
.vm-stat strong { display: block; font-size: 1.7rem; color: var(--vm-gold); font-weight: 800; }
.vm-stat span { font-size: 11px; color: var(--vm-text-soft); text-transform: uppercase; letter-spacing: .5px; }

/* ===== Marcas ===== */
.vm-marcas { background: #fff; padding: 50px 0; border-top: 1px solid #f0e7d0; border-bottom: 1px solid #f0e7d0; }
.vm-marca {
  background: #fff;
  border: 1px solid #f0e7d0;
  border-radius: 12px;
  height: 90px;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  transition: all .25s;
}
.vm-marca:hover { border-color: var(--vm-gold-light); transform: translateY(-3px); box-shadow: 0 6px 18px rgba(168,132,49,.15); }
.vm-marca img { max-height: 50px; width: auto; filter: grayscale(40%); opacity: .85; transition: all .25s; }
.vm-marca:hover img { filter: grayscale(0%); opacity: 1; }

/* ===== Testimonios ===== */
.vm-testi { background: linear-gradient(180deg, var(--vm-cream) 0%, #fff 100%); }
.vm-testi-stats { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin: 22px 0 36px; }
.vm-testi-stat { text-align: center; }
.vm-testi-stat .vm-stars { color: #ffc107; font-size: 18px; }
.vm-testi-stat strong { display: block; font-size: 1.4rem; color: var(--vm-dark); font-family: 'Poppins'; font-weight: 800; }
.vm-testi-stat span { font-size: 11px; color: var(--vm-text-soft); text-transform: uppercase; letter-spacing: .8px; }
.vm-testi-card {
  background: #fff;
  border-radius: 16px;
  padding: 26px 22px;
  height: 100%;
  box-shadow: 0 6px 20px rgba(168,132,49,.12);
  border-top: 4px solid var(--vm-gold);
}
.vm-testi-card .vm-stars { color: #ffc107; margin-bottom: 12px; }
.vm-testi-text { font-style: italic; color: var(--vm-text-soft); margin-bottom: 18px; font-size: .95rem; line-height: 1.65; }
.vm-testi-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid #f0e7d0; }
.vm-testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vm-gold), var(--vm-gold-light));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: 'Poppins';
  flex-shrink: 0;
}
.vm-testi-author strong { display: block; color: var(--vm-dark); font-size: .95rem; }
.vm-testi-author small { color: var(--vm-text-soft); font-size: 12px; }

/* ===== Contacto ===== */
.vm-contact { background: linear-gradient(180deg, #fff 0%, var(--vm-cream) 100%); }
.vm-contact-info {
  background: #fff;
  border-radius: 16px;
  padding: 30px 26px;
  box-shadow: 0 8px 24px rgba(168,132,49,.12);
  border-top: 4px solid var(--vm-gold);
  height: 100%;
}
.vm-contact-row { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f0e7d0; }
.vm-contact-row:last-of-type { border-bottom: none; }
.vm-contact-row i { color: var(--vm-gold); font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.vm-contact-row strong { display: block; font-size: 13px; color: var(--vm-dark); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 2px; }
.vm-contact-row a, .vm-contact-row p { color: var(--vm-text-soft); text-decoration: none; margin: 0; font-size: .92rem; }
.vm-contact-row a:hover { color: var(--vm-gold); }
.vm-contact-map { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 24px rgba(168,132,49,.15); height: 100%; min-height: 380px; }
.vm-contact-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.vm-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 26px;
  box-shadow: 0 8px 24px rgba(168,132,49,.15);
}
.vm-form-card label { font-size: 12px; font-weight: 700; color: var(--vm-dark); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; display: block; }
.vm-form-card .form-control, .vm-form-card .form-select {
  background: #fafaf7;
  border: 1.5px solid #ede2c8;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .95rem;
}
.vm-form-card .form-control:focus, .vm-form-card .form-select:focus {
  background: #fff;
  border-color: var(--vm-gold);
  box-shadow: 0 0 0 3px rgba(168,132,49,.15);
}

/* ===== Menú móvil overlay ===== */
.vm-mobile-menu {
  position: fixed; inset: 0;
  z-index: 9999;
  visibility: hidden; opacity: 0;
  transition: opacity .25s ease, visibility 0s linear .25s;
}
.vm-mobile-menu.open {
  visibility: visible; opacity: 1;
  transition: opacity .25s ease;
}
.vm-mobile-menu-backdrop { position: absolute; inset: 0; background: rgba(15,10,5,.6); }
.vm-mobile-menu-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 85vw; max-width: 340px;
  background: linear-gradient(180deg, #fefdf9, var(--vm-cream));
  padding: 70px 22px 30px;
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0,0,0,.25);
  transform: translateX(100%);
  transition: transform .3s ease;
}
.vm-mobile-menu.open .vm-mobile-menu-panel { transform: translateX(0); }
.vm-mobile-menu-x {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px;
  background: var(--vm-dark);
  border: 2px solid var(--vm-gold-light);
  border-radius: 50%;
  color: #fff; font-size: 18px; font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
}
.vm-mobile-menu-x:hover { background: #d04848; }
.vm-mobile-quick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 20px; }
.vm-mobile-quick a {
  background: #fff; border: 1px solid #ede2c8; border-radius: 10px;
  padding: 12px 4px; text-align: center; text-decoration: none;
}
.vm-mobile-quick a i { display: block; font-size: 24px; color: var(--vm-gold); margin-bottom: 3px; }
.vm-mobile-quick a span { font-size: 10px; color: var(--vm-dark); text-transform: uppercase; font-weight: 700; }
.vm-mobile-quick a:hover { background: var(--vm-gold); }
.vm-mobile-quick a:hover i, .vm-mobile-quick a:hover span { color: #fff; }
.vm-mobile-nav { display: flex; flex-direction: column; border-top: 1px solid rgba(168,132,49,.25); }
.vm-mobile-nav a {
  padding: 14px 8px;
  color: var(--vm-dark);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .5px;
  border-bottom: 1px solid rgba(168,132,49,.12);
}
.vm-mobile-nav a:last-child { border-bottom: none; }
.vm-mobile-nav a:hover { color: var(--vm-gold); }

/* ===== CONTACTO (rediseño limpio) ===== */
.vm-ct-trust { background: var(--vm-cream); padding: 36px 0; border-bottom: 1px solid #f0e7d0; }
.vm-ct-trust-item {
  padding: 18px 12px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f0e7d0;
  height: 100%;
  transition: all .25s;
}
.vm-ct-trust-item:hover { transform: translateY(-3px); border-color: var(--vm-gold-light); box-shadow: 0 6px 18px rgba(168,132,49,.12); }
.vm-ct-trust-item i {
  font-size: 32px;
  color: var(--vm-gold);
  display: block;
  margin-bottom: 8px;
}
.vm-ct-trust-item strong {
  display: block;
  color: var(--vm-dark);
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: 2px;
  font-family: 'Poppins';
}
.vm-ct-trust-item span {
  display: block;
  font-size: 11px;
  color: var(--vm-text-soft);
  letter-spacing: .3px;
}

.vm-ct-section { background: #fff; }
.vm-ct-info-card {
  background: linear-gradient(180deg, var(--vm-dark) 0%, #3d2a16 100%);
  color: #fff;
  border-radius: 16px;
  padding: 30px 26px;
  box-shadow: 0 14px 36px rgba(43,29,16,.2);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.vm-ct-info-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(201,169,97,.25);
  margin-bottom: 18px;
}
.vm-ct-info-head i {
  font-size: 38px;
  color: var(--vm-gold-soft);
  background: rgba(201,169,97,.15);
  width: 56px; height: 56px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.vm-ct-info-head h2 {
  font-size: 1.3rem;
  color: #fff;
  margin: 0;
  font-family: 'Playfair Display';
}
.vm-ct-info-head p {
  margin: 2px 0 0;
  color: var(--vm-gold-soft);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vm-ct-info-list { list-style: none; padding: 0; margin: 0 0 18px; }
.vm-ct-info-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,169,97,.12);
}
.vm-ct-info-list li:last-child { border-bottom: none; }
.vm-ct-info-list i {
  color: var(--vm-gold-soft);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.vm-ct-info-list strong {
  display: block;
  color: var(--vm-gold-soft);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.vm-ct-info-list p { color: #c9b89c; margin: 0; font-size: .94rem; line-height: 1.5; }
.vm-ct-info-list a { color: #fff; text-decoration: none; }
.vm-ct-info-list a:hover { color: var(--vm-gold-soft); }

.vm-ct-info-actions { display: flex; gap: 8px; margin-bottom: 18px; }
.vm-ct-info-actions .vm-btn { padding: 11px 16px; font-size: 13px; }

.vm-ct-map-mini {
  border-radius: 12px;
  overflow: hidden;
  margin-top: auto;
}
.vm-ct-map-mini iframe { width: 100%; height: 200px; border: 0; display: block; }

.vm-ct-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 12px 36px rgba(168,132,49,.12);
  border: 1px solid #f0e7d0;
}
.vm-ct-form-head { margin-bottom: 24px; }
.vm-ct-form-head em { font-style: italic; color: var(--vm-gold); }

.vm-ct-form .form-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--vm-dark);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 5px;
}
.vm-ct-form .form-control,
.vm-ct-form .form-select {
  background: #fafaf7;
  border: 1.5px solid #ede2c8;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: .95rem;
  color: var(--vm-dark);
  transition: all .2s;
}
.vm-ct-form .form-control:focus,
.vm-ct-form .form-select:focus {
  background: #fff;
  border-color: var(--vm-gold);
  box-shadow: 0 0 0 4px rgba(168,132,49,.12);
  outline: none;
}
.vm-ct-form textarea.form-control { resize: vertical; min-height: 110px; }
.vm-ct-form button[type="submit"] {
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 30px;
}

@media (max-width: 768px) {
  .vm-ct-info-card { padding: 24px 20px; }
  .vm-ct-info-head h2 { font-size: 1.1rem; }
  .vm-ct-form-card { padding: 26px 22px; }
  .vm-ct-form-head h2 { font-size: 1.4rem !important; }
  .vm-ct-info-actions { flex-direction: column; }
  .vm-ct-info-actions .vm-btn { width: 100%; }
}

/* ===== HERO INTERIOR (páginas internas) ===== */
.vm-page-hero {
  position: relative;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
@media (min-width: 768px) { .vm-page-hero { min-height: 380px; } }
.vm-page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(15,10,5,.8) 0%, rgba(43,29,16,.55) 60%, rgba(43,29,16,.2) 100%);
}
@media (max-width: 768px) {
  .vm-page-hero::before { background: linear-gradient(180deg, rgba(15,10,5,.75) 0%, rgba(15,10,5,.55) 50%, rgba(15,10,5,.85) 100%); }
}
.vm-page-hero-content { position: relative; z-index: 2; max-width: 700px; padding: 60px 16px; }
.vm-page-hero-tag {
  display: inline-block;
  background: rgba(201,169,97,.2);
  color: var(--vm-gold-soft);
  border: 1px solid rgba(246,217,138,.4);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.vm-page-hero-tag i { vertical-align: middle; margin-right: 4px; }
.vm-page-hero-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
  text-shadow: 0 2px 14px rgba(0,0,0,.5);
}
@media (min-width: 768px) { .vm-page-hero-title { font-size: 2.8rem; } }
.vm-page-hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--vm-gold-soft), var(--vm-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vm-page-hero-subt {
  font-size: 1rem;
  color: rgba(255,255,255,.9);
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.vm-page-hero-breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.vm-page-hero-breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.vm-page-hero-breadcrumb a:hover { color: var(--vm-gold-soft); }
.vm-page-hero-breadcrumb span { margin: 0 6px; opacity: .6; }
.vm-page-hero-breadcrumb strong { color: var(--vm-gold-soft); font-weight: 700; }

/* ===== FAQ Page ===== */
.vm-faq-hero {
  background: linear-gradient(180deg, var(--vm-cream) 0%, #fff 100%);
  padding: 60px 0 40px;
}
.vm-faq-section { padding: 30px 0 80px; background: #fff; }
.vm-faq-wrap {
  max-width: 880px;
  margin: 0 auto;
}
/* Esconder el h3 "Preguntas Frecuentes" duplicado que viene de la BD (ya está en el hero) */
.vm-faq-wrap > .container.pt-4 > .row > .col-md-12:first-child { display: none !important; }
/* Cards de cada pregunta */
.vm-faq-wrap .col-md-12.mb-4 {
  background: #fff;
  border-radius: 14px;
  padding: 22px 26px !important;
  margin-bottom: 14px !important;
  box-shadow: 0 4px 14px rgba(168,132,49,.1);
  border-left: 4px solid var(--vm-gold);
  border: 1px solid #f0e7d0;
  transition: all .25s;
  color: var(--vm-text-soft);
  font-size: .96rem;
  line-height: 1.7;
}
.vm-faq-wrap .col-md-12.mb-4:hover {
  box-shadow: 0 10px 28px rgba(168,132,49,.2);
  transform: translateX(4px);
  border-left-color: var(--vm-gold-light);
}
.vm-faq-wrap .col-md-12.mb-4 h4 {
  color: var(--vm-dark);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  padding-left: 32px;
  position: relative;
  line-height: 1.4;
  font-family: 'Playfair Display', serif;
}
.vm-faq-wrap .col-md-12.mb-4 h4::before {
  content: "?";
  position: absolute;
  left: 0; top: 2px;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--vm-gold), var(--vm-gold-light));
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}
.vm-faq-wrap .container.pt-4,
.vm-faq-wrap .row { margin: 0 !important; padding: 0 !important; max-width: none !important; }

/* CTA final */
.vm-faq-cta {
  margin-top: 40px;
  background: linear-gradient(135deg, var(--vm-dark) 0%, #3d2a16 100%);
  color: #fff;
  border-radius: 18px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 14px 36px rgba(43,29,16,.25);
  max-width: 880px;
  margin-left: auto; margin-right: auto;
}
.vm-faq-cta h3 { color: #fff; font-size: 1.5rem; margin-bottom: 10px; }
.vm-faq-cta p { color: rgba(255,255,255,.85); margin-bottom: 22px; }
.vm-faq-cta-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--vm-gold-soft), var(--vm-gold-light));
  color: var(--vm-dark);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 30px;
  margin-bottom: 14px;
}
.vm-faq-cta .vm-btn-outline { color: #fff; border-color: rgba(255,255,255,.4); }
.vm-faq-cta .vm-btn-outline:hover { background: #fff; color: var(--vm-dark); border-color: #fff; }

@media (max-width: 768px) {
  .vm-faq-wrap .col-md-12.mb-4 { padding: 18px 20px !important; font-size: .92rem; }
  .vm-faq-wrap .col-md-12.mb-4 h4 { font-size: 1rem; }
  .vm-faq-cta { padding: 28px 22px; }
  .vm-faq-cta h3 { font-size: 1.25rem; }
}

/* ===== COMPONENTES PÁGINAS DE SERVICIO (manuales) ===== */
.vm-brands-strip {
  background: linear-gradient(135deg,#fafaf7 0%,#fff7e6 100%);
  border: 1px solid #f0e7d0;
  border-radius: 14px;
  padding: 16px 22px;
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
}
.vm-brands-label {
  color: var(--vm-text-soft);
  font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: 1px;
  display: inline-flex; align-items: center; gap: 6px;
}
.vm-brands-label i { color: var(--vm-gold); font-size: 16px; }
.vm-brands-list { display: inline-flex; gap: 8px; flex-wrap: wrap; }
.vm-brand-pill {
  background: #fff;
  color: var(--vm-dark);
  border: 1.5px solid var(--vm-gold-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700; font-size: 13px;
}
@media (max-width: 768px) {
  .vm-brands-strip { flex-direction: column; align-items: flex-start; padding: 14px 18px; }
}

.vm-jv-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px 24px;
  height: 100%;
  border: 1px solid #f0e7d0;
  box-shadow: 0 4px 14px rgba(168,132,49,.08);
  transition: all .25s;
}
.vm-jv-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(168,132,49,.18); border-color: var(--vm-gold-light); }
.vm-jv-card-wide { background: linear-gradient(135deg,#fafaf7 0%,#fff7e6 100%); }
.vm-jv-tag {
  display: inline-block;
  background: rgba(168,132,49,.12);
  color: var(--vm-gold);
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 8px;
}
.vm-jv-card h3 { color: var(--vm-dark); font-size: 1.2rem; margin: 4px 0 10px; }
.vm-jv-card p { color: var(--vm-text-soft); font-size: .95rem; margin-bottom: 12px; }
.vm-jv-bullets { list-style: none; padding: 0; margin: 0; }
.vm-jv-bullets li {
  padding: 5px 0;
  display: flex; align-items: flex-start; gap: 8px;
  color: var(--vm-text-soft); font-size: .92rem;
}
.vm-jv-bullets li i { color: var(--vm-gold); font-size: 18px; flex-shrink: 0; margin-top: 1px; }

.vm-zone-card {
  background: #fff;
  border: 1px solid #f0e7d0;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  height: 100%;
  transition: all .25s;
  box-shadow: 0 3px 10px rgba(168,132,49,.06);
}
.vm-zone-card:hover { transform: translateY(-3px); border-color: var(--vm-gold-light); box-shadow: 0 10px 22px rgba(168,132,49,.15); }
.vm-zone-card i {
  font-size: 32px;
  color: var(--vm-gold);
  background: rgba(168,132,49,.1);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.vm-zone-card h4 { color: var(--vm-dark); font-size: .98rem; margin-bottom: 6px; font-family: 'Poppins'; font-weight: 700; }
.vm-zone-card p { color: var(--vm-text-soft); font-size: .82rem; line-height: 1.5; margin: 0; }

.vm-info-box {
  background: linear-gradient(135deg,#fafaf7 0%,#fff7e6 100%);
  border-radius: 16px;
  padding: 32px 28px;
  border-left: 4px solid var(--vm-gold);
  box-shadow: 0 6px 20px rgba(168,132,49,.1);
}
.vm-info-box img { width: 100%; height: auto; }

.vm-bullets-grid {
  list-style: none; padding: 0; margin: 14px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px;
}
.vm-bullets-grid li {
  padding: 6px 0;
  display: flex; align-items: flex-start; gap: 6px;
  color: var(--vm-text-soft); font-size: .92rem;
}
.vm-bullets-grid li i { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.text-danger { color: #d04848 !important; }
.text-gold-light { color: var(--vm-gold) !important; }

.vm-steps { list-style: none; counter-reset: stp; padding: 0; margin: 14px 0 0; }
.vm-steps li {
  counter-increment: stp;
  position: relative;
  padding: 10px 0 10px 46px;
  color: var(--vm-text-soft);
  font-size: .96rem;
}
.vm-steps li::before {
  content: counter(stp);
  position: absolute; left: 0; top: 8px;
  width: 32px; height: 32px;
  background: linear-gradient(135deg,var(--vm-gold),var(--vm-gold-light));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px;
  font-family: 'Poppins';
}

.vm-fact-list { display: flex; flex-direction: column; gap: 10px; }
.vm-fact {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(168,132,49,.1);
  border-top: 3px solid var(--vm-gold);
}
.vm-fact strong { display: block; font-size: 1.7rem; color: var(--vm-gold); font-weight: 800; line-height: 1; font-family: 'Poppins'; }
.vm-fact span { display: block; margin-top: 3px; color: var(--vm-text-soft); font-size: 10.5px; text-transform: uppercase; letter-spacing: .8px; }

.vm-pricing-box {
  background: #fff;
  border: 2px dashed var(--vm-gold-light);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
}
.vm-pricing-box > i {
  font-size: 44px;
  color: var(--vm-gold);
  margin-bottom: 8px;
}
.vm-pricing-box p { color: var(--vm-text-soft); font-size: 1rem; }

/* === FAQ con accordion Bootstrap === */
.vm-faq-cat-block { margin-bottom: 32px; }
.vm-faq-cat-title {
  font-size: 1.4rem;
  color: var(--vm-gold);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(168,132,49,.2);
  font-family: 'Playfair Display';
  font-style: italic;
}
.vm-faq-item {
  background: #fff !important;
  border: 1px solid #f0e7d0 !important;
  border-radius: 12px !important;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(168,132,49,.06);
}
.vm-faq-btn {
  background: #fff !important;
  color: var(--vm-dark) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  font-family: 'Playfair Display', serif !important;
  padding: 16px 18px !important;
  border: none !important;
  box-shadow: none !important;
}
.vm-faq-btn:not(.collapsed) {
  background: linear-gradient(135deg,#fff7e6,#fff) !important;
  color: var(--vm-gold) !important;
}
.vm-faq-btn::after { filter: invert(54%) sepia(90%) saturate(361%) hue-rotate(2deg) brightness(91%) contrast(86%); }
.vm-faq-body {
  color: var(--vm-text-soft);
  font-size: .96rem;
  line-height: 1.7;
  padding: 0 18px 18px;
  background: #fff;
}

.vm-faq-cta {
  background: linear-gradient(135deg,var(--vm-dark) 0%,#3d2a16 100%);
  color: #fff;
  border-radius: 16px;
  padding: 36px 26px;
  text-align: center;
  box-shadow: 0 14px 36px rgba(43,29,16,.2);
}
.vm-faq-cta i {
  font-size: 44px;
  color: var(--vm-gold-soft);
  display: block;
  margin-bottom: 10px;
}
.vm-faq-cta h3 { color: #fff; font-size: 1.4rem; margin-bottom: 8px; }
.vm-faq-cta p { color: rgba(255,255,255,.85); margin-bottom: 20px; }
.vm-faq-cta .vm-btn-outline { color: #fff; border-color: rgba(255,255,255,.4); }
.vm-faq-cta .vm-btn-outline:hover { background: #fff; color: var(--vm-dark); border-color: #fff; }

/* ===== Footer ===== */
.vm-footer {
  background: var(--vm-dark);
  color: #c9b89c;
  padding: 50px 0 0;
  margin-top: 50px;
}
.vm-footer-logo img { max-height: 60px; background: #fff; padding: 8px 12px; border-radius: 8px; margin-bottom: 14px; }
.vm-footer h5 { color: var(--vm-gold-soft); font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid rgba(201,169,97,.2); font-family: 'Poppins'; }
.vm-footer ul { list-style: none; padding: 0; margin: 0; }
.vm-footer ul li { padding: 5px 0; font-size: 14px; }
.vm-footer ul li a, .vm-footer p a { color: #c9b89c; text-decoration: none; transition: color .2s; }
.vm-footer ul li a:hover, .vm-footer p a:hover { color: var(--vm-gold-soft); }
.vm-footer p { font-size: 14px; color: #c9b89c; line-height: 1.7; }
.vm-footer i.fi { color: var(--vm-gold-light); margin-right: 6px; }
.vm-footer-social { display: flex; gap: 10px; margin-top: 10px; }
.vm-footer-social a {
  width: 38px; height: 38px;
  border: 1.5px solid var(--vm-gold);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--vm-gold);
  font-size: 18px;
  text-decoration: none;
  transition: all .25s;
}
.vm-footer-social a:hover { background: var(--vm-gold); color: #fff; }
.vm-footer-bottom {
  margin-top: 40px;
  padding: 18px 0;
  border-top: 1px solid rgba(201,169,97,.15);
  font-size: 12px;
  color: #87724f;
  text-align: center;
}
.vm-footer-bottom strong { color: var(--vm-gold-soft); }
.vm-footer-bottom a { color: var(--vm-gold-soft); text-decoration: none; font-weight: 700; }

/* ===== WhatsApp flotante ===== */
.vm-wa-float {
  position: fixed; bottom: 18px; right: 18px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--vm-wa);
  color: #fff !important;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  box-shadow: 0 6px 22px rgba(37,211,102,.45);
  z-index: 998;
  text-decoration: none;
  animation: vmPulse 2s infinite;
}
@keyframes vmPulse {
  0%,100% { box-shadow: 0 6px 22px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  50%     { box-shadow: 0 6px 22px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
}
.vm-wa-float:hover { background: #1ebe5d; color: #fff; }

/* Ocultar el WhatsApp del script externo de negocio.me (todas las variantes) */
.w2024_button_float,
.w2024_popForm,
a.w2024_popForm,
a[class*="w2024_button"],
a[rel="WP_FLOAT"],
[id^="w2024"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}