:root {
  --bg: #f6f8f7;
  --white: #ffffff;
  --paper: rgba(255,255,255,0.84);
  --text: #10211a;
  --muted: #617168;
  --line: rgba(15, 63, 49, 0.11);
  --green: #0d3f31;
  --green-2: #15634b;
  --red: #a61f45;
  --gold: #d6bd71;
  --gold-2: #f2e6b4;
  --shadow: 0 20px 60px rgba(11, 43, 33, 0.10);
  --shadow-strong: 0 30px 90px rgba(11, 43, 33, 0.18);
  --radius: 28px;
  --radius-sm: 20px;
  --container: 1220px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(21,99,75,.08), transparent 20%),
    radial-gradient(circle at 90% 15%, rgba(214,189,113,.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7fbf9 44%, #eff5f2 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 30px)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-sm { padding: 58px 0; }
.section-head { display: flex; justify-content: space-between; gap: 18px; align-items: end; margin-bottom: 30px; }
.section-head p { max-width: 650px; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px;
  padding: 9px 15px; border-radius: 999px; border: 1px solid rgba(15,63,49,.10); color: var(--green-2);
  background: rgba(255,255,255,.85); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .82rem;
}
.kicker::before {
  content: ""; width: 10px; height: 10px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--green-2));
  box-shadow: 0 0 0 5px rgba(214,189,113,.15);
}
h1,h2,h3,h4 { margin: 0 0 16px; line-height: 1.04; }
h1 { font-size: clamp(2.8rem, 6vw, 5.8rem); letter-spacing: -.05em; }
h2 { font-size: clamp(2rem, 3.8vw, 3.6rem); letter-spacing: -.04em; }
h3 { font-size: 1.35rem; }
p { margin: 0 0 18px; color: var(--muted); line-height: 1.78; }
.lead { font-size: 1.08rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  min-height: 54px; padding: 0 24px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white; background: linear-gradient(135deg, var(--green), var(--green-2)); box-shadow: 0 18px 34px rgba(13,63,49,.24);
}
.btn-secondary {
  background: rgba(255,255,255,.88); color: var(--green); border-color: rgba(13,63,49,.13);
}
.btn-outline { background: transparent; color: var(--green); border-color: rgba(13,63,49,.2); }
.topbar {
  background: linear-gradient(90deg, var(--green), #176d52 70%, var(--red)); color: white; font-size: .95rem;
}
.topbar-inner { min-height: 42px; display:flex; align-items:center; justify-content:space-between; gap:14px; }
.topbar small { opacity: .95; }
.site-header {
  position: sticky; top: 0; z-index: 70; backdrop-filter: blur(18px);
  background: rgba(255,255,255,.78); border-bottom: 1px solid rgba(13,63,49,.08);
}
.nav { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display:flex; align-items:center; gap: 14px; min-width: 0; }
.brand img { width: 68px; height: 68px; object-fit: contain; filter: drop-shadow(0 18px 30px rgba(13,63,49,.16)); }
.brand-text strong { display:block; font-size: 1.02rem; color: var(--green); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand-text span { color: var(--muted); font-size: .9rem; }
.nav-links { display:flex; align-items:center; flex-wrap: wrap; gap: 8px; }
.nav-links a {
  padding: 10px 14px; border-radius: 999px; color: var(--green); font-weight: 650; position: relative;
}
.nav-links a.active, .nav-links a:hover { background: rgba(13,63,49,.08); }
.nav-cta { display:flex; align-items:center; gap:10px; }
.menu-toggle { display:none; width:54px; height:54px; border-radius:18px; border:1px solid rgba(13,63,49,.1); background:white; box-shadow: var(--shadow); }
.hero {
  padding: 42px 0 74px; position: relative; overflow: hidden;
}
.hero::before, .hero::after {
  content:""; position:absolute; border-radius:50%; filter: blur(18px); pointer-events:none;
}
.hero::before { width: 360px; height: 360px; left: -120px; top: -50px; background: rgba(214,189,113,.18); }
.hero::after { width: 480px; height: 480px; right: -180px; top: 20px; background: rgba(21,99,75,.14); }
.hero-grid { display:grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: center; }
.hero-copy { position:relative; z-index:1; }
.hero-copy h1 span { color: var(--green-2); }
.hero-points { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin: 28px 0 32px; }
.point, .card, .feature, .info-card, .quote, .contact-card, .glass-card, .fleet-card, .gallery-card, .route-card, .premium-form, .timeline-card, .metric, .highlight-card {
  background: linear-gradient(180deg, rgba(255,255,255,.93), rgba(255,255,255,.82));
  border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: var(--radius);
}
.point { padding: 18px; border-radius: 20px; }
.point strong { display:block; margin-bottom: 6px; color: var(--green); }
.hero-visual { padding: 18px; position: relative; }
.hero-visual::before {
  content:""; position:absolute; inset: 12px; border-radius: 30px; border:1px solid rgba(214,189,113,.30); pointer-events:none;
}
.visual-stage {
  min-height: 600px; border-radius: 30px; overflow:hidden; position: relative;
  background:
    linear-gradient(155deg, rgba(255,255,255,.25), rgba(255,255,255,.08)),
    linear-gradient(180deg, rgba(8,26,20,.18), rgba(8,26,20,.52)),
    url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1200&q=80') center/cover;
}
.visual-overlay { position:absolute; inset:0; background: linear-gradient(180deg, rgba(10,34,26,.10) 0%, rgba(10,34,26,.70) 100%); }
.floating-logo {
  position:absolute; top: 26px; left: 26px; width: 180px; padding: 14px; border-radius: 24px;
  background: rgba(255,255,255,.88); border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(14px); box-shadow: var(--shadow-strong);
}
.floating-logo img { width: 100%; }
.hero-caption {
  position:absolute; left: 26px; right: 26px; bottom: 26px; z-index:2; color:white;
}
.hero-caption h3 { font-size: 2rem; color: white; max-width: 560px; }
.hero-tags { display:flex; flex-wrap:wrap; gap: 10px; margin-top: 18px; }
.hero-tags span { padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.14); backdrop-filter: blur(10px); border:1px solid rgba(255,255,255,.16); }
.mini-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-top: 18px; }
.metric { padding: 20px; text-align:center; border-radius: 20px; }
.metric strong { display:block; font-size: 1.45rem; color: var(--green); }
.band {
  padding: 22px 24px; border-radius: 28px; color:white;
  background: linear-gradient(135deg, var(--green), #1a6a50 60%, var(--red));
  display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; box-shadow: var(--shadow-strong);
}
.band-item { padding-right: 16px; border-right: 1px solid rgba(255,255,255,.18); }
.band-item:last-child { border-right: 0; padding-right:0; }
.band strong { display:block; margin-bottom: 8px; font-size: 1.04rem; }
.grid-2, .grid-3, .grid-4 { display:grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card, .feature, .info-card, .quote, .contact-card, .fleet-card, .gallery-card, .route-card, .premium-form, .timeline-card, .highlight-card { padding: 28px; }
.card h3, .feature h3, .info-card h3, .fleet-card h3, .gallery-card h3, .route-card h3, .contact-card h3, .highlight-card h3 { color: var(--green); }
.feature { background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,250,248,.88)); }
.icon-badge {
  width: 56px; height: 56px; border-radius: 18px; display:grid; place-items:center; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(214,189,113,.22), rgba(21,99,75,.14)); color: var(--green); font-weight: 800;
}
ul.clean, .meta-list, .check-list, .service-list { list-style:none; padding:0; margin:0; display:grid; gap: 12px; }
ul.clean li, .meta-list li, .check-list li, .service-list li { position:relative; padding-left: 28px; color: var(--muted); }
ul.clean li::before, .meta-list li::before, .check-list li::before, .service-list li::before {
  content:""; position:absolute; left:0; top:.52em; width: 12px; height: 12px; border-radius:50%;
  background: linear-gradient(135deg, var(--gold), var(--green-2)); box-shadow: 0 0 0 5px rgba(214,189,113,.12);
}
.image-card {
  min-height: 400px; border-radius: 28px; overflow: hidden; position:relative;
  background-size: cover; background-position: center;
}
.image-card::after {
  content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(13,63,49,.06), rgba(13,63,49,.75));
}
.image-card .content { position:absolute; z-index:1; left:28px; right:28px; bottom:28px; color:white; }
.image-card .content p, .image-card .content h3 { color:white; }
.fleet-card { overflow:hidden; padding:0; }
.fleet-media { height: 230px; background-size: cover; background-position: center; }
.fleet-body { padding: 26px; }
.price-tag { display:inline-flex; padding: 8px 14px; border-radius:999px; background: rgba(13,63,49,.08); color: var(--green); font-weight:700; margin-bottom: 18px; }
.route-card { display:flex; flex-direction:column; gap:14px; }
.route-meta { display:flex; flex-wrap:wrap; gap:10px; }
.route-meta span { padding: 9px 12px; border-radius:999px; background: rgba(13,63,49,.08); color: var(--green); font-weight:700; font-size: .86rem; }
.gallery-hero {
  min-height: 520px; border-radius: 34px; overflow:hidden; position:relative;
  background: linear-gradient(180deg, rgba(13,63,49,.12), rgba(13,63,49,.68)), url('assets/images/poster-premium.png') center/cover;
  box-shadow: var(--shadow-strong);
}
.gallery-hero .content { position:absolute; left:34px; right:34px; bottom:34px; color:white; }
.gallery-grid { display:grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.gallery-item {
  position:relative; min-height: 280px; border-radius: 26px; overflow:hidden; border: 1px solid rgba(255,255,255,.18); box-shadow: var(--shadow);
  background-size: cover; background-position: center;
}
.gallery-item.large { grid-column: span 7; }
.gallery-item.tall { grid-column: span 5; min-height: 580px; }
.gallery-item.medium { grid-column: span 4; }
.gallery-item::before { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(11,31,24,.10), rgba(11,31,24,.68)); }
.gallery-item .meta { position:absolute; left:22px; right:22px; bottom:22px; z-index:1; color:white; }
.dark-panel {
  padding: 36px; border-radius: 34px; color:white;
  background:
    radial-gradient(circle at top right, rgba(214,189,113,.14), transparent 28%),
    linear-gradient(135deg, #081d16 0%, #103528 55%, #1b6a51 100%);
  box-shadow: var(--shadow-strong);
}
.dark-panel p, .dark-panel li { color: rgba(255,255,255,.82); }
.timeline { display:grid; gap: 18px; }
.timeline-card { display:grid; grid-template-columns: 90px 1fr; align-items:start; gap: 18px; }
.timeline-step {
  width: 72px; height:72px; border-radius: 20px; display:grid; place-items:center; font-weight: 800; color: var(--green);
  background: linear-gradient(135deg, rgba(214,189,113,.24), rgba(255,255,255,.9));
}
.contact-grid { display:grid; grid-template-columns: .9fr 1.1fr; gap: 22px; }
.contact-card strong { display:block; color: var(--green); margin-bottom: 6px; }
.premium-form { position: relative; overflow:hidden; }
.premium-form::before {
  content:""; position:absolute; width: 220px; height:220px; border-radius:50%; top:-80px; right:-80px; background: rgba(214,189,113,.18); filter: blur(12px);
}
.form-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.form-group { display:grid; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: .92rem; font-weight: 700; color: var(--green); }
input, select, textarea {
  width: 100%; min-height: 56px; border-radius: 18px; border: 1px solid rgba(13,63,49,.12); background: rgba(255,255,255,.94);
  padding: 14px 16px; font: inherit; color: var(--text); outline: none;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: rgba(21,99,75,.42); box-shadow: 0 0 0 4px rgba(21,99,75,.10); }
.form-note { padding: 14px 16px; border-radius: 16px; background: rgba(13,63,49,.06); color: var(--green); font-size: .95rem; }
.wa-preview {
  margin-top: 18px; padding: 18px; border-radius: 20px; background: #0f3f31; color:white;
}
.wa-preview pre {
  margin: 0; font-family: inherit; white-space: pre-wrap; word-break: break-word; color: rgba(255,255,255,.92); line-height: 1.7;
}
.footer {
  padding: 38px 0 22px; color: white;
  background: linear-gradient(135deg, #0a2219, #0f3f31 68%, #90243b);
}
.footer-grid { display:grid; grid-template-columns: 1.1fr .9fr .8fr; gap: 22px; }
.footer .brand-text strong, .footer h3, .footer a { color: white; }
.footer p, .footer li, .footer span { color: rgba(255,255,255,.78); }
.footer-bottom { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.float-whatsapp {
  position: fixed; right: 18px; bottom: 18px; z-index: 80; min-height: 58px; min-width: 58px; border-radius: 999px;
  background: linear-gradient(135deg, #1dbf73, #0d8b50); color: white; display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 0 20px; font-weight: 800; box-shadow: 0 20px 34px rgba(13,139,80,.30);
}
.page-hero {
  padding: 34px 0 54px; position:relative; overflow:hidden;
}
.page-banner {
  border-radius: 34px; padding: 36px; color:white; overflow:hidden; position:relative; min-height: 320px;
  background: linear-gradient(135deg, rgba(13,63,49,.74), rgba(13,63,49,.48)), var(--banner-bg, url('assets/images/poster-premium.png')) center/cover;
  box-shadow: var(--shadow-strong);
}
.page-banner::before {
  content:""; position:absolute; inset:18px; border-radius: 24px; border: 1px solid rgba(255,255,255,.18); pointer-events:none;
}
.page-banner > * { position:relative; z-index:1; }
.breadcrumbs { display:flex; gap: 10px; flex-wrap:wrap; margin-bottom: 18px; font-size: .92rem; color: rgba(255,255,255,.86); }
.badge-line { display:flex; gap:10px; flex-wrap:wrap; margin-top: 14px; }
.badge-line span { padding: 9px 13px; border-radius:999px; background: rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.18); }
@media (max-width: 1100px) {
  .hero-grid, .contact-grid, .gallery-grid, .footer-grid { grid-template-columns: 1fr; }
  .band { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-item.large, .gallery-item.tall, .gallery-item.medium { grid-column: auto; min-height: 300px; }
}
@media (max-width: 920px) {
  .nav-links, .nav-cta { display:none; }
  .menu-toggle { display:grid; place-items:center; }
  .nav.mobile-open .nav-links {
    display:flex; position:absolute; top: calc(100% + 10px); left:15px; right:15px; flex-direction:column; align-items:stretch; padding: 18px;
    background: rgba(255,255,255,.96); border:1px solid var(--line); box-shadow: var(--shadow); border-radius: 24px;
  }
  .nav.mobile-open .nav-links a { padding: 14px 16px; border-radius: 16px; }
  .hero-grid, .grid-2, .grid-3, .grid-4, .contact-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-points, .mini-grid { grid-template-columns: 1fr; }
  .section-head { flex-direction:column; align-items:start; }
}
@media (max-width: 640px) {
  .container { width: min(var(--container), calc(100% - 20px)); }
  .brand img { width: 58px; height:58px; }
  .brand-text strong { white-space: normal; }
  .hero { padding-top: 24px; }
  .visual-stage { min-height: 500px; }
  .floating-logo { width: 120px; left: 18px; top: 18px; }
  .hero-caption { left: 18px; right: 18px; bottom: 18px; }
  .hero-caption h3 { font-size: 1.5rem; }
  .band { grid-template-columns: 1fr; }
  .band-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); padding-bottom: 14px; }
  .band-item:last-child { border-bottom: 0; padding-bottom: 0; }
  .page-banner, .dark-panel, .premium-form, .card, .feature, .info-card, .contact-card, .route-card, .fleet-body { padding: 22px; }
}
