:root {
  --brand-blue: #1f4078;
  --brand-blue-dark: #1d3d73;
  --accent: #009b9f;
  --lime: #d4ec43;
  --page: #f3f6f9;
  --text: #10151f;
  --muted: #333845;
  --border: #dbe2eb;
  --shadow: 0 14px 28px rgba(24, 40, 64, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: white;
  font-family: Inter, Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

.promo-bar {
  display: grid;
  min-height: 38px;
  place-items: center;
  background: var(--brand-blue);
  color: white;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 102px;
  padding: 0 clamp(24px, 7.6vw, 128px);
  background: white;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 70px;
  height: auto;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.quote-btn,
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.quote-btn {
  min-width: 216px;
  border: 1px solid #e0e4e9;
  background: white;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.03);
}

.whatsapp-menu {
  position: relative;
}

.whatsapp-btn {
  gap: 30px;
  min-width: 178px;
  border: 0;
  background: var(--brand-blue);
  color: white;
  cursor: pointer;
}

.whatsapp-menu:hover .whatsapp-btn svg,
.whatsapp-menu:focus-within .whatsapp-btn svg,
.whatsapp-menu.is-open .whatsapp-btn svg {
  transform: rotate(180deg);
}

.whatsapp-btn svg,
.floating-actions svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.whatsapp-btn svg {
  transition: transform 180ms ease;
}

.whatsapp-options {
  position: absolute;
  top: calc(100% + 2px);
  right: 12px;
  z-index: 30;
  display: grid;
  min-width: 248px;
  padding: 14px 0;
  border: 1px solid #cfd6df;
  border-radius: 6px;
  background: white;
  color: #30343b;
  box-shadow: 0 16px 32px rgba(15, 27, 48, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.whatsapp-menu:hover .whatsapp-options,
.whatsapp-menu:focus-within .whatsapp-options,
.whatsapp-menu.is-open .whatsapp-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.whatsapp-options a {
  display: flex;
  min-height: 60px;
  align-items: center;
  padding: 0 18px;
  font-size: 22px;
  font-weight: 500;
}

.whatsapp-options a:hover,
.whatsapp-options a:focus-visible {
  background: #f2f6fb;
  outline: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #285a94;
}

.hero-slider {
  position: relative;
  aspect-ratio: 1513 / 602;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 650ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dots button.is-active {
  width: 24px;
  background: white;
}

.hero > img {
  display: block;
  width: 100%;
  height: auto;
}

.trusted {
  background: white;
}

.trusted-inner {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: center;
  max-width: 1660px;
  min-height: 244px;
  margin: 0 auto;
  padding: 28px clamp(32px, 7.5vw, 120px);
  gap: 38px;
}

.trusted h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.partner-window {
  overflow: hidden;
  min-width: 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.partner-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 48px;
  animation: logo-scroll 34s linear infinite;
}

.partner-window:hover .partner-track {
  animation-play-state: paused;
}

.partner-track img {
  display: block;
  width: 160px;
  height: 104px;
  flex: 0 0 auto;
  object-fit: contain;
  padding: 20px 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 24px));
  }
}

.promotions {
  background: var(--page);
  padding: 56px 0 59px;
}

.section-wrap {
  max-width: 1660px;
  margin: 0 auto;
  padding: 0 clamp(30px, 6vw, 114px);
}

.promotions h1 {
  margin: 0 0 27px;
  color: var(--brand-blue);
  font-size: clamp(34px, 3.2vw, 51px);
  line-height: 1.08;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 31px;
}

.hotel-card {
  overflow: hidden;
  border-radius: 19px;
  background: white;
  box-shadow: var(--shadow);
}

.hotel-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 385 / 230;
  object-fit: cover;
}

.hotel-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 276px;
  padding: 25px 28px 26px;
  text-align: center;
}

.hotel-content h2 {
  margin: 0 0 12px;
  color: #143a70;
  font-size: 23px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.hotel-content p {
  margin: 0 0 9px;
  color: #171b26;
  font-size: 19px;
  line-height: 1.1;
  font-weight: 500;
}

.hotel-content strong {
  margin: 1px 0 28px;
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
}

.book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 62px;
  margin-top: auto;
  border: 0;
  border-radius: 999px;
  background: var(--brand-blue);
  color: white;
  font-size: 19px;
  font-weight: 800;
  cursor: pointer;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 114px;
  padding: 0 clamp(24px, 10vw, 190px);
  background: var(--brand-blue);
  color: white;
}

.site-footer img {
  width: 64px;
  height: auto;
}

.site-footer p {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.mobile-nav-btn,
.bottom-whatsapp-menu {
  display: none;
}

.claim-btn,
.call-btn {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  border: 0;
  font-size: 19px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(22, 38, 64, 0.16);
  cursor: pointer;
}

.claim-btn {
  min-width: 210px;
  background: var(--lime);
  color: #121b22;
}

.call-btn {
  min-width: 214px;
  background: #31bdc9;
  color: white;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.modal.is-open {
  display: flex;
}

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

.claim-dialog,
.schedule-dialog {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: min(100%, 1160px);
  min-height: 610px;
  border: 1px solid #c9d1dc;
  border-radius: 10px;
  background: white;
  box-shadow: 0 26px 70px rgba(7, 23, 46, 0.28);
}

.claim-dialog {
  display: grid;
  grid-template-columns: 1fr 0.98fr;
}

.schedule-dialog {
  width: min(100%, 590px);
  min-height: auto;
  padding: 50px 34px 36px;
}

.banner-dialog {
  width: min(100%, 520px);
  max-height: calc(100svh - 28px);
  padding: 30px 28px 24px;
}

.banner-form {
  gap: 12px;
  padding: 0;
}

.banner-form .form-intro {
  margin-bottom: 0;
}

.banner-form .selected-hotel {
  padding: 11px 14px;
}

.banner-form .selected-hotel strong {
  font-size: 18px;
}

.banner-form input,
.banner-form select {
  min-height: 43px;
  font-size: 16px;
}

.banner-form .submit-btn {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  margin-top: 2px;
  font-size: 18px;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 24px;
  z-index: 2;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #050b16;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.claim-art {
  display: grid;
  min-height: 610px;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.7) 0 18%, transparent 36%),
    linear-gradient(180deg, #8fdde0 0%, #d6f3ef 100%);
}

.claim-number {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #149a9a;
  text-shadow:
    -3px -3px 0 white,
    3px -3px 0 white,
    -3px 3px 0 white,
    3px 3px 0 white,
    0 8px 0 rgba(11, 73, 77, 0.35);
}

.claim-number span {
  font-size: clamp(86px, 13vw, 188px);
  line-height: 0.8;
  font-weight: 800;
}

.claim-number b {
  position: absolute;
  right: 8%;
  bottom: 22%;
  padding: 6px 14px;
  border-radius: 8px;
  background: var(--brand-blue);
  color: white;
  font-size: clamp(22px, 3.4vw, 48px);
  line-height: 1;
  text-shadow: none;
}

.lead-form {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 64px 20px;
}

.claim-dialog .lead-form {
  padding: 64px 20px 64px;
}

.lead-form h2 {
  margin: 0;
  color: var(--brand-blue);
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
}

.claim-dialog .lead-form h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.form-intro {
  margin: -4px 0 8px;
  color: #4d5562;
  font-size: 16px;
  line-height: 1.45;
}

.selected-hotel {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid #dbe2eb;
  border-radius: 10px;
  background: #f4f8fb;
}

.selected-hotel span {
  color: #657083;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.selected-hotel strong {
  color: var(--brand-blue);
  font-size: 20px;
  line-height: 1.2;
}

.claim-dialog .form-intro {
  display: none;
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 47px;
  border: 1px solid #d5dce5;
  border-radius: 7px;
  background: white;
  color: #252a33;
  font-size: 22px;
  outline: none;
  padding: 0 15px;
}

.lead-form select {
  appearance: auto;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(31, 64, 120, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
}

.submit-btn {
  justify-self: end;
  min-width: 260px;
  min-height: 65px;
  margin-top: 12px;
  border: 0;
  border-radius: 12px;
  background: var(--brand-blue);
  color: white;
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
}

.submit-btn:disabled {
  cursor: progress;
  opacity: 0.74;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: #127777;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.form-message.is-error {
  color: #b42318;
}

@media (max-width: 1100px) {
  .site-header {
    min-height: 112px;
  }

  .hotel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trusted-inner {
    grid-template-columns: 1fr;
    min-height: 190px;
    gap: 24px;
  }

}

@media (max-width: 900px) {
  .promo-bar {
    min-height: auto;
    padding: 9px 16px;
    font-size: 11px;
    line-height: 1.25;
  }

  .site-header {
    min-height: auto;
    padding: 14px 16px 16px;
    gap: 13px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand img {
    width: 56px;
  }

  .header-actions {
    display: none;
  }

  .quote-btn,
  .whatsapp-btn {
    min-height: 42px;
    min-width: 0;
    padding: 0 14px;
    font-size: 12px;
  }

  .quote-btn {
    flex: 1 1 auto;
    max-width: 230px;
  }

  .whatsapp-btn {
    width: 48px;
    flex: 0 0 48px;
    gap: 0;
    padding: 0;
  }

  .whatsapp-btn span {
    display: none;
  }

  .whatsapp-options {
    right: 0;
    min-width: min(248px, calc(100vw - 32px));
  }

  .whatsapp-options a {
    min-height: 52px;
    font-size: 18px;
  }

  .hero img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .hero-slider {
    aspect-ratio: 1513 / 602;
    height: auto;
    background: #eaf8fb;
  }

  .hero-dots {
    bottom: 9px;
  }

  .hero-dots button {
    width: 8px;
    height: 8px;
  }

  .hero-dots button.is-active {
    width: 20px;
  }

  .trusted-inner {
    min-height: auto;
    padding: 26px 16px 30px;
    gap: 20px;
    overflow: hidden;
  }

  .trusted h2 {
    font-size: 26px;
  }

  .partner-track {
    gap: 20px;
    animation-duration: 30s;
  }

  .partner-track img {
    width: 112px;
    height: 70px;
    padding: 14px 18px;
  }

  .promotions {
    padding: 34px 0 78px;
  }

  .section-wrap {
    padding: 0 16px;
  }

  .promotions h1 {
    max-width: 330px;
    margin: 0 auto 22px;
    font-size: 28px;
  }

  .hotel-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hotel-card {
    border-radius: 14px;
  }

  .hotel-content {
    min-height: auto;
    padding: 20px 24px 22px;
  }

  .hotel-content h2 {
    font-size: 21px;
  }

  .hotel-content p {
    font-size: 16px;
  }

  .book-btn {
    min-height: 52px;
    font-size: 16px;
  }

  .site-footer {
    min-height: auto;
    padding: 18px 18px 104px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .site-footer p {
    font-size: 15px;
  }

  .floating-actions {
    left: 50%;
    right: auto;
    bottom: 14px;
    width: min(326px, calc(100vw - 28px));
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    justify-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid rgba(31, 64, 120, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 32px rgba(10, 28, 54, 0.22);
    backdrop-filter: blur(14px);
    transform: translateX(-50%);
  }

  .floating-actions > * {
    min-width: 0;
    display: grid;
    place-items: center;
  }

  .mobile-nav-btn,
  .bottom-whatsapp-menu {
    display: block;
  }

  .bottom-whatsapp-menu {
    position: relative;
    min-width: 0;
  }

  .bottom-whatsapp-options {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 13px);
    z-index: 40;
    display: grid;
    min-width: 190px;
    overflow: hidden;
    border: 1px solid #cfd6df;
    border-radius: 10px;
    background: white;
    box-shadow: 0 18px 34px rgba(15, 27, 48, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .bottom-whatsapp-menu:hover .bottom-whatsapp-options,
  .bottom-whatsapp-menu:focus-within .bottom-whatsapp-options,
  .bottom-whatsapp-menu.is-open .bottom-whatsapp-options {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .bottom-whatsapp-options a {
    padding: 14px 16px;
    color: #252a33;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
  }

  .bottom-whatsapp-options a + a {
    border-top: 1px solid #edf1f5;
  }

  .bottom-whatsapp-options a:hover,
  .bottom-whatsapp-options a:focus-visible {
    background: #f2f6fb;
    outline: none;
  }

  .mobile-nav-btn,
  .claim-btn,
  .call-btn {
    display: inline-flex;
    width: 52px;
    height: 52px;
    min-height: 0;
    min-width: 0;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    font-size: 0;
    font-weight: 800;
    box-shadow: none;
    transform-origin: center;
    will-change: transform;
  }

  .mobile-nav-btn.is-attention,
  .claim-btn.is-attention,
  .call-btn.is-attention {
    animation: dock-attention 1150ms ease both;
  }

  .mobile-nav-btn svg,
  .claim-btn svg,
  .call-btn svg {
    width: 23px;
    height: 23px;
  }

  .mobile-nav-btn span,
  .claim-btn span,
  .call-btn span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .quote-nav-btn {
    background: var(--brand-blue);
    color: white;
  }

  .whatsapp-nav-btn {
    background: #1f8f55;
    color: white;
    cursor: pointer;
  }

  .claim-btn {
    background: var(--lime);
    color: #121b22;
  }

  .call-btn {
    background: #31bdc9;
    color: white;
  }

  .modal {
    align-items: flex-start;
    padding: 18px 12px 86px;
    overflow-y: auto;
  }

  .banner-modal.is-open {
    align-items: center;
    padding: 10px;
    overflow: hidden;
  }

  .claim-dialog,
  .schedule-dialog {
    width: 100%;
    min-height: auto;
    border-radius: 10px;
  }

  .claim-dialog {
    grid-template-columns: 1fr;
  }

  .claim-art {
    min-height: 220px;
  }

  .claim-number span {
    font-size: 96px;
  }

  .claim-number b {
    font-size: 24px;
  }

  .lead-form,
  .claim-dialog .lead-form,
  .schedule-dialog {
    padding: 48px 18px 24px;
  }

  .banner-dialog {
    max-height: calc(100svh - 20px);
    padding: 34px 16px 16px;
  }

  .banner-form {
    gap: 10px;
    padding: 0;
  }

  .lead-form h2 {
    font-size: 25px;
  }

  .lead-form input,
  .lead-form select {
    min-height: 48px;
    font-size: 16px;
  }

  .banner-form input,
  .banner-form select {
    min-height: 42px;
    font-size: 15px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .submit-btn {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    border-radius: 10px;
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-track {
    animation: none;
  }

  .mobile-nav-btn.is-attention,
  .claim-btn.is-attention,
  .call-btn.is-attention {
    animation: none;
  }
}

@keyframes dock-attention {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: none;
  }

  18% {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 12px 22px rgba(20, 43, 80, 0.24);
  }

  36% {
    transform: translateY(0) scale(0.98);
  }

  54% {
    transform: translateY(-4px) scale(1.04);
  }

  72% {
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 420px) {
  .floating-actions {
    width: min(306px, calc(100vw - 24px));
    gap: 10px;
    padding: 9px 11px;
  }

  .quote-btn {
    max-width: none;
  }

  .trusted h2 {
    font-size: 24px;
  }

  .promotions h1 {
    max-width: 300px;
    font-size: 27px;
  }
}

@media (max-width: 600px) {
  .floating-actions {
    width: min(306px, calc(100vw - 24px));
    gap: 10px;
    padding: 9px 11px;
  }
}

@media (max-width: 360px) {
  .floating-actions {
    width: min(286px, calc(100vw - 18px));
    gap: 8px;
    padding: 8px 9px;
  }

  .mobile-nav-btn,
  .claim-btn,
  .call-btn {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 340px) {
  .header-actions {
    flex-direction: column;
  }

  .quote-btn,
  .whatsapp-btn {
    width: 100%;
    max-width: none;
  }

  .whatsapp-btn span {
    display: inline;
  }
}
