@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Nunito+Sans:ital,wght@0,400;0,600;0,700;1,400&display=swap");

:root {
  --bg: #fbf3e6;
  --surface: #fff7ef;
  --text: #352a1f;
  --muted: #7a6753;
  --accent: #d05f1a;
  --accent-soft: #fde5c4;
  --accent-alt: #2a6d85;
  --border: #d6b694;
  --shadow: 0 18px 45px rgba(53, 42, 31, 0.14);
  --font-body: "Nunito Sans", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: #fff9ee;
  border-bottom: 1px solid rgba(214, 182, 148, 0.55);
  position: sticky;
  top: 0;
  z-index: 10;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-icon {
  width: 56px;
  min-width: 56px;
  border-radius: 1rem;
  box-shadow: 0 14px 32px rgba(53, 42, 31, 0.18);
}

.brand-text h1 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.1;
}

.brand-text p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-nav a {
  color: var(--text);
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--accent);
}

.search-banner {
  background: linear-gradient(135deg, var(--accent-soft) 0%, #fde5c4 100%);
  border-top: 1px solid rgba(214, 182, 148, 0.4);
  padding: 1.5rem 0;
}

.search-banner-inner {
  position: relative;
}

.search-compact-bar {
  display: none;
  width: 100%;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(214, 182, 148, 0.85);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 8px 24px rgba(53, 42, 31, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-compact-bar:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 28px rgba(53, 42, 31, 0.12);
}

.search-compact-icon {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
}

.search-compact-summary {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 600;
}

.search-compact-edit {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-alt);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.search-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  align-items: flex-end;
}

.site-header--compact {
  box-shadow: 0 6px 20px rgba(53, 42, 31, 0.08);
}

.site-header--compact .header-inner {
  padding: 0.55rem 0;
}

.site-header--compact .brand-icon {
  width: 44px;
  min-width: 44px;
}

.site-header--compact .brand-text h1 {
  font-size: 1.25rem;
}

.site-header--compact .brand-text p {
  display: none;
}

.site-header--compact .search-banner {
  padding: 0.65rem 0;
  background: #fde5c4;
}

.site-header--compact .search-banner.search-banner--collapsed {
  min-height: 3.1rem;
}

.site-header--compact .search-field label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header--compact .search-form {
  grid-template-columns: repeat(6, minmax(0, 1fr)) auto;
  gap: 0.5rem;
  align-items: center;
}

.site-header--compact .search-field input,
.site-header--compact .search-field select {
  padding: 0.5rem 0.65rem;
  font-size: 0.85rem;
}

.site-header--compact .search-button {
  padding: 0.5rem 0.85rem;
  font-size: 0.85rem;
}

.site-header--compact .search-banner.search-banner--collapsed .search-compact-bar {
  display: flex;
}

.site-header--compact .search-banner.search-banner--collapsed .search-form {
  visibility: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.site-header--compact .search-banner.search-banner--expanded .search-compact-bar {
  visibility: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

@media (max-width: 1100px) {
  .site-header--compact .search-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-header--compact .search-button {
    grid-column: 1 / -1;
  }
}

@media (min-width: 769px) {
  .site-header--compact .search-compact-bar {
    display: none !important;
  }

  .site-header--compact .search-form {
    display: grid !important;
  }
}

@media (max-width: 768px) {
  .site-header--compact .site-nav {
    display: none;
  }
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.search-field label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}

.search-field input,
.search-field select {
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(214, 182, 148, 0.8);
  border-radius: 0.6rem;
  background: white;
  color: var(--text);
  font-size: 0.95rem;
}

.search-field input:focus,
.search-field select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 0;
}

.search-button {
  align-self: flex-end;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .search-form {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .search-form {
    grid-template-columns: 1fr;
  }

  .search-button {
    align-self: auto;
  }
}

.section {
  padding: 4rem 0;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-header h3 {
  margin: 0 0 0.75rem;
  font-size: 2rem;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.hero {
  background: linear-gradient(135deg, #fff4e0 0%, #fce6cc 45%, #e9f5fb 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  min-height: 50vh;
  padding: 2rem 0;
}

.hero-content > div:first-child {
  text-align: center;
}

.hero-subtle {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-alt);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.84rem;
}

.hero h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  line-height: 1.05;
}

.hero p {
  max-width: 540px;
  color: var(--muted);
  margin: 0 auto 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #ffd7aa;
  color: #472f1b;
}

.button-primary {
  background: var(--accent);
  color: white;
}

.button-primary:hover {
  background: #b44a0f;
}

.hero-image {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section-search-results {
  padding: 3rem 0;
}

.trips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.trips-grid .trip-card:only-child {
  max-width: 56rem;
  width: 100%;
  justify-self: center;
}


.trip-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 56rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.trip-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.trip-content {
  padding: 1.25rem;
  text-align: center;
}

.trip-content h4 {
  margin: 0 0 0.75rem;
}

.trip-content p {
  margin: 0.4rem 0;
  color: var(--muted);
}

.about-grid article,
.services-grid article,
.booking-form-card,
.booking-preview-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.about-grid article h4,
.services-grid article h4,
.booking-form-card h4,
.booking-preview-card h4 {
  margin: 0 0 0.75rem;
}

.about-grid article p,
.services-grid article p,
.preview-content p {
  margin: 0;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.services-grid article {
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.about-grid article {
  text-align: center;
}

.booking-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.booking-form-card form {
  display: grid;
  gap: 1rem;
}

label {
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(14, 165, 233, 0.3);
  outline-offset: 2px;
}

textarea {
  resize: vertical;
}

.small {
  font-size: 0.95rem;
  opacity: 0.85;
}

.booking-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  font-weight: 600;
  display: inline-block;
}

.booking-status.info {
  background: #eff6ff;
  color: #0f172a;
}

.booking-status.success {
  background: #dcfce7;
  color: #14532d;
}

.booking-status.error {
  background: #fee2e2;
  color: #991b1b;
}

.calendar-wrapper {
  background: #f8fafc;
  border-radius: 1rem;
  padding: 1rem;
}

#calendar {
  display: grid;
  gap: 0.5rem;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.calendar-header button {
  border: none;
  background: transparent;
  color: var(--accent);
  font-size: 1rem;
  cursor: pointer;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.5rem;
}

.calendar-cell {
  min-height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 0.85rem;
  background: white;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.calendar-cell:hover {
  transform: translateY(-1px);
  background: #f0fdfa;
}

.calendar-cell.disabled {
  cursor: default;
  opacity: 0.35;
  background: transparent;
}

.calendar-cell.selected {
  background: var(--accent);
  color: white;
}

.calendar-weekday {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

.preview-content {
  display: grid;
  gap: 1rem;
}

.preview-suggestion {
  margin-top: 1rem;
}

.agent-suggestion-card {
  background: #f8fafc;
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 1rem;
  padding: 1rem;
}

.agent-suggestion-card h4 {
  margin-top: 0;
}

.preview-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.preview-row strong {
  color: var(--accent);
}

.site-footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
}

.footer-content p {
  margin: 0;
}

.footer-content h4 {
  margin: 0 0 0.75rem;
}

@media (max-width: 900px) {
  .hero-content,
  .booking-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-nav {
    gap: 0.75rem;
  }

  .hero h2 {
    font-size: 2.4rem;
  }
}

.hidden {
  display: none !important;
}

.admin-main {
  padding: 3rem 0;
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin-summary-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
}

.admin-summary-card h4 {
  margin: 0;
  font-size: 2rem;
}

.admin-card {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.admin-item {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: #f8fafc;
  margin-bottom: 0.75rem;
}

.admin-item-main strong {
  display: block;
  margin-bottom: 0.35rem;
}

.admin-item-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admin-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.admin-form input,
.admin-form textarea {
  font-size: 0.95rem;
}

button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 999px;
}

@media (max-width: 900px) {
  .admin-summary {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .admin-summary {
    grid-template-columns: 1fr;
  }
}

/* Search Results Styling */
.search-plan {
  background: linear-gradient(135deg, var(--accent-soft) 0%, rgba(253, 229, 196, 0.7) 100%);
  padding: 1.5rem;
  border-radius: 1.2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--accent);
  font-weight: 600;
  color: var(--text);
}

.results-section {
  margin-bottom: 3rem;
}

.results-section h3 {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  color: var(--text);
  border-bottom: 2px solid var(--accent-soft);
  padding-bottom: 0.75rem;
}

/* Flights Grid */
.flights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
}

.flight-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(53, 42, 31, 0.18);
}

.flight-airline {
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.flight-route {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.flight-dates {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.flight-details {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--accent-soft);
  border-bottom: 1px solid var(--accent-soft);
}

.flight-price {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--accent);
}

/* Hotels Grid */
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.hotel-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.hotel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(53, 42, 31, 0.18);
}

.hotel-image {
  height: 180px;
  overflow: hidden;
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.hotel-content h5 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.hotel-category {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hotel-description {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
  flex-grow: 1;
  line-height: 1.4;
}

.hotel-price {
  margin: 0;
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

/* Activities Grid */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.activity-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.activity-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(53, 42, 31, 0.18);
}

.activity-image {
  height: 180px;
  overflow: hidden;
}

.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activity-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.activity-content h5 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.activity-type {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  color: var(--accent-alt);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.activity-description {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
  flex-grow: 1;
  line-height: 1.4;
}

.activity-price {
  margin: 0;
  font-weight: 700;
  color: var(--accent-alt);
  font-size: 1.1rem;
}

.trips-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.trips-packages-grid .trip-card:only-child {
  max-width: 56rem;
  width: 100%;
  justify-self: center;
}

@media (max-width: 768px) {
  .flights-grid,
  .hotels-grid,
  .activities-grid,
  .trips-packages-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .results-section h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .flights-grid,
  .hotels-grid,
  .activities-grid,
  .trips-packages-grid {
    grid-template-columns: 1fr;
  }

  .search-plan {
    padding: 1rem;
    font-size: 0.95rem;
  }
}

.section-contact {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.contact-form {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-form .contact-form-grid,
.contact-form > .form-field {
  width: 100%;
}

.contact-form .button-primary {
  align-self: center;
}

.contact-fallback {
  text-align: center;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-field input,
.form-field textarea {
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
}

.contact-fallback {
  font-size: 0.9rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.hidden {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: relative;
  background: var(--surface);
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  color: var(--muted);
}

.consulta-packages-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.section-header-compact h4 {
  margin: 0 0 0.35rem;
}

.section-header-compact p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.trip-image {
  position: relative;
}

.trip-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.trip-badge-consulta {
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent-alt);
  border: 1px solid var(--border);
}

.trip-card-consulta {
  border-style: dashed;
}

.trip-card-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.trip-card-actions .button {
  flex: 1 1 auto;
  text-align: center;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.trip-detail-main {
  padding: 2rem 0 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.trip-detail-body {
  text-align: center;
}

.trip-detail-body .trip-detail-lead,
.trip-detail-body .trip-detail-facts,
.trip-detail-body .trip-detail-section {
  text-align: left;
}

.trip-detail-hero {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.trip-detail-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.trip-detail-body h2 {
  margin: 0.25rem 0 1rem;
}

.trip-detail-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
}

.trip-detail-facts {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
}

.trip-detail-facts p {
  margin: 0.35rem 0;
}

.trip-detail-section {
  margin: 1.5rem 0;
}

.trip-activities-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.trip-activities-list li {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
}

.trip-detail-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.trip-error {
  color: #b42318;
}

.admin-edit-modal .modal-content {
  max-width: 560px;
}

.admin-edit-form {
  display: grid;
  gap: 0.75rem;
}
