/* ================================================================
   VIAJESSURF.COM — Estilos principales
   Fuente: Inter | Bootstrap 4 + FA 5
   ================================================================ */

/* ── VARIABLES ──────────────────────────────────────────────── */
:root {
  --vs-primary:   #0a6b8a;
  --vs-primary-d: #074f67;
  --vs-primary-l: #e0f4fa;
  --vs-accent:    #f59e0b;
  --vs-accent-d:  #d97706;
  --vs-text:      #1a202c;
  --vs-muted:     #718096;
  --vs-border:    #e2e8f0;
  --vs-bg:        #f7f8fc;
  --vs-white:     #ffffff;
  --vs-radius:    12px;
  --vs-radius-sm: 8px;
  --vs-shadow:    0 2px 16px rgba(0,0,0,.08);
  --vs-shadow-md: 0 4px 24px rgba(0,0,0,.12);
}

/* ── BASE ───────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; }

input::placeholder, textarea::placeholder {
    color: #9ca3af !important;   /* gris suave */
    font-size: 0.9rem;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--vs-text);
  background: var(--vs-bg);
  font-size: .95rem;
  line-height: 1.6;
}

a { color: var(--vs-primary); }
a:hover { color: var(--vs-primary-d); }

h1,h2,h3,h4,h5,h6 { font-weight: 700; color: var(--vs-text); }

img { max-width: 100%; }

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar-vs {
  background: var(--vs-white);
  border-bottom: 1px solid var(--vs-border);
  padding: .75rem 0;
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
}

.navbar-vs .navbar-brand {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--vs-primary) !important;
  letter-spacing: -.5px;
}
.navbar-vs .navbar-brand i { color: var(--vs-accent); }

.navbar-vs .nav-link {
  color: var(--vs-text) !important;
  font-weight: 500;
  padding: .4rem .8rem !important;
  border-radius: var(--vs-radius-sm);
  transition: background .15s;
}
.navbar-vs .nav-link:hover { background: var(--vs-bg); }

.navbar-vs .navbar-toggler {
  border: none;
  padding: .3rem .5rem;
}
.navbar-vs .navbar-toggler:focus { outline: none; box-shadow: none; }
.navbar-vs .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.6%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.avatar-xs {
  width: 32px;
  height: 32px;
  object-fit: cover;
}

/* Dropdown */
.dropdown-vs {
  border: 1px solid var(--vs-border);
  border-radius: var(--vs-radius);
  box-shadow: var(--vs-shadow-md);
  padding: .5rem 0;
  min-width: 220px;
}
.dropdown-vs .dropdown-header { font-size: .8rem; }
.dropdown-vs .dropdown-item {
  font-size: .875rem;
  padding: .5rem 1rem;
  font-weight: 500;
  border-radius: 0;
  transition: background .12s;
}
.dropdown-vs .dropdown-item:hover { background: var(--vs-bg); }

/* ── BOTONES ─────────────────────────────────────────────────── */
.btn-vs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--vs-primary);
  color: #fff !important;
  border: none;
  border-radius: var(--vs-radius-sm);
  padding: .55rem 1.2rem;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: background .15s, transform .1s, box-shadow .15s;
  text-decoration: none !important;
}
.btn-vs:hover {
  background: var(--vs-primary-d);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(10,107,138,.3);
}
.btn-vs.btn-lg { padding: .75rem 1.8rem; font-size: 1rem; }
.btn-vs.btn-sm { padding: .35rem .9rem; font-size: .8rem; }
.btn-vs.btn-block { width: 100%; }

.btn-vs-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--vs-primary) !important;
  border: 1.5px solid var(--vs-primary);
  border-radius: var(--vs-radius-sm);
  padding: .5rem 1.1rem;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: background .15s, color .15s;
  text-decoration: none !important;
}
.btn-vs-outline:hover {
  background: var(--vs-primary) !important;
  color: #fff !important;
}
.btn-vs-outline.btn-sm { padding: .3rem .85rem; font-size: .8rem; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: 520px;
  background: linear-gradient(135deg, #074f67 0%, #0a6b8a 50%, #0d8aaf 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  opacity: .18;
}
.hero__content { position: relative; z-index: 1; padding: 5rem 0 4rem; }

.hero__tag {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: #fff;
  border-radius: 50px;
  padding: .3rem .9rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 1.2rem;
}
.hero__title {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1rem;
}
.hero__title--accent { color: var(--vs-accent); }
.hero__subtitle {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.hero__search { max-width: 560px; margin: 0 auto; }
.hero__search .form-control {
  height: 54px;
  font-size: 1rem;
  border-radius: var(--vs-radius-sm) 0 0 var(--vs-radius-sm);
}
.hero__search .btn-vs {
  height: 54px;
  border-radius: 0 var(--vs-radius-sm) var(--vs-radius-sm) 0;
}
.hero__wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
}
.hero__wave svg { width: 100%; height: 100%; }

/* ── SECTIONS ────────────────────────────────────────────────── */
.section { padding: 4rem 0; }
.section-title { font-size: 1.6rem; font-weight: 800; }
.section-subtitle { color: var(--vs-muted); margin-top: .25rem; }

/* ── DESTINO CARDS ───────────────────────────────────────────── */
.destino-card {
  display: block;
  text-align: center;
  text-decoration: none;
  color: var(--vs-text);
  padding: 1rem .5rem;
  border-radius: var(--vs-radius);
  transition: transform .18s, background .15s;
}
.destino-card:hover { transform: translateY(-4px); background: var(--vs-white); text-decoration: none; color: var(--vs-text); }
.destino-card__icon {
  width: 64px;
  height: 64px;
  background: var(--vs-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 10px;
  box-shadow: var(--vs-shadow);
  transition: box-shadow .18s;
}
.destino-card:hover .destino-card__icon { box-shadow: var(--vs-shadow-md); }
.destino-card__name { font-weight: 700; font-size: .9rem; }
.destino-card__count { color: var(--vs-muted); font-size: .78rem; margin-top: 2px; }

/* ── SURFCAMP CARD ───────────────────────────────────────────── */
.card-surfcamp {
  background: var(--vs-white);
  border-radius: var(--vs-radius);
  border: none;
  box-shadow: var(--vs-shadow);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.card-surfcamp:hover { transform: translateY(-5px); box-shadow: var(--vs-shadow-md); }

.card-surfcamp__img {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.card-surfcamp__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.card-surfcamp:hover .card-surfcamp__img img { transform: scale(1.05); }
.card-surfcamp__badge {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--vs-accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .65rem;
  border-radius: 50px;
}
.card-surfcamp__body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.card-surfcamp__location {
  font-size: .75rem;
  color: var(--vs-muted);
  margin-bottom: .3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.card-surfcamp__title {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.card-surfcamp__title a { color: var(--vs-text); text-decoration: none; }
.card-surfcamp__title a:hover { color: var(--vs-primary); }
.card-surfcamp__desc {
  font-size: .82rem;
  color: var(--vs-muted);
  flex-grow: 1;
  margin-bottom: .8rem;
  line-height: 1.5;
}

/* ── CTA SECTION ─────────────────────────────────────────────── */
.section-cta {
  background: linear-gradient(135deg, #074f67, #0a6b8a);
  color: #fff;
  padding: 4rem 0;
}
.section-cta__title { font-size: 1.8rem; color: #fff; margin-bottom: .5rem; }
.section-cta__text { color: rgba(255,255,255,.85); font-size: 1rem; margin-bottom: 0; }
.section-cta .btn-vs {
  background: var(--vs-accent);
  color: #fff !important;
}
.section-cta .btn-vs:hover { background: var(--vs-accent-d); }
.section-cta .btn-vs-outline {
  border-color: rgba(255,255,255,.5);
  color: #fff !important;
}
.section-cta .btn-vs-outline:hover { background: rgba(255,255,255,.15); }

/* ── AUTH PAGE ───────────────────────────────────────────────── */
.auth-page {
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
  padding: 3rem 0;
  background: var(--vs-bg);
}
.auth-card {
  display: flex;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.13);
  background: var(--vs-white);
}
.auth-card__side {
  padding: 2.5rem;
}
.auth-card__side--left {
  background: linear-gradient(160deg, #074f67, #0a8ab5);
  flex: 0 0 42%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-card__feature {
  font-size: .88rem;
  margin-bottom: .5rem;
  opacity: .9;
}
.auth-card__side--right {
  flex: 1;
  padding: 2.5rem;
}
.auth-card__title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: .25rem;
}
.auth-card__subtitle { color: var(--vs-muted); margin-bottom: 1.5rem; font-size: .9rem; }
.auth-card__footer-text { text-align: center; color: var(--vs-muted); font-size: .875rem; }

/* Tipo selector (registro) */
.tipo-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.tipo-selector__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 2px solid var(--vs-border);
  border-radius: var(--vs-radius);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: var(--vs-text);
  transition: border-color .15s, background .15s;
  line-height: 1.3;
}
.tipo-selector__item strong { display: block; font-size: .9rem; margin-top: .25rem; }
.tipo-selector__item small { color: var(--vs-muted); font-size: .78rem; }
.tipo-selector__item:hover { border-color: var(--vs-primary); background: var(--vs-primary-l); text-decoration: none; color: var(--vs-text); }
.tipo-selector__item.active {
  border-color: var(--vs-primary);
  background: var(--vs-primary-l);
  color: var(--vs-primary);
}

/* Inputs auth */
.form-label-vs {
  font-size: .82rem;
  font-weight: 600;
  color: var(--vs-text);
  margin-bottom: .35rem;
}
.input-group-vs {
  position: relative;
}
.input-group-vs > i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--vs-muted);
  z-index: 2;
  font-size: .85rem;
}
.form-control-vs {
  border: 1.5px solid var(--vs-border);
  border-radius: var(--vs-radius-sm);
  font-size: .9rem;
  transition: border-color .15s, box-shadow .15s;
}
.input-group-vs .form-control-vs { padding-left: 2.4rem; }
.form-control-vs:focus {
  border-color: var(--vs-primary);
  box-shadow: 0 0 0 3px rgba(10,107,138,.15);
  outline: none;
}

/* ── PERFIL SIDEBAR ──────────────────────────────────────────── */
.perfil-sidebar {
  background: var(--vs-white);
  border-radius: var(--vs-radius);
  overflow: hidden;
  box-shadow: var(--vs-shadow);
}
.perfil-sidebar__header {
  background: linear-gradient(135deg, #074f67, #0a6b8a);
  padding: 1.5rem;
  text-align: center;
  color: #fff;
}
.perfil-sidebar__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,.3);
  margin-bottom: .75rem;
}
.perfil-sidebar__name {
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
}
.perfil-sidebar__email {
  font-size: .75rem;
  color: rgba(255,255,255,.75);
  word-break: break-all;
}
.perfil-sidebar__nav { padding: .5rem 0; }
.perfil-sidebar__link {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .65rem 1.2rem;
  color: var(--vs-text);
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .12s, color .12s;
}
.perfil-sidebar__link i { width: 18px; color: var(--vs-muted); }
.perfil-sidebar__link:hover { background: var(--vs-bg); text-decoration: none; color: var(--vs-primary); }
.perfil-sidebar__link:hover i { color: var(--vs-primary); }
.perfil-sidebar__link.active {
  background: var(--vs-primary-l);
  color: var(--vs-primary);
  font-weight: 600;
  border-left: 3px solid var(--vs-primary);
}
.perfil-sidebar__link.active i { color: var(--vs-primary); }
.perfil-sidebar__link--cta {
  background: #fff8e1;
  color: #92400e;
  font-weight: 600;
}
.perfil-sidebar__link--cta:hover { background: #fef3c7; color: #78350f; }
.perfil-sidebar__link--cta i { color: var(--vs-accent); }
.perfil-sidebar__divider {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--vs-muted);
  padding: .75rem 1.2rem .3rem;
}

/* ── PERFIL CONTENIDO ────────────────────────────────────────── */
.perfil-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: .75rem;
}

.stat-card {
  background: var(--vs-white);
  border-radius: var(--vs-radius);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--vs-shadow);
}
.stat-card__number { font-size: 2rem; font-weight: 800; line-height: 1; }
.stat-card__label { color: var(--vs-muted); font-size: .8rem; margin-top: .25rem; }

.settings-card {
  background: var(--vs-white);
  border-radius: var(--vs-radius);
  padding: 1.5rem;
  box-shadow: var(--vs-shadow);
}
.settings-card__title {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--vs-muted);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--vs-border);
}

/* Surfcamp row card (dashboard) */
.sc-row-card {
  display: flex;
  align-items: center;
  background: var(--vs-white);
  border-radius: var(--vs-radius-sm);
  padding: .75rem 1rem;
  box-shadow: var(--vs-shadow);
  gap: .75rem;
}
.sc-row-card__img {
  width: 52px;
  height: 52px;
  border-radius: var(--vs-radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.sc-row-card__body { flex-grow: 1; min-width: 0; }
.sc-row-card__name { font-weight: 600; font-size: .9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-row-card__location { font-size: .78rem; color: var(--vs-muted); }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  background: var(--vs-white);
  border-radius: var(--vs-radius);
  box-shadow: var(--vs-shadow);
}

/* Surfista profile */
.surfista-profile__card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--vs-white);
  border-radius: var(--vs-radius);
  padding: 1.5rem;
  box-shadow: var(--vs-shadow);
  flex-wrap: wrap;
}
.surfista-profile__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.surfista-profile__info { flex: 1; min-width: 200px; }

/* CTA negocio inline */
.cta-negocio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #fff8e1;
  border: 1px solid #fde68a;
  border-radius: var(--vs-radius);
  padding: 1.25rem 1.5rem;
  flex-wrap: wrap;
}

/* Avatar edit */
.avatar-edit {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.avatar-edit__preview img {
  border: 3px solid var(--vs-border);
}

/* Upload area */
.upload-area {
  border: 2px dashed var(--vs-border);
  border-radius: var(--vs-radius);
  padding: 1.5rem;
  text-align: center;
  transition: border-color .15s, background .15s;
}
.upload-area:hover, .upload-area.drag-over {
  border-color: var(--vs-primary);
  background: var(--vs-primary-l);
}
.upload-area__preview {
  max-height: 200px;
  border-radius: var(--vs-radius-sm);
  margin-bottom: .5rem;
}
.cursor-pointer { cursor: pointer; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer-vs {
  background: #0d1b2a;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
}
.footer-brand i { color: var(--vs-accent); }
.footer-title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(255,255,255,.4);
  margin-bottom: .75rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: .4rem; }
.footer-links a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .875rem;
  transition: color .12s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  text-align: center;
}
.social-links { display: flex; gap: .5rem; }
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.social-link:hover { background: var(--vs-primary); color: #fff; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 767px) {
  .hero { min-height: 420px; }
  .hero__content { padding: 3.5rem 0 3rem; }
  .hero__title { font-size: 1.75rem; }
  .hero__search .form-control,
  .hero__search .btn-vs { height: 48px; }

  .auth-card { flex-direction: column; }
  .auth-card__side--right { padding: 1.75rem; }

  .section { padding: 2.5rem 0; }
  .section-title { font-size: 1.3rem; }

  .surfista-profile__card { flex-direction: column; align-items: center; text-align: center; }
  .cta-negocio { flex-direction: column; text-align: center; }
  .cta-negocio .btn-vs { width: 100%; }

  .sc-row-card { flex-wrap: wrap; }
  .perfil-header { flex-direction: column; }

  .section-cta { text-align: center; }
  .section-cta .col-lg-5 { margin-top: 1.5rem; }
  
  .stat-card{padding:10px;}
  .stat-card__label{font-size:10px;}
}

@media (max-width: 575px) {
  .tipo-selector { grid-template-columns: 1fr 1fr; }
  .stat-card__number { font-size: 1.6rem; }
  .avatar-edit { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   NEGOCIOS DE SURF — ubicacion.php
═══════════════════════════════════════════════════════════ */
.neg-section { margin-bottom: 3rem; }
.neg-section__head { margin-bottom: 1.5rem; }
.neg-section__label {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .6px; color: #7c3aed;
    background: #f5f3ff; border-radius: 50px;
    padding: .25rem .75rem; margin-bottom: .5rem;
}
.neg-section__head h2 { font-size: clamp(1.2rem,3vw,1.6rem); font-weight: 800; margin-bottom: .4rem; }
.neg-section__sub    { color: #64748b; font-size: .95rem; margin: 0; }

.neg-grupo__titulo {
    font-size: .9rem; font-weight: 700; color: #374151;
    display: flex; align-items: center; margin-bottom: .75rem;
    padding-bottom: .4rem; border-bottom: 2px solid #f1f5f9;
}
.neg-grupo__count {
    margin-left: auto; background: #f1f5f9; color: #64748b;
    font-size: .72rem; font-weight: 700; border-radius: 50px; padding: .1rem .55rem;
}

.neg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.neg-card {
    background: #fff; border: 1.5px solid #e2e8f0; border-radius: 12px;
    overflow: hidden; transition: box-shadow .15s, transform .15s;
}
.neg-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,.09); transform: translateY(-2px); border-color: #7c3aed; }

.neg-card__img {
    height: 140px; background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: rgba(255,255,255,.7);
    position: relative;
}
.neg-card__badge {
    position: absolute; top: .45rem; left: .45rem;
    background: #f59e0b; color: #fff;
    font-size: .65rem; font-weight: 700; border-radius: 50px; padding: .1rem .45rem;
}

.neg-card__body   { padding: .85rem 1rem 1rem; }
.neg-card__name   { font-size: .92rem; font-weight: 700; color: #1e293b; margin-bottom: .2rem; line-height: 1.3; }
.neg-card__loc    { font-size: .75rem; color: #64748b; margin-bottom: .35rem; }
.neg-card__desc   { font-size: .8rem; color: #64748b; line-height: 1.4; margin-bottom: .6rem; }

.neg-card__contact { display: flex; flex-wrap: wrap; gap: .3rem; }
.neg-contact-btn {
    display: inline-flex; align-items: center; gap: .3rem;
    font-size: .75rem; font-weight: 600; text-decoration: none;
    background: #f8fafc; color: #374151; border: 1px solid #e2e8f0;
    border-radius: 50px; padding: .2rem .65rem;
    transition: background .15s, color .15s, border-color .15s;
}
.neg-contact-btn:hover         { background: #7c3aed; color: #fff; border-color: #7c3aed; text-decoration: none; }
.neg-contact-btn--wa           { background: #dcfce7; color: #15803d; border-color: #bbf7d0; }
.neg-contact-btn--wa:hover     { background: #15803d; color: #fff; border-color: #15803d; }

/* ── Botón accent (Crear cuenta en navbar) ───────────────────── */
.btn-acceso {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--vs-radius-sm);
  padding: .35rem .9rem; font-size: .8rem;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: background .15s, transform .1s, box-shadow .15s;
  text-decoration: none !important;
}
.btn-acceso.btn-entrar{
	border: 1px solid #d97706;
	color: #d97706 !important;
}
.btn-acceso.btn-entrar:hover{
	background: #d97706;
	color: #FFF !important;
}
.btn-acceso.btn-crear-cuenta{
	background: var(--vs-primary);
	color: #FFF !important;
	border: 1px solid #fff;
}
.btn-acceso.btn-crear-cuenta:hover{
	border: 1px solid var(--vs-primary);
	color: var(--vs-primary) !important;
}

