body {
  font-family: "Inter", system-ui, sans-serif;
}

.city-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 4px;
  z-index: 50;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Home — Hero a pantalla completa con buscador centrado */
:root {
  --header-h: 4rem;
  --brand-primary: #0d9488;
  --brand-primary-dark: #0f766e;
  --brand-soft: #f0fdfa;
  --surface: #ffffff;
  --surface-muted: #f9fafb;
  --text: #1f2937;
  --text-muted: #6b7280;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.52) 45%, rgba(15, 23, 42, 0.78) 100%),
    rgba(15, 23, 42, 0.35);
}

.home-hero-body {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 1.5rem) 1.25rem 2.5rem;
  gap: 1.75rem;
}

@media (min-width: 1024px) {
  .home-hero-body {
    padding: calc(var(--header-h) + 2rem) 2.5rem 3rem;
    gap: 2.25rem;
  }
}

.home-hero-copy {
  text-align: center;
  max-width: 44rem;
}

.home-hero-title {
  font-size: clamp(1.875rem, 4.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: #fff;
}

.home-hero-subtitle {
  margin-top: 0.875rem;
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.home-hero-search {
  width: 100%;
  max-width: 56rem;
  position: relative;
  z-index: 20;
}

.home-search-card {
  background: transparent;
  border: 2px solid #0d9488;
  border-radius: 1rem;
  box-shadow: none;
  padding: 0;
  overflow: visible;
}

.home-search-tabs {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 1rem 0.875rem;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(13, 148, 136, 0.45);
}

.home-search-card .search-tab {
  flex: 0 0 auto;
  min-width: 7.5rem;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.78);
  border-radius: 0.75rem;
}

.home-search-card .search-tab:hover:not(.search-tab--active) {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.home-search-card .search-tab--active {
  border-width: 2px;
  border-color: #0d9488;
  color: #fff;
  background: transparent;
}

.home-search-card .search-tab--active:hover {
  border-color: #0d9488;
  color: #fff;
  background: transparent;
}

.home-search-body {
  padding: 0.875rem 1rem 1rem;
  overflow: visible;
}

.home-search-row {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-search-field {
  border-radius: 0;
  transition: background 0.15s ease;
}

.home-search-field:focus-within {
  background: rgba(255, 255, 255, 0.06);
}

.home-search-field + .home-search-field {
  border-top: 1px solid rgba(13, 148, 136, 0.35);
}

.home-search-card .search-field-label {
  color: rgba(255, 255, 255, 0.72);
}

.home-search-card .search-field-input {
  color: #fff;
}

.home-search-card .search-field-input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.home-search-card .search-field-input::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.65);
}

.home-search-icon,
.home-search-card .home-search-date-icon {
  color: rgba(255, 255, 255, 0.72);
}

.home-search-card .search-date-trigger:hover .home-search-date-icon,
.home-search-card .search-date-label:hover {
  color: #99f6e4;
}

@media (min-width: 1024px) {
  .home-search-body {
    padding: 1rem 1.125rem 1.125rem;
  }

  .home-search-row {
    flex-direction: row;
    align-items: stretch;
  }

  .home-search-field {
    flex: 1 1 0;
    min-width: 0;
  }

  .home-search-field + .home-search-field {
    border-top: none;
    border-left: 1px solid rgba(13, 148, 136, 0.35);
  }

  .home-search-field:focus-within {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 0.5rem;
  }
}

.home-search-footer {
  overflow: hidden;
  border-radius: 0 0 calc(1rem - 2px) calc(1rem - 2px);
}

.home-search-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin: 0;
  padding: 1rem 1.5rem;
  border: none;
  border-top: 2px solid #0d9488;
  border-radius: 0;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 52%, #14b8a6 100%);
  box-shadow: none;
  cursor: pointer;
  transition: filter 0.15s ease;
}

.home-search-error {
  margin: 0;
  padding: 0.625rem 1rem 0.875rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.35;
  color: #f87171;
  background: rgba(15, 23, 42, 0.35);
  border-top: 1px solid rgba(248, 113, 113, 0.35);
}

.home-search-error.hidden {
  display: none;
}

.home-search-submit:hover {
  filter: brightness(1.06);
}

.home-search-submit:active {
  filter: brightness(0.96);
}

.home-search-card .city-dropdown {
  z-index: 80;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
}

.search-date-display {
  color: #fff;
  cursor: pointer;
  padding: 0;
  border: none;
  font-family: inherit;
}

.search-date-display--empty {
  color: rgba(255, 255, 255, 0.42);
  font-weight: 600;
}

.search-date-display:not(.search-date-display--empty) {
  font-weight: 600;
}

.search-date-label {
  cursor: pointer;
}

/* Header flotante sobre hero (home y subpáginas) */
.site-header--hero {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
}

.site-header--hero > .max-w-site {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  height: var(--header-h, 4rem);
}

@media (min-width: 1024px) {
  .site-header--hero > .max-w-site {
    padding-inline: 2.5rem;
  }
}

.site-header--hero .site-logo {
  flex: 0 0 auto;
}

.site-header--hero .site-header-nav {
  display: none;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

@media (min-width: 1024px) {
  .site-header--hero .site-header-nav {
    display: flex;
  }
}

.site-header--hero #header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
  margin-left: auto;
}

@media (min-width: 1024px) {
  .site-header--hero #header-actions {
    gap: 0.75rem;
  }
}

#auth-nav-guest,
#auth-nav-user {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  flex-wrap: nowrap;
}

#auth-nav-guest.flex,
#auth-nav-user.flex {
  display: flex;
}

.site-header-nav {
  align-items: center;
  gap: 2rem;
}

.site-header-link {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
  letter-spacing: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.site-header-auth-link {
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.site-header--hero #auth-nav-guest,
.site-header--hero #auth-nav-user {
  flex-wrap: nowrap;
}

.site-header--hero.site-header--ready .site-header-link,
.site-header--hero.site-header--ready .site-logo-word,
.site-header--hero.site-header--ready .site-header-auth-link {
  transition: color 0.2s ease;
}

.site-header--hero.site-header--solid {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.site-header--hero:not(.site-header--solid) .site-logo-img {
  filter: brightness(0) invert(1);
}

.site-header--hero.site-header--solid .site-logo-img {
  filter: none;
}

.site-logo--split {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.site-logo-icon {
  width: 2rem;
  height: 2rem;
  display: block;
  flex-shrink: 0;
}

body[data-page="home"] .site-logo-icon {
  width: 2.375rem;
  height: 2.375rem;
}

.site-logo-word {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1f2937;
  line-height: 1;
}

.site-header--hero:not(.site-header--solid) .site-logo-word {
  color: #fff;
}

.site-header--hero.site-header--solid .site-logo-word {
  color: #1f2937;
}

.site-header--hero:not(.site-header--solid) .site-logo-icon {
  filter: none;
}

.site-header--hero:not(.site-header--solid) .site-header-link {
  color: rgba(255, 255, 255, 0.92);
}

.site-header--hero:not(.site-header--solid) .site-header-link:hover {
  color: #fff;
}

.site-header--hero:not(.site-header--solid) .site-header-link--active {
  color: #2dd4bf;
}

.site-header--hero:not(.site-header--solid) .site-header-link--active:hover {
  color: #5eead4;
}

.site-header--hero.site-header--solid .site-header-link {
  color: #1f2937;
}

.site-header--hero.site-header--solid .site-header-link:hover {
  color: #0f766e;
}

.site-header--hero.site-header--solid .site-header-link--active {
  color: #0d9488;
}

.site-header--hero:not(.site-header--solid) .site-header-auth-link {
  color: rgba(255, 255, 255, 0.92);
}

.site-header--hero:not(.site-header--solid) .site-header-auth-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.site-header--hero.site-header--solid .site-header-auth-link {
  color: #1f2937;
}

.site-header--hero.site-header--solid .site-header-auth-link:hover {
  color: #0f766e;
  background: #f0fdfa;
}

.site-header--hero:not(.site-header--solid) .btn-nav-publish,
.site-header--hero:not(.site-header--solid) .btn-nav-register {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.site-header--hero:not(.site-header--solid) .btn-nav-publish:hover,
.site-header--hero:not(.site-header--solid) .btn-nav-register:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
  color: #fff;
}

.site-header--hero:not(.site-header--solid) .site-header-icon-btn,
.site-header--hero:not(.site-header--solid) .site-header-menu-btn {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
}

.site-header--hero:not(.site-header--solid) .site-header-icon-btn:hover,
.site-header--hero:not(.site-header--solid) .site-header-menu-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.site-header--hero:not(.site-header--solid) .site-header-user-pill {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.site-header--hero:not(.site-header--solid) .site-header-user-pill #nav-user-name {
  color: #fff;
}

.site-header--hero:not(.site-header--solid) .site-header-logout {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
}

.site-header--hero:not(.site-header--solid) .site-header-logout:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.65);
}

.site-header--hero.site-header--solid .site-header-logout {
  color: #6b7280;
  border-color: #e2e8f0;
  background: #fff;
}

.site-header--hero.site-header--solid .site-header-logout:hover {
  color: #0d9488;
  border-color: #99f6e4;
  background: #f0fdfa;
}

.site-header--hero.site-header--solid .site-header-icon-btn,
.site-header--hero.site-header--solid .site-header-menu-btn {
  border: 1px solid #e2e8f0;
  color: #1f2937;
  background: transparent;
  box-sizing: border-box;
}

.site-header--hero .btn-nav-publish,
.site-header--hero .btn-nav-register {
  box-sizing: border-box;
  border-width: 1.5px;
}

.site-header--hero.site-header--solid .site-header-icon-btn:hover,
.site-header--hero.site-header--solid .site-header-menu-btn:hover {
  background: #f0fdfa;
  border-color: #99f6e4;
}

.site-header--hero.site-header--solid .site-header-user-pill {
  background: #f0fdfa;
  border: 1px solid #99f6e4;
}

.site-header--hero.site-header--solid .site-header-user-pill #nav-user-name {
  color: #1f2937;
}

.subpage-hero-shell {
  position: relative;
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.subpage-hero-shell--plain {
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 42%, #115e59 100%);
}

.subpage-hero-shell--plain .site-header--hero:not(.site-header--solid) .site-logo-word,
.subpage-hero-shell--plain .site-header--hero:not(.site-header--solid) .site-header-link,
.subpage-hero-shell--plain .site-header--hero:not(.site-header--solid) .site-header-auth-link {
  color: #fff;
}

@media (min-width: 1024px) {
  .subpage-hero-shell {
    min-height: 26rem;
  }

  .subpage-hero-shell--short {
    min-height: 20rem;
  }
}

.subpage-hero-body {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 1.25rem) 1.25rem 2rem;
}

@media (min-width: 1024px) {
  .subpage-hero-body {
    padding: calc(var(--header-h) + 1.5rem) 2.5rem 2.5rem;
  }
}

.calendario-modal .calendario-semana {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-align: center;
}

.calendario-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.calendario-mes-titulo {
  font-size: 1.0625rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.625rem;
}

.calendario-semana--mes {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.25rem;
  margin-bottom: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #94a3b8;
  text-align: center;
}

.calendario-grilla {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.25rem;
}

.calendario-dia {
  aspect-ratio: 1;
  border: none;
  border-radius: 0.625rem;
  background: transparent;
  color: #1e293b;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease;
}

.calendario-dia:hover:not(:disabled):not(.calendario-dia--sel) {
  background: #f1f5f9;
}

.calendario-dia--sel {
  background: #0d9488;
  color: #fff;
  font-weight: 700;
}

.calendario-dia--off {
  color: #cbd5e1;
  cursor: not-allowed;
}

#trips-results-section {
  scroll-margin-top: calc(var(--header-h) + 0.5rem);
}

.fade-enter {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.fade-enter-active {
  opacity: 1;
  transform: translateY(0);
}

.legal-content h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1F2937;
  margin: 2rem 0 0.75rem;
}

.legal-content p,
.legal-content li {
  color: #6B7280;
  line-height: 1.7;
  font-size: 0.9375rem;
}

.legal-content p {
  margin-bottom: 0.75rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.35rem;
}

.legal-content a {
  color: #0F766E;
  text-decoration: underline;
}

/* Auth modal */
body.auth-modal-open {
  overflow: hidden;
}

.auth-backdrop {
  background: rgba(33, 38, 44, 0.78);
}

.auth-modal {
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.22);
  border: 1px solid #e2e8f0;
}

.auth-modal-header {
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
}

.auth-tab-active {
  background: #0D9488;
  color: #fff;
}

.auth-tab-idle {
  background: transparent;
  color: #6B7280;
}

.auth-tab-idle:hover {
  background: #fff;
  color: #1F2937;
}

.auth-input {
  width: 100%;
  padding: 0.7rem 0.875rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  font-size: 0.875rem;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.auth-input:read-only {
  cursor: default;
}

.auth-input:focus {
  outline: none;
  border-color: #0D9488;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.auth-submit:disabled,
.btn-google:disabled {
  cursor: not-allowed;
}

.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #dadce0;
  background: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  color: #3c4043;
  transition: background 0.15s, border-color 0.15s;
}

.btn-google:hover:not(:disabled) {
  background: #f8f9fa;
  border-color: #c6c9cc;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

/* Mobile menu */
.mobile-menu-backdrop {
  background: rgba(33, 38, 44, 0.45);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.mobile-menu-panel {
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

#mobile-menu.mobile-menu-open .mobile-menu-backdrop {
  opacity: 1;
}

#mobile-menu.mobile-menu-open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1F2937;
  transition: background 0.15s, color 0.15s;
}

.mobile-nav-item:hover,
.mobile-nav-item:focus {
  background: #F0FDFA;
  color: #0F766E;
}

.site-header {
  z-index: 50;
}

body.mobile-nav-locked {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

#mobile-menu:not(.hidden) {
  overscroll-behavior: contain;
}

#btn-mobile-menu {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.search-tab {
  touch-action: manipulation;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  border: 1.5px solid #e2e8f0;
  background: transparent;
  color: #64748b;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.search-tab:hover:not(.search-tab--active) {
  border-color: #99f6e4;
  color: #0f766e;
  background: #f0fdfa;
}

.search-tab--active {
  border-color: #0d9488;
  color: #0f766e;
  background: transparent;
}

.search-tab--active:hover {
  background: #f0fdfa;
  border-color: #0f766e;
}

.search-bar-submit {
  border: 1.5px solid #0d9488;
  background: transparent;
  color: #0f766e;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.search-bar-submit:hover {
  background: #f0fdfa;
  border-color: #0f766e;
  color: #0f766e;
}

.home-search-submit.search-bar-submit {
  border: none;
  border-top: 2px solid #0d9488;
  border-radius: 0;
  color: #fff;
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 52%, #14b8a6 100%);
  box-shadow: none;
}

.home-search-submit.search-bar-submit:hover {
  filter: brightness(1.06);
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 52%, #14b8a6 100%);
  color: #fff;
}

.search-date-trigger {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}

.search-date-trigger:hover .search-date-icon,
.search-date-label:hover {
  color: #0f766e;
}

.search-date-label {
  cursor: pointer;
}

.search-date-icon {
  font-size: 1.125rem;
  line-height: 1;
  color: #0d9488;
  flex-shrink: 0;
  display: block;
  pointer-events: none;
}

.search-field--meta #input-date::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
  appearance: none;
}

.search-field--meta #input-date::-webkit-datetime-edit {
  padding: 0;
}

.legal-meta {
  font-size: 0.8125rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

/* Qué es Voy — tarjetas sobre fondo oscuro */
.que-es-voy-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .que-es-voy-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

.que-es-voy-stat {
  background: #fff;
  border: 1px solid #e2e8f0;
}

/* Por qué usar Voy */
.why-voy-section {
  background: #f8fafc;
}

.why-voy-layout {
  display: grid;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .why-voy-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 1.25rem;
    align-items: stretch;
  }

  .why-voy-photo-slot {
    position: relative;
    min-height: 100%;
  }

  .why-voy-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
  }
}

.why-voy-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 0.875rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  width: 100%;
  min-height: 11rem;
}

.why-voy-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
  display: block;
}

.why-voy-side {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.why-voy-intro {
  border-radius: 0.875rem;
  padding: 1.25rem 1.375rem;
  background: #1F2937;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-voy-benefits {
  display: grid;
  gap: 0.875rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .why-voy-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-voy-card {
  border-radius: 0.875rem;
  padding: 1.125rem 1.25rem;
  background: #1F2937;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-voy-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #14B8A6;
  margin-bottom: 0.375rem;
}

.why-voy-card-top {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
}

.why-voy-card-icon {
  font-size: 0.875rem;
  color: #14B8A6;
  width: 1.75rem;
  text-align: center;
  flex-shrink: 0;
}

.why-voy-card--span {
  grid-column: 1 / -1;
}

/* Seguridad y comunidad */
.trust-layout {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .trust-layout {
    grid-template-columns: 1fr 22rem;
    gap: 1.5rem;
    align-items: start;
  }
}

.trust-features {
  display: grid;
  gap: 0.875rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .trust-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-feature-card {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.25rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.trust-feature-card:hover {
  border-color: rgba(13, 148, 136, 0.25);
  box-shadow: 0 10px 28px rgba(13, 148, 136, 0.08);
  transform: translateY(-2px);
}

.trust-feature-card i {
  margin-bottom: 0.75rem;
}

.trust-profile-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0D9488;
  margin-bottom: 0.625rem;
}

.trust-profile-card {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.25rem;
  background: #fff;
  box-shadow: 0 8px 24px rgba(33, 38, 44, 0.06);
}

.trust-profile-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.trust-profile-avatar {
  position: relative;
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 9999px;
  background: #F0FDFA;
  border: 1px solid #CCFBF1;
  color: #115E59;
  font-size: 0.875rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-profile-verified {
  position: absolute;
  right: -0.2rem;
  bottom: -0.2rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background: #0D9488;
  color: #fff;
  border: 2px solid #fff;
  font-size: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-profile-badge {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0F766E;
  background: #F0FDFA;
  border: 1px solid #CCFBF1;
  padding: 0.2rem 0.45rem;
  border-radius: 9999px;
}

.trust-profile-rating {
  color: #d97706;
  font-weight: 700;
}

.trust-profile-rating i {
  margin-right: 0.15rem;
}

.trust-profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6B7280;
}

.trust-profile-meta i {
  color: #0D9488;
  margin-right: 0.35rem;
}

.trust-reviews {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.trust-reviews-title {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin-bottom: 0.75rem;
}

.trust-review + .trust-review {
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid #f8fafc;
}

.trust-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.trust-review-stars {
  color: #f59e0b;
  font-size: 0.625rem;
  letter-spacing: 0.05em;
}

.trust-review-date {
  margin-top: 0.35rem;
  font-size: 0.6875rem;
  color: #94a3b8;
}

.que-es-voy-stat {
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.que-es-voy-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.1);
}

/* Descargar app — CTA estilo BlaBlaCar */
.download-section {
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 48%, #14b8a6 100%);
}

.download-section .download-store-btn {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.download-section-glow {
  position: absolute;
  top: -30%;
  right: -10%;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

.download-store-btn {
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.download-store-btn--muted {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}

.auth-modal-logo {
  display: block;
  width: auto;
  height: 36px;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

#toast {
  bottom: 6.5rem;
  z-index: 70;
}

body.auth-modal-open #toast {
  bottom: auto;
  top: calc(1rem + env(safe-area-inset-top, 0px));
  right: 1rem;
  left: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 24rem;
}

@media (min-width: 1024px) {
  #toast {
    bottom: 1.5rem;
  }

  body.auth-modal-open #toast {
    top: auto;
    bottom: 1.5rem;
    right: 1.5rem;
    left: auto;
    margin: 0;
  }
}

.fab-reservas {
  position: fixed;
  bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  right: 1.25rem;
  top: auto;
  z-index: 45;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 9999px;
  border: 1.5px solid #0d9488;
  background: transparent;
  color: #0f766e;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 1024px) {
  .fab-reservas {
    bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
    right: max(1.5rem, calc((100vw - min(100vw, 1440px)) / 2 + 1.5rem));
  }
}

.fab-reservas-icon {
  font-size: 1.375rem;
  width: 1.375rem;
  height: 1.375rem;
  pointer-events: none;
}

.fab-reservas:hover {
  background: rgba(240, 253, 250, 0.65);
  border-color: #0f766e;
  color: #0f766e;
  transform: scale(1.05);
  box-shadow: none;
}

.fab-reservas-tooltip {
  position: absolute;
  bottom: calc(100% + 0.375rem);
  top: auto;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #0f766e;
  background: #fff;
  border: 1px solid #99f6e4;
  padding: 0.3rem 0.625rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.fab-reservas:hover .fab-reservas-tooltip,
.fab-reservas:focus-visible .fab-reservas-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.fab-reservas--pulse {
  animation: fab-reservas-pulse 0.6s ease;
}

@keyframes fab-reservas-pulse {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.fab-reservas-badge {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  min-width: 1.125rem;
  height: 1.125rem;
  padding: 0 0.25rem;
  border-radius: 9999px;
  background: #ef4444;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border-radius: 9999px;
  background: #22c55e;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  transition: background-color 0.2s ease;
}

.btn-whatsapp:hover {
  background: #16a34a;
}

.btn-whatsapp--sm {
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
}

/* Confirmar reserva */
.reserve-confirm-modal {
  border: 1px solid #e2e8f0;
}

.reserve-confirm-header {
  background: linear-gradient(180deg, #f0fdfa 0%, #fff 100%);
}

.reserve-confirm-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: #ccfbf1;
  color: #0f766e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.reserve-confirm-trip {
  border: 1.5px solid #0d9488;
  border-radius: 1rem;
  padding: 1rem;
  background: #f0fdfa;
}

.reserve-confirm-route {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1e293b;
  flex-wrap: wrap;
}

.reserve-confirm-route i {
  color: #0d9488;
  font-size: 0.8125rem;
}

.reserve-confirm-meta {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}

.reserve-confirm-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.reserve-confirm-meta i {
  width: 0.875rem;
  color: #0d9488;
  text-align: center;
}

.reserve-confirm-actions {
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
}

.reserve-confirm-btn {
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.reserve-confirm-btn--cancel {
  border: 1.5px solid #e2e8f0;
  background: #fff;
  color: #475569;
}

.reserve-confirm-btn--cancel:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.reserve-confirm-btn--confirm {
  border: none;
  background: #0d9488;
  color: #fff;
}

.reserve-confirm-btn--confirm:hover {
  background: #0f766e;
}

.reserve-confirm-btn--danger {
  border: none;
  background: #dc2626;
  color: #fff;
}

.reserve-confirm-btn--danger:hover {
  background: #b91c1c;
}

.reserve-confirm-icon--warn {
  background: #fef3c7;
  color: #b45309;
}

.reserve-confirm-trip--warn {
  border-color: #fbbf24;
  background: #fffbeb;
}

.cancel-reserva-policy {
  color: #64748b;
  line-height: 1.45;
}

.cancel-reserva-policy--warn {
  color: #b45309;
  font-weight: 600;
}

.reserva-card-cancel {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
}

.reserva-cancel-btn {
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  border: 1.5px solid #fca5a5;
  background: transparent;
  color: #dc2626;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.reserva-cancel-btn:hover {
  background: #fef2f2;
  border-color: #f87171;
}

.reserva-asientos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.375rem;
  padding: 0.4375rem 0.625rem;
  border-radius: 0.625rem;
  background: #f0fdfa;
  border: 1px solid #99f6e4;
}

.reserva-asientos-count {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f766e;
}

.reserva-asientos-count i {
  font-size: 0.875rem;
}

.reserva-add-asiento-btn {
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  border: 1.5px solid #0d9488;
  background: #fff;
  color: #0d9488;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.reserva-add-asiento-btn:hover:not(:disabled) {
  background: #0d9488;
  color: #fff;
}

.reserva-add-asiento-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.notification-item--cancel {
  border-color: #fecaca;
  background: #fff1f2;
}

.notification-item--cancel .notification-item-avatar {
  background: #fee2e2;
  border-color: #fecaca;
  color: #dc2626;
}

/* Mis reservas */
.reservas-modal-header,
.notifications-modal-header {
  background: linear-gradient(180deg, #f0fdfa 0%, #fff 100%);
}

.reservas-list,
.notifications-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

.reservas-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
}

.reservas-empty,
.notifications-empty {
  text-align: center;
  padding: 2rem 1rem;
}

.reservas-empty-icon,
.notifications-empty-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.75rem;
  border-radius: 9999px;
  background: #f0fdfa;
  color: #0d9488;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.reservas-empty-icon ion-icon {
  font-size: 1.375rem;
  width: 1.375rem;
  height: 1.375rem;
}

.reservas-empty-title,
.notifications-empty-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1e293b;
}

.reservas-empty-text,
.notifications-empty-text {
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.reserva-card {
  border: 1.5px solid #0d9488;
  border-radius: 0.875rem;
  padding: 0.75rem;
  background: #fff;
}

.reserva-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}

.reserva-rol {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f766e;
}

.reserva-estado {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
}

.reserva-estado--pending {
  background: #fef3c7;
  color: #b45309;
}

.reserva-estado--ok {
  background: #d1fae5;
  color: #047857;
}

.reserva-estado--done {
  background: #f1f5f9;
  color: #64748b;
}

.reserva-route {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1e293b;
  flex-wrap: wrap;
  line-height: 1.25;
}

.reserva-route i {
  color: #0d9488;
  font-size: 0.6875rem;
}

.reserva-fecha {
  margin-top: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  line-height: 1.2;
}

.reserva-fecha i {
  color: #0d9488;
  font-size: 0.6875rem;
}

.reserva-contacto {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #f1f5f9;
}

.reserva-contacto-avatar {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 9999px;
  background: #ccfbf1;
  color: #0f766e;
  font-size: 0.625rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reserva-contacto-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
}

.reserva-contacto-name {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.reserva-card-actions {
  margin-top: 0.4375rem;
  display: flex;
  justify-content: center;
}

.reserva-wa-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.reserva-wa-link-icon {
  color: #22c55e;
  font-size: 1.125rem;
  line-height: 1;
  pointer-events: none;
}

.reserva-wa-link-text {
  color: #22c55e;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  pointer-events: none;
}

.reserva-wa-link:hover .reserva-wa-link-icon,
.reserva-wa-link:hover .reserva-wa-link-text,
.reserva-wa-link:focus-visible .reserva-wa-link-icon,
.reserva-wa-link:focus-visible .reserva-wa-link-text {
  color: #16a34a;
}

.reserva-no-phone {
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: center;
  width: 100%;
}

.notification-item {
  position: relative;
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 0.875rem 2.25rem 0.875rem 1rem;
  background: #fff;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.notification-item--profile {
  cursor: pointer;
}

.notification-item--profile:hover {
  transform: scale(1.015);
  border-color: #5eead4;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.1);
  background: #f0fdfa;
}

.notification-item--profile.notification-item--unread:hover {
  background: #ecfdf5;
}

.notification-item--profile:focus-visible {
  outline: 2px solid #0d9488;
  outline-offset: 2px;
}

.notification-item-main {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  min-width: 0;
  flex: 1;
}

.notification-item-dismiss {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.625rem;
  height: 1.625rem;
  border: none;
  border-radius: 9999px;
  background: transparent;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.75rem;
  transition: background 0.15s, color 0.15s;
  z-index: 2;
}

.notification-item-dismiss:hover {
  background: #f1f5f9;
  color: #64748b;
}

.notifications-clear-btn {
  padding: 0.375rem 0.625rem;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  background: #fff;
  color: #64748b;
  font-size: 0.6875rem;
  font-weight: 700;
  font-family: inherit;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}

.notifications-clear-btn:hover {
  background: #fef2f2;
  border-color: #fecaca;
  color: #dc2626;
}

.notifications-modal {
  width: 100%;
  height: min(80vh, 32rem);
  min-height: min(80vh, 32rem);
}

.public-profile-modal {
  border: 1px solid #e2e8f0;
}

.public-profile-header {
  background: linear-gradient(180deg, #f0fdfa 0%, #fff 100%);
}

.public-profile-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.public-profile-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.375rem;
}

.public-profile-avatar {
  position: relative;
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  border: 3px solid #99f6e4;
  background: #f0fdfa;
  color: #0f766e;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  padding: 0;
  font-family: inherit;
}

.public-profile-avatar--photo {
  cursor: pointer;
}

.public-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.public-profile-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1e293b;
}

.public-profile-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0d9488;
}

.public-profile-meta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.public-profile-meta i {
  color: #b45309;
}

.public-profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.public-profile-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 700;
}

.public-profile-tag--brand {
  background: #f0fdfa;
  color: #0f766e;
}

.public-profile-tag--neutral {
  background: #f8fafc;
  color: #475569;
}

.public-profile-tag--accent {
  background: #faf5ff;
  color: #7c3aed;
}

.public-profile-hint {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  text-align: center;
  line-height: 1.4;
}

.public-profile-loading,
.public-profile-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 600;
}

.photo-lightbox {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(6px);
}

.photo-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.photo-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.photo-lightbox-img {
  width: min(72vw, 68vh);
  height: min(72vw, 68vh);
  max-width: none;
  max-height: none;
  border-radius: 1.25rem;
  object-fit: contain;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.notification-item--unread {
  border-color: #99f6e4;
  background: #f0fdfa;
}

.notification-item-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 2px solid #99f6e4;
  background: #f0fdfa;
  color: #0f766e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  font-size: 0.75rem;
  font-weight: 800;
}

.notification-item-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notification-item-avatar--initials {
  letter-spacing: -0.02em;
}

.notification-item-kicker {
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 0.125rem;
}

.notification-item--cancel .notification-item-kicker {
  color: #dc2626;
}

.notification-item-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.35;
}

.notification-item-route {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}

.notification-item-body {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.notification-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  margin-top: 0.625rem;
  padding: 0.4375rem 0.875rem;
  border: 1.5px solid #25d366;
  border-radius: 9999px;
  background: transparent;
  color: #25d366;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.notification-wa-btn i {
  font-size: 1rem;
  line-height: 1;
}

.notification-wa-btn:hover,
.notification-wa-btn:focus-visible {
  background: rgba(37, 211, 102, 0.08);
  border-color: #20bd5a;
  color: #20bd5a;
}

.notifications-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem;
  font-size: 1.25rem;
}

.pref-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
}

.pref-toggle input {
  accent-color: #0d9488;
}

#nav-user-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header .site-logo-img {
  display: block;
  width: auto;
  height: 34px;
  max-width: none;
}

.site-logo-img {
  display: block;
  width: auto;
  height: 40px;
  max-width: none;
}

#auth-nav-user {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.site-header #header-actions {
  margin-left: auto;
}

#auth-nav-user .nav-user-pill {
  min-width: 0;
}

#nav-user-name {
  max-width: 5.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-logout-btn {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.4375rem 0.625rem;
  border-radius: 0.625rem;
  border: 1px solid #e2e8f0;
  color: #6b7280;
  background: #fff;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.nav-logout-btn:hover {
  color: #0d9488;
  border-color: #99f6e4;
  background: #f0fdfa;
}

@media (max-width: 1023px) {
  #btn-nav-logout {
    display: none !important;
  }
}

@media (min-width: 640px) {
  #auth-nav-user {
    gap: 0.75rem;
  }

  #nav-user-name {
    max-width: 8rem;
  }

  .nav-logout-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
  }
}

footer.bg-slate-900 .site-logo-img {
  height: 28px;
  opacity: 0.95;
}

.section-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.section-photo--dark {
  border: none;
  box-shadow: none;
  background: transparent;
}

.section-photo--flush {
  border-radius: 0.75rem;
  overflow: hidden;
}

.section-photo--flush img {
  aspect-ratio: 4 / 3;
  object-position: center 35%;
}

.subpage-hero {
  min-height: 18rem;
}

.subpage-hero-content {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 2rem;
  padding-top: 4.5rem;
}

@media (min-width: 640px) {
  .subpage-hero,
  .subpage-hero-content {
    min-height: 22rem;
  }

  .subpage-hero-content {
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .subpage-hero,
  .subpage-hero-content {
    min-height: 26rem;
  }

  .subpage-hero-content {
    padding-bottom: 3rem;
  }
}

.section-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.section-split {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .section-split {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.5rem;
    align-items: stretch;
  }

  .section-split .section-photo {
    min-height: 100%;
  }

  .section-split .section-photo img {
    min-height: 100%;
    aspect-ratio: auto;
  }
}

.trust-features--solo {
  max-width: none;
}

@media (min-width: 640px) {
  .feature-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.mockup-showcase {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .mockup-showcase--phone {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 24rem);
    gap: 2rem;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .mockup-showcase {
    grid-template-columns: 1fr minmax(16rem, 22rem);
    gap: 2.5rem;
  }

  .mockup-showcase--reverse {
    grid-template-columns: minmax(18rem, 28rem) 1fr;
  }

  .mockup-showcase--reverse .app-mockup-wrap {
    order: -1;
  }

  .mockup-showcase--phone {
    grid-template-columns: minmax(0, 0.92fr) minmax(22rem, 1.08fr);
    gap: 2.5rem;
  }
}

.mockup-showcase-copy .page-section-title {
  margin-top: 0.25rem;
}

.mockup-showcase-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.mockup-showcase-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: #6b7280;
}

.mockup-showcase-list i {
  width: 1.125rem;
  text-align: center;
  flex-shrink: 0;
}

.app-mockup-wrap {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

.app-mockup-wrap img {
  display: block;
  width: min(100%, 20rem);
  height: auto;
  object-fit: contain;
}

.app-mockup-wrap--wide img {
  width: min(100%, 28rem);
}

.app-mockup-wrap--phone img {
  width: min(88vw, 22rem);
  height: auto;
  max-height: min(72vh, 36rem);
  object-fit: contain;
}

@media (min-width: 768px) {
  .app-mockup-wrap--phone img {
    width: min(100%, 24rem);
    max-height: min(78vh, 40rem);
  }
}

@media (min-width: 1024px) {
  .app-mockup-wrap--phone img {
    width: min(100%, 28rem);
    max-height: min(82vh, 44rem);
  }
}

.mockup-showcase--phone .mockup-showcase-list {
  margin-top: 1rem;
  gap: 0.5rem;
}

.page-hero {
  background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 72%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  padding: 3rem 0;
}

@media (min-width: 1024px) {
  .page-hero {
    padding: 4.5rem 0;
  }
}

.page-hero-inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 1024px) {
  .page-hero-inner {
    padding: 0 2.5rem;
  }
}

.page-hero--split .page-hero-inner {
  display: block;
}

.page-hero-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 0.75rem;
}

.page-hero-title {
  margin: 0 0 1rem;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #1f2937;
}

.page-section--alt {
  background: #f8fafc;
  border-top: 1px solid rgba(226, 232, 240, 0.7);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.page-section--compact {
  padding: 2rem 0;
}

@media (min-width: 1024px) {
  .page-section--compact {
    padding: 2.25rem 0;
  }
}

.site-display-title {
  margin: 0;
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: inherit;
}

.site-body-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  color: #454545;
}

.site-body-text + .site-body-text {
  margin-top: 0.75rem;
}

.page-section--dark .site-body-text,
.page-hero-lead {
  color: #64748b;
}

.page-section--dark .site-body-text,
.page-section--dark .page-hero-lead {
  color: #94a3b8;
}

.page-hero-lead {
  margin: 0;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
}

.page-hero-media {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 20px 48px rgba(13, 148, 136, 0.14);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-section {
  padding: 2.5rem 0;
}

@media (min-width: 1024px) {
  .page-section {
    padding: 3rem 0;
  }
}

.page-section--tight {
  padding: 2rem 0;
}

@media (min-width: 1024px) {
  .page-section--tight {
    padding: 2.25rem 0;
  }
}

.page-section-header {
  margin-bottom: 1.5rem;
}

.page-section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 0.625rem;
}

.page-section-title {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #1f2937;
}

.surface-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.surface-card:hover {
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow: 0 10px 28px rgba(13, 148, 136, 0.09);
  transform: translateY(-2px);
}

.surface-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: #f0fdfa;
  color: #0d9488;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.surface-card-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
}

.surface-card-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #6b7280;
}

.feature-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .feature-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.step-card {
  position: relative;
  text-align: left;
}

.step-card-num {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: #ccfbf1;
  margin-bottom: 0.75rem;
}

.step-card-icon {
  color: #0d9488;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* —— Editorial split (estilo BlaBlaCar) —— */
.editorial-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .editorial-split {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }

  .editorial-split--reverse .editorial-split__media {
    order: 2;
  }

  .editorial-split--reverse .editorial-split__copy {
    order: 1;
  }
}

.editorial-split__media {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e2e8f0;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.editorial-split__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-split__media--compact {
  max-width: min(100%, 30rem);
  margin-inline: auto;
}

@media (min-width: 1024px) {
  .editorial-split__media--compact {
    max-width: min(100%, 34rem);
  }
}

.editorial-split__copy {
  text-align: left;
}

.section-centered {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.section-centered .page-section-label,
.section-centered .page-section-title,
.section-centered .site-body-text {
  text-align: center;
}

.section-centered .site-body-text {
  margin-inline: auto;
}

.mockup-section-light {
  background: #fff;
}

.editorial-split__copy .page-section-title {
  margin-top: 0.35rem;
}

.editorial-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.625rem;
}

.editorial-list li {
  position: relative;
  padding-left: 1.125rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #64748b;
}

.editorial-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: #0d9488;
}

.page-section--dark {
  background: #0f172a;
  border-top: none;
  border-bottom: none;
}

.page-section--dark .page-section-title {
  color: #fff;
}

.page-section--dark .page-section-label {
  color: #2dd4bf;
}

.page-section--dark .page-hero-lead {
  color: #94a3b8;
}

.page-section--dark .editorial-list li {
  color: #cbd5e1;
}

.page-section--dark .editorial-split__media {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.page-section--dark .surface-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.page-section--dark .surface-card-title {
  color: #f8fafc;
}

.page-section--dark .surface-card-text {
  color: #94a3b8;
}

.page-section--dark .surface-card:hover {
  border-color: rgba(45, 212, 191, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* Step cards con foto */
.step-card--photo {
  padding: 0;
  overflow: hidden;
}

.step-card__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.step-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-card__photo .step-card-num {
  position: absolute;
  top: 0.75rem;
  left: 0.875rem;
  margin: 0;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.step-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.photo-card {
  padding: 0;
  overflow: hidden;
}

.photo-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.photo-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

/* Mockup más grande sin agrandar el contenedor */
.mockup-showcase--phone-tight {
  overflow: visible;
}

.mockup-showcase--phone-tight .app-mockup-wrap--phone {
  overflow: visible;
  align-items: flex-end;
  min-height: 0;
}

.app-mockup-wrap--phone-scale img {
  width: min(100%, 18rem);
  max-height: none;
  transform: none;
  margin-top: 0;
}

@media (min-width: 768px) {
  .app-mockup-wrap--phone-scale img {
    width: min(100%, 20rem);
  }
}

@media (min-width: 1024px) {
  .mockup-showcase--phone-tight {
    grid-template-columns: minmax(0, 1.05fr) minmax(14rem, 0.95fr);
    gap: 2rem;
  }

  .app-mockup-wrap--phone-scale img {
    width: min(100%, 21rem);
  }
}

.mockup-cutout {
  background: transparent;
  box-shadow: none;
}

.mockup-showcase--phone-tight .app-mockup-wrap--device {
  overflow: visible;
  align-items: flex-end;
  min-height: 0;
}

.app-mockup-wrap.app-mockup-wrap--device {
  background: transparent;
  overflow: visible;
  align-items: flex-end;
}

.mockup-section-footer-touch {
  padding-bottom: 0;
  overflow: hidden;
  border-bottom: none;
}

.mockup-section-footer-touch .mockup-showcase--phone-tight {
  align-items: center;
}

.mockup-section-footer-touch .mockup-showcase-copy {
  align-self: center;
}

.mockup-section-footer-touch .app-mockup-wrap--device {
  align-self: end;
  margin-bottom: 0;
  line-height: 0;
}

.page-section--gap-below {
  padding-bottom: 3.25rem;
}

@media (min-width: 1024px) {
  .page-section--gap-below {
    padding-bottom: 4rem;
  }
}

.app-mockup-wrap.app-mockup-wrap--device img {
  display: block;
  width: min(68vw, 15rem);
  height: auto;
  max-height: none;
  object-fit: contain;
  filter: none;
  transform: scale(1.08);
  transform-origin: center bottom;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .app-mockup-wrap.app-mockup-wrap--device img {
    width: min(100%, 17rem);
    transform: scale(1.1);
  }
}

@media (min-width: 1024px) {
  .app-mockup-wrap.app-mockup-wrap--device img {
    width: min(100%, 19rem);
    transform: scale(1.12);
  }
}

.mockup-cutout img {
  filter: drop-shadow(0 12px 28px rgba(15, 23, 42, 0.14));
}

.page-section--dark .mockup-cutout img {
  filter: drop-shadow(0 22px 48px rgba(0, 0, 0, 0.45));
}

/* Pasos compactos */
.steps-compact {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .steps-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

.steps-compact__photo {
  margin: 0 0 0.875rem;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.steps-compact__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps-compact__num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 0.375rem;
}

.steps-compact__title {
  margin: 0 0 0.375rem;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1f2937;
}

.steps-compact--text {
  text-align: left;
}

/* Pricing cards responsive */
.pricing-compare {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .pricing-compare {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.pricing-plan {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
  background: #fff;
}

.pricing-plan--pro {
  border-color: rgba(13, 148, 136, 0.35);
  background: linear-gradient(180deg, #f0fdfa 0%, #fff 100%);
  box-shadow: 0 12px 36px rgba(13, 148, 136, 0.12);
}

.pricing-plan-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d9488;
}

.pricing-plan-name {
  margin: 0.25rem 0 0;
  font-size: 1.375rem;
  font-weight: 800;
  color: #1f2937;
}

.pricing-plan-price {
  margin: 0.75rem 0 1rem;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1f2937;
  line-height: 1;
}

.pricing-plan-price small {
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
}

.pricing-plan-body {
  display: grid;
  gap: 0.75rem;
}

.pricing-plan-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #454545;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f1f5f9;
}

.pricing-plan-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pricing-plan-row span:last-child {
  font-weight: 600;
  color: #1f2937;
  text-align: right;
}

.pricing-plan--pro .pricing-plan-row span:last-child {
  color: #0f766e;
}

/* Trust / why — texto plano */
.trust-plain-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .trust-plain-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
}

.trust-plain-item h3,
.why-plain-item h3 {
  margin: 0 0 0.375rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: inherit;
}

.why-plain-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .why-plain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.why-plain-item--wide {
  grid-column: 1 / -1;
}

.editorial-split__media--mockup {
  aspect-ratio: auto;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.editorial-split__media--mockup img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  box-shadow: 0 8px 32px rgba(13, 148, 136, 0.08);
  background: #fff;
}

.pricing-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.pricing-table thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 700;
  color: #1f2937;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.pricing-table thead th.pricing-col-pro {
  background: #0d9488;
  color: #fff;
}

.pricing-table tbody th,
.pricing-table tbody td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.pricing-table tbody th {
  font-weight: 600;
  color: #1f2937;
  text-align: left;
}

.pricing-table tbody td {
  color: #6b7280;
}

.pricing-table tbody td.pricing-col-pro {
  background: #f0fdfa;
  color: #1f2937;
  font-weight: 600;
}

.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-check {
  color: #0d9488;
  font-weight: 700;
}

.legal-page .legal-shell {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}

@media (min-width: 1024px) {
  .legal-page .legal-shell {
    padding: 0 2.5rem 5rem;
  }
}

.legal-page .legal-content {
  max-width: 48rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

@media (min-width: 768px) {
  .legal-page .legal-content {
    padding: 2.5rem 3rem;
  }
}

/* Nav — Descargar app */
.btn-nav-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 48%, #14b8a6 100%);
  transition: filter 0.15s;
}

.btn-nav-download:hover {
  filter: brightness(1.06);
}

@media (min-width: 640px) {
  .btn-nav-download {
    padding: 0.5625rem 1.125rem;
    font-size: 0.875rem;
  }
}

/* Nav — Publicar viaje / Registrarme (outline) */
.btn-nav-publish,
.btn-nav-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1.5px solid #0d9488;
  background: transparent;
  color: #0f766e;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.btn-nav-publish:hover,
.btn-nav-register:hover {
  background: #f0fdfa;
  border-color: #0f766e;
  color: #0f766e;
}

.btn-nav-register--block {
  width: 100%;
  padding: 0.75rem 1rem;
}

/* Grid y tarjetas de viajes */
.trips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .trips-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .trips-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .trips-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.trip-card {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1.5px solid #0d9488;
  background: #fff;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
  cursor: pointer;
}

.trip-card--own {
  border-color: #0f766e;
  background: linear-gradient(180deg, #f0fdfa 0%, #fff 40%);
}

.trip-card-own-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  background: #ccfbf1;
  color: #0f766e;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trip-card:hover {
  background: #f0fdfa;
  border-color: #0f766e;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.12);
}

.trip-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.trip-card-avatar {
  position: relative;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #0f766e;
  overflow: hidden;
}

.trip-card-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trip-card-verified {
  position: absolute;
  right: -0.125rem;
  bottom: -0.125rem;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 9999px;
  background: #0d9488;
  color: #fff;
  font-size: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.trip-card-driver {
  min-width: 0;
  flex: 1;
}

.trip-card-name-row {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-wrap: wrap;
}

.trip-card-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1e293b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trip-card-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #b45309;
}

.trip-card-time {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #94a3b8;
}

.trip-card-route {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

.trip-card-city {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trip-card-arrow {
  flex-shrink: 0;
  color: #0d9488;
  font-size: 0.75rem;
}

.trip-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #64748b;
}

.trip-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.trip-card-meta i {
  color: #0d9488;
  opacity: 0.75;
}

.trip-card-badge {
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  background: #f0fdfa;
  color: #0f766e;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trip-card-badge--violet {
  background: #f5f3ff;
  color: #6d28d9;
}

.trip-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
}

.trip-card-price-label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

.trip-card-price {
  font-size: 1.125rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
}

.trip-card-reserve {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: none;
  background: #0d9488;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}

.trip-card-reserve:hover {
  background: #0f766e;
}

/* Detalle de viaje */
.trip-detail-modal {
  border: 1px solid #e2e8f0;
}

.trip-detail-header {
  background: linear-gradient(180deg, #f0fdfa 0%, #fff 100%);
}

.trip-detail-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trip-detail-route {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: #1e293b;
  flex-wrap: wrap;
}

.trip-detail-route i {
  color: #0d9488;
  font-size: 0.875rem;
}

.trip-detail-driver {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trip-detail-driver .trip-card-avatar {
  width: 3rem;
  height: 3rem;
}

.trip-detail-avatar-btn {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 9999px;
  flex-shrink: 0;
  line-height: 0;
}

.trip-detail-avatar-btn:hover .trip-card-avatar {
  transform: scale(1.04);
  transition: transform 0.15s ease;
}

.trip-detail-driver-name {
  display: block;
  padding: 0;
  border: none;
  background: none;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1e293b;
  cursor: pointer;
  text-align: left;
}

.trip-detail-driver-name:hover {
  color: #0d9488;
  text-decoration: underline;
}

.trip-detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
}

.trip-detail-meta-item {
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
}

.trip-detail-meta-label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 0.25rem;
}

.trip-detail-meta-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1e293b;
}

.trip-detail-section {
  border: 1.5px solid #0d9488;
  border-radius: 1rem;
  padding: 1rem;
  background: #f0fdfa;
}

.trip-detail-section-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f766e;
  margin-bottom: 0.625rem;
}

.trip-detail-passenger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(13, 148, 136, 0.15);
}

.trip-detail-passenger:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.trip-detail-passenger-info {
  min-width: 0;
}

.trip-detail-passenger-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1e293b;
}

.trip-detail-passenger-meta {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #64748b;
  margin-top: 0.125rem;
}

.trip-detail-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trip-detail-actions-row {
  display: flex;
  gap: 0.5rem;
}

.trip-detail-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.trip-detail-btn--primary {
  background: #0d9488;
  color: #fff;
}

.trip-detail-btn--primary:hover {
  background: #0f766e;
}

.trip-detail-btn--secondary {
  background: #f1f5f9;
  color: #334155;
}

.trip-detail-btn--secondary:hover {
  background: #e2e8f0;
}

.trip-detail-btn--danger {
  background: #fef2f2;
  color: #dc2626;
}

.trip-detail-btn--danger:hover {
  background: #fee2e2;
}

.trip-detail-loading {
  text-align: center;
  padding: 2rem 1rem;
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 600;
}

.trip-detail-points {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
}

.trip-detail-points span {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.trip-detail-points i {
  color: #0d9488;
  margin-top: 0.125rem;
}

/* Modales móvil */
@media (max-width: 639px) {
  .modal-sheet-top {
    align-items: flex-start;
    padding-top: env(safe-area-inset-top, 0);
  }

  .modal-sheet-top .auth-modal {
    border-radius: 0 0 1rem 1rem;
    max-height: min(80dvh, calc(100dvh - env(safe-area-inset-top, 0px) - 0.5rem));
  }

  .modal-sheet-bottom {
    align-items: flex-end;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  .modal-profile-panel {
    max-height: min(92dvh, calc(100dvh - env(safe-area-inset-top, 0px) - 0.5rem));
  }

  .modal-profile-panel .profile-body {
    -webkit-overflow-scrolling: touch;
  }

  body[data-page="home"] #search-bar {
    overflow: visible;
  }

  body[data-page="home"] .search-bar-fields {
    overflow: visible;
  }
}

/* Modal publicar */
.publish-modal {
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.22);
  border: 1px solid #e2e8f0;
}

.publish-modal-header {
  background: linear-gradient(180deg, #f0fdfa 0%, #fff 100%);
}

.publish-section-title {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.625rem;
}

.publish-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 0.375rem;
}

.publish-hint {
  margin-top: 0.375rem;
  font-size: 0.6875rem;
  color: #6b7280;
}

.publish-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}

.publish-type-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 0.75rem;
  border-radius: 0.875rem;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s, box-shadow 0.15s;
}

.publish-type-option:hover {
  border-color: #99f6e4;
  background: #f8fffe;
}

.publish-type-option--active {
  border-color: #0d9488;
  background: #f0fdfa;
  color: #0f766e;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

.publish-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  border: none;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.28);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}

.publish-submit:hover {
  filter: brightness(1.04);
  box-shadow: 0 10px 24px rgba(13, 148, 136, 0.34);
}

.publish-submit:active {
  transform: translateY(1px);
}

/* Viaje exclusivo mujeres — toggle violeta */
.pub-only-women {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.875rem;
  border: 1px solid #e9d5ff;
  background: #f3e8ff;
}

.pub-only-women.hidden {
  display: none !important;
}

.pub-only-women-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #581c87;
}

.pub-only-women-sub {
  margin-top: 0.125rem;
  font-size: 0.75rem;
  color: #7e22ce;
  opacity: 0.85;
}

.voy-switch {
  position: relative;
  flex-shrink: 0;
  width: 50px;
  height: 30px;
  padding: 3px;
  border: none;
  border-radius: 15px;
  background: #cbd5e1;
  cursor: pointer;
  transition: background 0.2s;
}

.voy-switch-knob {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.18);
  transition: transform 0.2s ease;
}

.voy-switch--on .voy-switch-knob {
  transform: translateX(20px);
}

.voy-switch--women.voy-switch--on {
  background: #a855f7;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Modal perfil */
.profile-modal-header {
  background: #fff;
}

.modal-profile-panel {
  max-height: min(92dvh, calc(100dvh - env(safe-area-inset-top, 0px) - 0.5rem));
}

.profile-body {
  padding: 1rem 1.25rem 0.75rem;
}

.profile-view.hidden {
  display: none;
}

.profile-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 0.875rem;
}

.profile-avatar-wrap--hero {
  margin-bottom: 0.625rem;
}

.profile-avatar-preview--hero {
  width: 5rem;
  height: 5rem;
  font-size: 1.375rem;
}

.profile-display-name {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  color: #1f2937;
  line-height: 1.2;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-display-email {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  color: #64748b;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-edit-link {
  margin-top: 0.625rem;
  padding: 0.375rem 0.875rem;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  background: #fff;
  color: #0f766e;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.profile-edit-link:hover {
  border-color: #99f6e4;
  background: #f0fdfa;
}

.profile-block {
  margin-top: 0.875rem;
}

.profile-block-label {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.profile-prefs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.pref-toggle--compact {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.5rem 0.375rem;
  font-size: 0.6875rem;
  text-align: center;
  line-height: 1.2;
}

.profile-footer {
  padding: 0.75rem 1.25rem calc(0.875rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid #f1f5f9;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

.profile-verify-link-wrap {
  width: 100%;
  text-align: center;
}

.profile-verify-link {
  padding: 0;
  border: none;
  background: transparent;
  color: #0d9488;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.profile-verify-link:hover {
  color: #0f766e;
}

.profile-verify-link.hidden,
.profile-verify-status-main.hidden {
  display: none;
}

.profile-verify-status-main {
  margin: 0;
  font-size: 0.75rem;
  color: #64748b;
  text-align: center;
}

.profile-save-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.75rem;
  background: #cbd5e1;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: not-allowed;
  transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
}

.profile-save-btn:not(:disabled) {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.24);
}

.profile-save-btn:not(:disabled):hover {
  filter: brightness(1.04);
}

.profile-save-btn.hidden {
  display: none;
}

.profile-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0;
  margin-bottom: 0.75rem;
  border: none;
  background: transparent;
  color: #64748b;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
}

.profile-back-link:hover {
  color: #0f766e;
}

.profile-subview-title {
  margin: 0 0 0.875rem;
  font-size: 1rem;
  font-weight: 800;
  color: #1f2937;
}

.profile-edit-fields,
.profile-verify-fields {
  display: grid;
  gap: 0.75rem;
}

.profile-edit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}

.auth-input--compact {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.profile-gender-note,
.profile-verify-note {
  margin: 0;
  font-size: 0.75rem;
  color: #64748b;
}

.profile-file-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
}

.profile-file-input {
  display: block;
  margin-top: 0.375rem;
  width: 100%;
  font-size: 0.75rem;
}

.profile-verify-submit {
  width: 100%;
  padding: 0.625rem 1rem;
  border: 1px solid #99f6e4;
  border-radius: 0.75rem;
  background: #fff;
  color: #0f766e;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.profile-verify-submit:hover {
  background: #f0fdfa;
  border-color: #0d9488;
}

.profile-avatar-wrap {
  position: relative;
}

.profile-avatar-btn {
  position: relative;
  display: block;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 9999px;
}

.profile-avatar-btn:disabled {
  cursor: wait;
  opacity: 0.85;
}

.profile-avatar-preview {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: #0d9488;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid #99f6e4;
}

.profile-avatar-edit {
  position: absolute;
  right: -0.125rem;
  bottom: -0.125rem;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 9999px;
  background: #fff;
  color: #0f766e;
  border: 2px solid #0d9488;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5625rem;
  box-shadow: 0 2px 6px rgba(15, 118, 110, 0.2);
}

.profile-avatar-btn--loading .profile-avatar-edit {
  animation: pulse 1s ease-in-out infinite;
}

.profile-avatar-hint {
  display: none;
}

.voy-talk-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.voy-talk-btn--compact {
  align-items: center;
  text-align: center;
  padding: 0.5rem 0.375rem;
  gap: 0.0625rem;
}

.voy-talk-btn--compact .voy-talk-btn-title {
  font-size: 0.75rem;
}

.voy-talk-btn--compact .voy-talk-btn-sub {
  font-size: 0.625rem;
}

.profile-section {
  padding-top: 0.125rem;
}

.voy-talk-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
}

@media (min-width: 480px) {
  .voy-talk-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.voy-talk-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.voy-talk-btn:hover {
  border-color: #99f6e4;
  background: #f0fdfa;
}

.voy-talk-btn--active {
  border-color: #0d9488;
  background: #f0fdfa;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

.voy-talk-btn-title {
  font-size: 0.9375rem;
  font-weight: 800;
  color: #1f2937;
}

.voy-talk-btn--active .voy-talk-btn-title {
  color: #0f766e;
}

.voy-talk-btn-sub {
  font-size: 0.75rem;
  line-height: 1.25;
  color: #64748b;
}
