/* =========================================================
   RentaPanelGT — hoja de estilos
   Paleta oficial de marca: celeste y amarillo (del logo), con blanco.
   ========================================================= */

:root {
  --blue: #006CB7;
  --blue-deep: #024A80;
  --blue-soft: #E3EEF7;
  --yellow: #FAC311;
  --yellow-dark: #D9A600;
  --bg: #F5F9FC;
  --surface: #FFFFFF;
  --ink: #0B2540;
  --steel: #56708A;
  --line: #D9E6EF;
  --maxw: 1140px;
  --radius: 3px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.08;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; max-width: 62ch; color: var(--steel); }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: .9em;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--yellow);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .98rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--yellow); color: var(--blue-deep); font-weight: 700; }
.btn-primary:hover { background: var(--yellow-dark); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.4); color: #fff; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-outline-dark { background: transparent; border-color: var(--line); color: var(--blue); }
.btn-outline-dark:hover { border-color: var(--blue); background: rgba(0,108,183,.06); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--surface);
  border-bottom: 3px solid var(--yellow);
  box-shadow: 0 2px 10px rgba(2,74,128,.08);
}
.nav {
  display: flex; align-items: center; gap: 28px;
  padding: 10px 24px;
  max-width: var(--maxw); margin: 0 auto;
}
.logo {
  display: flex; align-items: center; gap: 10px;
}
.site-logo-img {
  height: 46px; width: auto; display: block;
}
.footer-logo-img {
  height: 44px; width: auto; display: block;
  background: #fff; padding: 8px 14px; border-radius: 5px;
}

.nav-links {
  display: flex; align-items: center; gap: 20px; list-style: none;
  margin: 0; padding: 0; flex: 1; flex-wrap: wrap;
}
.nav-links a {
  color: var(--steel); font-weight: 600; font-size: .92rem; white-space: nowrap;
}
.nav-links a:hover { color: var(--blue); text-decoration: none; }
.nav-links a.active { color: var(--blue); box-shadow: inset 0 -2px 0 var(--yellow); padding-bottom: 2px; }

.nav-cta { display: flex; align-items: center; gap: 14px; margin-left: auto; flex: none; }
.nav-phone { color: var(--blue); font-weight: 700; font-size: .92rem; white-space: nowrap; }

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

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 8px; right: 8px; height: 2px; background: var(--blue);
}
.nav-toggle span { top: 19px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

@media (max-width: 900px) {
  .nav-links { position: fixed; top: 65px; right: 0; bottom: 0; left: 0; background: var(--blue);
    flex-direction: column; align-items: flex-start; padding: 24px 24px 40px;
    gap: 6px; transform: translateY(-100vh); visibility: hidden; pointer-events: none;
    transition: transform .25s ease, visibility 0s linear .25s; overflow-y: auto; }
  .nav-links.open { transform: translateY(0); visibility: visible; pointer-events: auto;
    transition: transform .25s ease; }
  .nav-links li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-links a { display: block; padding: 14px 4px; color: #fff; }
  .nav-links a:hover { color: var(--yellow); }
  .nav-links a.active { color: var(--yellow); box-shadow: none; }
  .nav-toggle { display: block; }
  .nav-phone { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--blue);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 64px 0 88px;
}
.hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 10px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 34px, transparent 34px 60px);
  opacity: .9;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center;
}
.hero h1 { color: #fff; }
.hero p.lead { color: #D9EAF7; font-size: 1.08rem; max-width: 46ch; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.ticket {
  background: var(--surface);
  color: var(--ink);
  border-radius: 6px;
  padding: 30px 28px;
  position: relative;
  box-shadow: 0 24px 60px -18px rgba(0,0,0,.45);
}
.ticket::before, .ticket::after {
  content: ""; position: absolute; width: 22px; height: 22px; background: var(--blue);
  border-radius: 50%; top: 50%; transform: translateY(-50%);
}
.ticket::before { left: -11px; }
.ticket::after { right: -11px; }
.ticket-head {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 2px dashed var(--line); padding-bottom: 14px; margin-bottom: 18px;
}
.ticket-head span { font-family: "Barlow Condensed", sans-serif; font-weight: 700; color: var(--blue); letter-spacing: .03em; }
.ticket-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: center; }
.ticket-stats strong { display: block; font-family: "Barlow Condensed", sans-serif; font-size: 2rem; color: var(--blue); line-height: 1; }
.ticket-stats span { font-size: .78rem; color: var(--steel); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
}

/* ---------- Sections ---------- */
section { padding: 76px 0; }
.section-tight { padding: 48px 0; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.bg-surface { background: var(--surface); }
.bg-navy { background: var(--blue); color: #fff; }
.bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-navy p { color: #D9EAF7; }

/* ---------- Trust strip ---------- */
.trust {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.trust-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: space-between; }
.trust-row p { margin: 0; color: var(--steel); font-size: .9rem; }
.logo-slots { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.logo-slot {
  width: 145px; height: 58px; border: 1px dashed var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; color: #9AA0AC; border-radius: 3px; text-align: center; padding: 5px;
}
.logo-slot img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(45%); opacity: .85; }
.logo-slot img:hover { filter: none; opacity: 1; }

/* ---------- Services (manifest list) ---------- */
.manifest { border-top: 1px solid var(--line); }
.manifest-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.manifest-row .icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.manifest-row .icon svg { width: 26px; height: 26px; stroke: var(--blue); }
.manifest-row .icon.photo { overflow: hidden; padding: 0; border: none; }
.manifest-row .icon.photo img { width: 100%; height: 100%; object-fit: cover; }
.manifest-row h3 { margin: 0 0 4px; }
.manifest-row p { margin: 0; }
.manifest-row .go { white-space: nowrap; font-weight: 600; font-size: .92rem; }
@media (max-width: 640px) {
  .manifest-row { grid-template-columns: 44px 1fr; }
  .manifest-row .go { grid-column: 2; margin-top: 6px; }
}

/* ---------- Photo band ---------- */
.photo-band {
  position: relative; height: 220px; background-size: cover; background-position: center;
  display: flex; align-items: center;
}
.photo-band::before {
  content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,74,128,.92) 0%, rgba(2,74,128,.55) 55%, rgba(2,74,128,.25) 100%);
}
.photo-band .wrap { position: relative; z-index: 1; }
.photo-band h2 { color: #fff; margin-bottom: 6px; }
.photo-band p { color: #D7DCE6; margin: 0; max-width: 44ch; }

/* ---------- Content photos ---------- */
.content-photo {
  border-radius: 6px; overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 4/3; background: #E8E8E3;
}
.content-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.content-photo.wide { aspect-ratio: 16/10; }

.photo-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0; }
@media (max-width: 560px) { .photo-pair { grid-template-columns: 1fr; } }

.photo-trio { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
@media (max-width: 720px) { .photo-trio { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .photo-trio { grid-template-columns: 1fr; } }
.photo-trio figure { margin: 0; }
.photo-trio figcaption { text-align: center; font-size: .86rem; color: var(--steel); margin-top: 8px; font-weight: 600; }

.photo-quad { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; }
@media (max-width: 480px) { .photo-quad { grid-template-columns: 1fr 1fr; } }
.photo-quad figure { margin: 0; }
.photo-quad figcaption { text-align: center; font-size: .86rem; color: var(--steel); margin-top: 8px; font-weight: 600; }

.spec-row .spec-thumb { width: 64px; height: 64px; border-radius: 5px; overflow: hidden; flex: none; border: 1px solid var(--line); }
.spec-row .spec-thumb img { width: 100%; height: 100%; object-fit: cover; }
.spec-row.with-thumb { display: grid; grid-template-columns: 64px 200px 1fr; gap: 18px; align-items: center; }
@media (max-width: 640px) { .spec-row.with-thumb { grid-template-columns: 48px 1fr; } .spec-row.with-thumb dt { grid-column: 2; } .spec-row.with-thumb dd { grid-column: 2; } .spec-row.with-thumb .spec-thumb { width:48px;height:48px; } }

.people-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
@media (max-width: 640px) { .people-grid { grid-template-columns: 1fr; } }
.people-card { text-align: center; }
.people-card .content-photo { aspect-ratio: 3/4; margin-bottom: 12px; }
.people-card strong { display: block; color: var(--blue); font-family: "Barlow Condensed", sans-serif; font-size: 1.15rem; }
.people-card span { color: var(--steel); font-size: .88rem; }

/* ---------- Route / process ---------- */
.route { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.route::before {
  content: ""; position: absolute; top: 21px; left: 6%; right: 6%; height: 2px;
  background-image: linear-gradient(90deg, var(--yellow) 0 14px, transparent 14px 24px);
  background-size: 24px 2px; background-repeat: repeat-x;
}
.route-stop { text-align: left; padding-right: 18px; position: relative; }
.route-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--yellow); color: var(--blue-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 1.2rem;
  margin-bottom: 18px; position: relative; z-index: 2;
}
@media (max-width: 860px) {
  .route { grid-template-columns: 1fr; gap: 30px; }
  .route::before { display: none; }
}

/* ---------- Value / spec lists ---------- */
.spec-list { border-top: 1px solid var(--line); }
.spec-row {
  display: grid; grid-template-columns: 220px 1fr; gap: 22px;
  padding: 20px 0; border-bottom: 1px solid var(--line);
}
.spec-row dt { font-family: "Barlow Condensed", sans-serif; font-weight: 700; color: var(--blue); font-size: 1.15rem; }
.spec-row dd { margin: 0; color: var(--steel); }
@media (max-width: 640px) { .spec-row { grid-template-columns: 1fr; gap: 4px; } }

.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.value-cell { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 28px; }
@media (max-width: 720px) { .value-grid { grid-template-columns: 1fr; } }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--yellow);
  color: var(--blue-deep);
  padding: 54px 0;
}
.cta-banner-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta-banner h2 { color: var(--blue-deep); margin: 0; }
.cta-banner p { color: #1B3A57; margin: 4px 0 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-banner .btn-primary { background: var(--blue); color: #fff; }
.cta-banner .btn-primary:hover { background: var(--blue-deep); }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: .86rem; color: #CFE2F0; margin-bottom: 14px; }
.breadcrumb a { color: #D9EAF7; }
.breadcrumb span { color: #fff; }

/* ---------- Page header (inner pages) ---------- */
.page-header { background: var(--blue); color: #fff; padding: 46px 0 58px; position: relative; }
.page-header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 8px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 34px, transparent 34px 60px);
}
.page-header h1 { color: #fff; margin: 0; }
.page-header p { color: #D9EAF7; max-width: 60ch; margin-top: 10px; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-list { list-style: none; margin: 0 0 28px; padding: 0; }
.info-list li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-list .ico { width: 24px; height: 24px; flex: none; stroke: var(--blue); margin-top: 2px; }
.info-list strong { display: block; color: var(--blue); font-size: .95rem; }
.info-list span, .info-list a { color: var(--steel); font-size: .95rem; }

form.quote { background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--blue); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 3px;
  font-family: inherit; font-size: .95rem; background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--yellow); outline-offset: 1px; border-color: var(--yellow);
}
.field textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: .82rem; color: var(--steel); margin-top: 10px; }

.map-frame { border: 1px solid var(--line); border-radius: 6px; overflow: hidden; margin-top: 24px; }
.map-frame iframe { width: 100%; height: 280px; border: 0; display: block; }

.gform-frame { border: 1px solid var(--line); border-radius: 6px; overflow: hidden; background: #fff; }
.gform-frame iframe { width: 100%; height: 1100px; border: 0; display: block; }
@media (max-width: 560px) { .gform-frame iframe { height: 1300px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--blue); color: #D9EAF7; padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 36px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; font-family: "Barlow Condensed", sans-serif; letter-spacing: .02em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #D9EAF7; font-size: .92rem; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .82rem; color: #B9CFE0;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  background: #1FAA57; color: #fff; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ---------- Landing page (ads) ---------- */
.lp-header {
  background: var(--surface); border-bottom: 3px solid var(--yellow);
  box-shadow: 0 2px 10px rgba(2,74,128,.08); padding: 14px 0;
}
.lp-header .wrap { display: flex; align-items: center; justify-content: space-between; }
.lp-hero { background: var(--blue); padding: 48px 0 60px; position: relative; overflow: hidden; }
.lp-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 8px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 34px, transparent 34px 60px);
}
.lp-hero-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .lp-hero-grid { grid-template-columns: 1fr; } }
.lp-hero h1 { color: #fff; }
.lp-hero .lead { color: #D9EAF7; font-size: 1.1rem; max-width: 48ch; }
.lp-badges { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 26px; }
.lp-badge {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: .82rem; font-weight: 600; padding: 6px 12px; border-radius: 20px;
}
.phone-frame {
  max-width: 300px; margin: 0 auto; border-radius: 22px; overflow: hidden;
  border: 6px solid #0B2540; box-shadow: 0 30px 70px -20px rgba(0,0,0,.55);
  background: #000; aspect-ratio: 9/16;
}
.phone-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }

.lp-form-section { background: var(--bg); padding: 64px 0; }
.lp-form-wrap {
  max-width: 720px; margin: 0 auto; background: var(--surface);
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  box-shadow: 0 20px 50px -25px rgba(2,74,128,.35);
}
.lp-form-head { background: var(--blue); color: #fff; padding: 24px 28px; text-align: center; }
.lp-form-head h2 { color: #fff; margin: 0 0 4px; }
.lp-form-head p { color: #D9EAF7; margin: 0; }
.lp-gform { }
.lp-gform iframe { width: 100%; height: 1000px; border: 0; display: block; }
@media (max-width: 560px) { .lp-gform iframe { height: 1200px; } }

.lp-why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.lp-why-cell { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 22px; }
.lp-why-cell strong { display: block; color: var(--blue); font-family: "Barlow Condensed", sans-serif; font-size: 1.2rem; margin-bottom: 6px; }
@media (max-width: 860px) { .lp-why { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .lp-why { grid-template-columns: 1fr; } }

.lp-footer { background: var(--blue); color: #D9EAF7; padding: 30px 0; text-align: center; font-size: .86rem; }
.lp-footer a { color: #fff; }

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--yellow); padding: 12px 16px; display: none;
  align-items: center; justify-content: center; gap: 12px;
  box-shadow: 0 -6px 20px rgba(0,0,0,.15);
}
.sticky-cta span { color: var(--blue-deep); font-weight: 700; font-size: .92rem; }
@media (max-width: 720px) { .sticky-cta { display: flex; } body { padding-bottom: 62px; } }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 800px) { .grid-2 { grid-template-columns: 1fr; } }
.badge {
  display: inline-block; background: rgba(250,195,17,.18); color: var(--blue);
  border: 1px solid rgba(217,166,0,.4); padding: 4px 10px; border-radius: 20px;
  font-size: .76rem; font-weight: 600; margin-bottom: 14px;
}
