:root {
  --navy: #071a45;
  --blue: #102f83;
  --blue-bright: #1746c7;
  --red: #ef1f2c;
  --cream: #f6f3ed;
  --ink: #101828;
  --muted: #5d6678;
  --line: #e1e5ed;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fff; font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
.section { max-width: 1180px; margin: 0 auto; padding-left: 28px; padding-right: 28px; }

.site-header {
  position: absolute; z-index: 20; top: 0; left: 50%; transform: translateX(-50%);
  width: min(1180px, calc(100% - 36px)); height: 92px; display: flex; align-items: center;
  justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.18); color: white;
}
.brand { width: 86px; height: 66px; border-radius: 14px; overflow: hidden; background: #293494; box-shadow: 0 10px 24px rgba(0,0,0,.2); }
.brand img { width: 100%; height: 100%; object-fit: cover; }
.nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 700; }
.nav > a:not(.nav-cta) { opacity: .84; transition: .2s ease; }
.nav > a:not(.nav-cta):hover { opacity: 1; color: #ffd5d9; }
.nav-cta { padding: 13px 20px; border: 1px solid rgba(255,255,255,.5); border-radius: 999px; transition: .2s ease; }
.nav-cta:hover { background: white; color: var(--navy); }
.menu-button { display: none; background: transparent; border: 0; width: 44px; height: 44px; padding: 10px; }
.menu-button span { display: block; height: 2px; margin: 5px 0; background: white; }

.hero { position: relative; min-height: 820px; overflow: hidden; color: white; background: var(--navy); }
.hero-background { position: absolute; inset: 0; z-index: 0; }
.hero-background img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(3,15,48,.96) 0%, rgba(5,24,67,.88) 34%, rgba(5,24,67,.54) 57%, rgba(4,16,44,.12) 78%, rgba(4,16,44,.08) 100%), linear-gradient(0deg, rgba(4,15,41,.62) 0%, transparent 36%); }
.hero-content { position: relative; z-index: 2; max-width: 1180px; min-height: 755px; padding: 150px 28px 80px; margin: auto; display: flex; align-items: center; }
.hero-copy { width: min(650px, 58%); }
.eyebrow, .kicker { margin: 0 0 18px; color: var(--red); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 900; }
.eyebrow { color: #ffb8bd; }
.eyebrow span { color: var(--red); margin-right: 9px; }
.hero h1 { margin: 0; max-width: 680px; font-size: clamp(54px, 5.9vw, 82px); line-height: .99; letter-spacing: -.058em; font-weight: 800; }
.hero h1 em { display: block; color: #ff4250; font-family: Georgia, serif; font-weight: 500; }
.hero-subtitle { max-width: 585px; margin: 27px 0 0; font-size: 18px; line-height: 1.7; color: #e2e9f8; text-shadow: 0 2px 14px rgba(1,9,28,.4); }
.hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.button { min-height: 52px; padding: 0 23px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; font-size: 14px; font-weight: 800; transition: .2s ease; }
.button-primary { background: var(--red); color: white; box-shadow: 0 12px 25px rgba(239,31,44,.28); }
.button-primary:hover { transform: translateY(-2px); background: #ff3440; }
.button-ghost { color: white; border: 1px solid rgba(255,255,255,.3); }
.button-ghost:hover { background: rgba(255,255,255,.09); }
.trust-row { display: flex; gap: 0; margin-top: 44px; }
.trust-row > div { display: flex; flex-direction: column; padding-right: 26px; margin-right: 26px; border-right: 1px solid rgba(255,255,255,.25); }
.trust-row > div:last-child { border: 0; }
.trust-row strong { font-size: 18px; }
.trust-row span { margin-top: 5px; color: #c1cce3; font-size: 12px; }
.hero-strip { position: absolute; z-index: 3; left: 0; bottom: 0; width: 100%; height: 66px; display: flex; align-items: center; justify-content: center; gap: 32px; background: var(--red); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; }
.hero-strip i { color: #ffbec3; }

.trips-section { padding-top: 104px; padding-bottom: 118px; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.section-heading h2 { max-width: 710px; margin: 0; color: var(--navy); font-size: clamp(38px, 4vw, 58px); line-height: 1.08; letter-spacing: -.045em; }
.section-heading h2 span { color: var(--red); font-family: Georgia, serif; font-style: italic; font-weight: 500; }
.split-heading > p { max-width: 390px; margin: 0 0 5px; color: var(--muted); line-height: 1.7; }
.filters { display: flex; gap: 10px; margin: 42px 0 30px; }
.filters button { cursor: pointer; border: 1px solid var(--line); border-radius: 999px; padding: 11px 19px; background: white; color: var(--muted); font-weight: 700; font-size: 13px; }
.filters button.active { border-color: var(--blue); background: var(--blue); color: white; }
.trip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trip-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: 0 10px 35px rgba(15,33,75,.07); transition: transform .25s ease, box-shadow .25s ease; }
.trip-card:hover { transform: translateY(-7px); box-shadow: 0 22px 50px rgba(15,33,75,.14); }
.trip-image { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--navy); }
.trip-image::after { display: none; }
.trip-image img { width: 100%; height: 100%; object-fit: contain; object-position: center; transition: transform .5s ease; }
.trip-card:hover .trip-image img { transform: scale(1.035); }
.category-badge, .date-badge { position: absolute; z-index: 2; top: 16px; border-radius: 999px; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.category-badge { left: 16px; padding: 8px 12px; color: var(--navy); background: rgba(255,255,255,.93); }
.date-badge { right: 16px; padding: 8px 11px; color: white; background: rgba(7,26,69,.82); backdrop-filter: blur(5px); }
.trip-content { padding: 23px; }
.trip-title-row { display: flex; justify-content: space-between; align-items: center; }
.trip-title-row p { margin: 0 0 4px; color: var(--red); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.trip-title-row h3 { margin: 0; color: var(--navy); font-size: 24px; letter-spacing: -.03em; }
.mini-arrow { width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--blue); }
.trip-content ul { min-height: 85px; list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 8px; color: #536073; font-size: 13px; }
.trip-content li { display: flex; gap: 9px; }
.trip-content li span { color: var(--red); font-weight: 900; }
.price-row { display: flex; align-items: end; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--line); }
.price-row > div { display: grid; grid-template-columns: auto auto; column-gap: 7px; align-items: baseline; }
.price-row small { grid-column: 1 / -1; color: var(--muted); font-size: 10px; }
.price-row strong { color: var(--navy); font-size: 24px; letter-spacing: -.04em; }
.price-row span { color: var(--muted); font-size: 10px; }
.price-row a { padding: 11px 16px; border-radius: 10px; background: var(--red); color: white; font-size: 12px; font-weight: 900; }
.installment { margin: 12px 0 0; color: #7a8495; font-size: 10px; }

.benefits { overflow: hidden; background: var(--navy); color: white; }
.benefits-inner { position: relative; padding-top: 105px; padding-bottom: 110px; }
.benefits-inner::after { content: "M&M"; position: absolute; right: -20px; top: 8px; font-weight: 900; font-size: 180px; letter-spacing: -.09em; color: rgba(255,255,255,.035); }
.section-heading.light { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 80px; position: relative; z-index: 1; }
.section-heading.light .kicker { grid-column: 1 / -1; margin-bottom: -58px; color: #ff8d95; }
.section-heading.light h2 { color: white; }
.section-heading.light > p:last-child { color: #aebbd7; line-height: 1.75; margin: 0; }
.benefit-grid { position: relative; z-index: 1; margin-top: 62px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.16); }
.benefit-grid article { position: relative; min-height: 260px; padding: 32px 25px 20px; border-right: 1px solid rgba(255,255,255,.16); }
.benefit-grid article:last-child { border-right: 0; }
.benefit-grid article > span { position: absolute; top: 18px; right: 18px; color: rgba(255,255,255,.27); font-size: 11px; }
.benefit-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--red); font-size: 23px; }
.benefit-grid h3 { margin: 38px 0 12px; font-size: 18px; }
.benefit-grid p { margin: 0; color: #aebbd7; font-size: 13px; line-height: 1.7; }

.about { padding-top: 120px; padding-bottom: 120px; display: grid; grid-template-columns: .92fr 1fr; gap: 100px; align-items: center; }
.about-images { position: relative; min-height: 555px; }
.about-main { position: absolute; left: 0; top: 0; width: 91%; height: 430px; overflow: hidden; border-radius: 28px 170px 28px 28px; background: #e6ebf4; }
.about-main img { width: 100%; height: 100%; object-fit: cover; object-position: 42% center; }
.about-logo { position: absolute; right: 0; bottom: 10px; width: 49%; height: 205px; padding: 16px; overflow: hidden; border: 8px solid white; border-radius: 25px; background: white; box-shadow: 0 22px 50px rgba(11,36,94,.16); }
.about-logo img { width: 100%; height: 100%; object-fit: contain; }
.experience-badge { position: absolute; left: 22px; bottom: 15px; width: 130px; height: 130px; border-radius: 50%; display: grid; place-content: center; text-align: center; background: var(--red); color: white; box-shadow: 0 15px 35px rgba(239,31,44,.28); }
.experience-badge strong { font-size: 30px; }
.experience-badge span { max-width: 80px; font-size: 10px; line-height: 1.3; }
.about-copy h2 { margin: 0; color: var(--navy); font-size: clamp(38px, 4vw, 55px); line-height: 1.08; letter-spacing: -.045em; }
.about-copy h2 span { color: var(--red); font-family: Georgia, serif; font-weight: 500; font-style: italic; }
.about-copy > p:not(.kicker) { margin: 26px 0; color: var(--muted); line-height: 1.8; }
.about-copy blockquote { margin: 26px 0; padding: 20px 24px; border-left: 4px solid var(--red); background: var(--cream); color: var(--navy); font: italic 22px/1.4 Georgia, serif; }
.about-stats { display: flex; gap: 30px; padding: 23px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-stats > div { display: flex; flex-direction: column; gap: 4px; }
.about-stats strong { color: var(--blue); font-size: 25px; }
.about-stats span { color: var(--muted); font-size: 11px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 28px; color: var(--blue); font-weight: 900; font-size: 13px; }
.text-link span { color: var(--red); }

.cta-section { margin-bottom: 90px; padding: 55px 58px; border-radius: 30px; display: grid; grid-template-columns: 120px 1fr auto; gap: 40px; align-items: center; color: white; background: linear-gradient(110deg, #0c2b7c, #071a45); box-shadow: 0 25px 60px rgba(8,31,88,.22); }
.cta-logo { width: 116px; height: 116px; overflow: hidden; border-radius: 22px; background: #30369a; }
.cta-logo img { width: 100%; height: 100%; object-fit: cover; }
.cta-copy .kicker { color: #ff9aa1; margin-bottom: 10px; }
.cta-copy h2 { margin: 0; max-width: 560px; font-size: 35px; line-height: 1.09; letter-spacing: -.035em; }
.cta-copy h2 span { color: #ff626c; font-family: Georgia, serif; font-style: italic; }
.cta-copy > p:last-child { max-width: 530px; margin: 14px 0 0; color: #b9c5e2; line-height: 1.6; font-size: 13px; }
.cta-actions { display: flex; flex-direction: column; align-items: stretch; gap: 13px; }
.cta-actions .button { white-space: nowrap; }
.phone-secondary { text-align: center; font-size: 12px; color: #dce4f5; }

footer { color: white; background: #050f28; }
.footer-main { padding-top: 66px; padding-bottom: 55px; display: grid; grid-template-columns: 1.5fr .6fr .75fr; gap: 70px; }
.footer-brand img { width: 86px; height: 66px; object-fit: cover; border-radius: 12px; }
.footer-brand p { max-width: 350px; margin: 20px 0 0; color: #93a1c1; line-height: 1.7; font-size: 13px; }
.footer-main h3 { margin: 0 0 20px; color: #ff737d; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-main a { color: #c2cbe0; font-size: 13px; }
.footer-main a:hover { color: white; }
.footer-bottom { padding-top: 20px; padding-bottom: 20px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.11); color: #7787ab; font-size: 11px; }
.whatsapp-float { position: fixed; z-index: 30; right: 22px; bottom: 22px; min-height: 52px; padding: 8px 18px 8px 9px; display: flex; align-items: center; gap: 9px; border-radius: 999px; background: #21c567; color: white; box-shadow: 0 15px 35px rgba(1,80,35,.28); font-size: 12px; }
.whatsapp-float span { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 50%; border: 2px solid white; font-size: 21px; }

@media (max-width: 1000px) {
  .hero-copy { width: 63%; }
  .hero h1 { font-size: 58px; }
  .trip-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid article:nth-child(2) { border-right: 0; }
  .benefit-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .about { gap: 55px; }
  .cta-section { grid-template-columns: 95px 1fr; }
  .cta-logo { width: 95px; height: 95px; }
  .cta-actions { grid-column: 2; flex-direction: row; align-items: center; }
}

@media (max-width: 760px) {
  .section { padding-left: 20px; padding-right: 20px; }
  .site-header { height: 76px; width: calc(100% - 34px); }
  .brand { width: 66px; height: 51px; border-radius: 9px; }
  .menu-button { display: block; }
  .nav { position: absolute; top: 68px; left: 0; right: 0; padding: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; border-radius: 16px; background: white; color: var(--navy); box-shadow: 0 15px 35px rgba(0,0,0,.25); }
  .nav.open { display: flex; }
  .nav a { padding: 13px 10px; }
  .nav-cta { margin-top: 8px; text-align: center; border: 0; background: var(--red); color: white; }
  .hero { min-height: 850px; }
  .hero-background img { object-position: center center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(3,15,48,.92) 0%, rgba(4,18,51,.75) 40%, rgba(4,18,51,.22) 68%, rgba(3,14,42,.62) 100%); }
  .hero-content { min-height: 774px; padding: 116px 20px 95px; display: block; }
  .hero-copy { width: 100%; }
  .hero h1 { max-width: 560px; font-size: clamp(43px, 12vw, 58px); }
  .hero-subtitle { max-width: 520px; font-size: 15px; line-height: 1.6; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .trust-row { margin-top: 28px; }
  .trust-row > div { padding-right: 16px; margin-right: 16px; }
  .hero-strip { height: 76px; padding: 0 18px; justify-content: flex-start; overflow: hidden; gap: 18px; white-space: nowrap; font-size: 10px; }
  .hero-strip span:nth-of-type(n+3), .hero-strip i:nth-of-type(n+3) { display: none; }
  .trips-section { padding-top: 76px; padding-bottom: 80px; }
  .split-heading, .section-heading.light { display: block; }
  .split-heading > p { margin-top: 20px; }
  .section-heading h2 { font-size: 41px; }
  .filters { margin: 28px -20px 24px; padding: 0 20px; overflow-x: auto; }
  .filters button { flex: 0 0 auto; }
  .trip-grid { grid-template-columns: 1fr; }
  .trip-image { aspect-ratio: 4 / 5; }
  .section-heading.light .kicker { margin-bottom: 18px; }
  .section-heading.light > p:last-child { margin-top: 22px; }
  .benefits-inner { padding-top: 78px; padding-bottom: 80px; }
  .benefit-grid { grid-template-columns: 1fr; margin-top: 42px; }
  .benefit-grid article, .benefit-grid article:nth-child(2) { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .benefit-grid article:last-child { border-bottom: 0; }
  .about { padding-top: 80px; padding-bottom: 80px; grid-template-columns: 1fr; gap: 48px; }
  .about-images { min-height: 495px; }
  .about-main { width: 100%; height: 350px; border-radius: 24px 100px 24px 24px; }
  .about-logo { width: 52%; height: 165px; }
  .experience-badge { left: 5px; width: 110px; height: 110px; }
  .about-stats { gap: 16px; justify-content: space-between; }
  .about-stats strong { font-size: 21px; }
  .cta-section { margin: 0 14px 70px; padding: 38px 24px; grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .cta-logo { margin: auto; }
  .cta-actions { grid-column: 1; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { gap: 18px; flex-direction: column; }
  .whatsapp-float { right: 14px; bottom: 14px; padding-right: 9px; }
  .whatsapp-float b { display: none; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 43px; }
  .trust-row { flex-direction: column; gap: 14px; }
  .trust-row > div { border: 0; }
  .trip-image { aspect-ratio: 4 / 5; }
}
