
:root {
  --primary: #00b3b3;
  --primary-dark: #008080;
  --accent: #ffd447;
  --bg: #020816;
  --text-main: #0b1120;
  --text-soft: #4b5563;
  --card-bg: #ffffff;
  --section-alt: #f3f4f6;
  --border-soft: #e5e7eb;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.18);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --transition-fast: 0.25s ease;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background-color: #f9fafb;
  line-height: 1.6;
}

/* Layout utils */

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--section-alt);
}

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

.section-header h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  margin-bottom: 0.5rem;
}

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

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(2, 8, 23, 0.92);
  color: #e5e7eb;
}

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

.logo-block {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 46px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.main-nav a {
  color: #cbd5f5;
  text-decoration: none;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-pill);
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.main-nav a:hover {
  background: rgba(15, 118, 110, 0.2);
  color: #ffffff;
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  gap: 0.5rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: var(--radius-pill);
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  font-size: 0.94rem;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.btn-small {
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #4fd1c5);
  color: #020617;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px) translateZ(0);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.25);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 1);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.92);
  color: #f9fafb;
}

.btn-whatsapp {
  background: #22c55e;
  color: #022c22;
}

.btn-whatsapp:hover {
  background: #16a34a;
}

/* Hero */

.hero {
  position: relative;
  min-height: clamp(520px, 90vh, 640px);
  overflow: hidden;
  background: radial-gradient(circle at top left, #0f172a, #020617 60%);
  color: #e5e7eb;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.22), transparent 60%);
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
  padding: 3.2rem 0 4rem;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
}

.hero-subtitle {
  margin: 0 0 1.4rem;
  color: #cbd5f5;
  font-size: 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.6);
  margin-bottom: 0.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.3rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #cbd5f5;
}

.hero-tags span {
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

/* Hero card */

.hero-card {
  background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.08), #020617);
  border-radius: 24px;
  padding: 1.4rem 1.4rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: grid;
  grid-template-rows: auto auto;
  gap: 0.8rem;
}

.hero-car-img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.hero-card-info h2 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}

.hero-card-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.hero-card-info li::before {
  content: "• ";
  color: var(--accent);
}

.from-price {
  margin: 0;
  font-size: 0.95rem;
}

.from-price strong {
  font-size: 1.05rem;
}

.small-note {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  color: #9ca3af;
}

/* Cards */

.card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.card h3 {
  margin-top: 0;
  font-size: 1.05rem;
}

.card p {
  margin-bottom: 0;
  color: var(--text-soft);
}

/* Grids */

.benefits-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

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

.fleet-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.07);
  display: flex;
  flex-direction: column;
}

.fleet-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.fleet-info {
  padding: 1.1rem 1.3rem 1.3rem;
}

.fleet-info h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
}

.fleet-info p {
  margin: 0 0 0.6rem;
  color: var(--text-soft);
}

.fleet-info ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0;
  font-size: 0.87rem;
  color: var(--text-soft);
}

/* Transfers */

.transfers {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.transfers-text h2 {
  margin-top: 0;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  color: var(--text-soft);
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.9rem;
}

.highlight {
  font-weight: 600;
  color: var(--text-main);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Gallery */

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

.gallery-item {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 160px;
  cursor: zoom-in;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}

.gallery-item:hover {
  transform: translateY(-4px);
  filter: brightness(1.03);
  box-shadow: var(--shadow-soft);
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  border: none;
  background: transparent;
  color: #e5e7eb;
  font-size: 2.1rem;
  cursor: pointer;
}

/* Social */

.social-section {
  text-align: center;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin-top: 1.5rem;
}

.social-card {
  background: #020617;
  color: #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow-soft);
}

.social-logo img {
  height: 40px;
  margin-bottom: 0.8rem;
}

/* Location */

.location {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.address {
  font-weight: 600;
  margin: 0.5rem 0 0.8rem;
}

.location-map iframe {
  width: 100%;
  min-height: 260px;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-form {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 9px;
  border: 1px solid #d1d5db;
  font: inherit;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.5);
  background: #f9fafb;
}

.form-row-inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-info {
  padding: 1.2rem 1rem;
}

.contact-info h3 {
  margin-top: 0;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.contact-list li {
  margin-bottom: 0.4rem;
}

.contact-list a {
  color: var(--primary-dark);
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.small-note {
  font-size: 0.86rem;
  color: var(--text-soft);
}

/* WhatsApp Floating */

.whatsapp-float {
  position: fixed;
  bottom: 1.6rem;
  right: 1.3rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 16px 35px rgba(22, 163, 74, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #022c22;
  text-decoration: none;
  font-size: 1.6rem;
  z-index: 30;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  background: #16a34a;
  box-shadow: 0 18px 40px rgba(21, 128, 61, 0.9);
}

/* Footer */

.site-footer {
  background: #020617;
  color: #9ca3af;
  padding: 1.6rem 0 1.4rem;
  font-size: 0.85rem;
}

.footer-content {
  text-align: center;
}

.site-footer a {
  color: #e5e7eb;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Animaciones suaves */

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 960px) {
  .hero-content,
  .transfers,
  .location,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 840px) {
  .main-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .header-content {
    padding-block: 0.55rem;
  }

  .hero {
    min-height: 520px;
  }

  .hero-content {
    padding-top: 2.5rem;
    gap: 2rem;
  }

  .section {
    padding: 3.2rem 0;
  }

  .contact-form {
    padding: 1.5rem 1.2rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}
