:root {
  color-scheme: dark;
  --bg: #420465;
  --bg-alt: #420465;
  --bg-dark: #420465;
  --accent-blue: #8D0DE3;
  --accent-blue-soft: #8D0DE3;
  --accent-green: #C9E2BF;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.85);
  --border: rgba(255, 255, 255, 0.12);
  --card: rgba(66, 4, 101, 0.78);
}

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

body {
  margin: 0;
  font-family: "Nu Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

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

.page {
  min-height: 100vh;
}

.container {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(66, 4, 101, 0.88) 0%, rgba(66, 4, 101, 0.58) 50%, rgba(66, 4, 101, 0.72) 100%),
    radial-gradient(circle at left top, rgba(141, 13, 227, 0.45), transparent 28%),
    radial-gradient(circle at right, rgba(201, 226, 191, 0.14), transparent 30%),
    linear-gradient(rgba(66, 4, 101, 0.7), rgba(66, 4, 101, 0.7)),
    url("https://static.loungecentenario.com.br/files/img/foto-bg.jpg")
      center/cover no-repeat;
}

.hero__content {
  padding: 32px 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero__header {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero__header {
  margin-bottom: 40px;
}

.hero__logo {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.hero__grid {
  display: grid;
  gap: 40px;
  align-items: center;
  flex: 1;
}

.hero__title {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero__title-line {
  display: block;
}

.hero__title-line--desktop,
.hero__title-gradient--desktop {
  display: none;
}

.hero__title-gradient {
  display: block;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-blue-soft), var(--accent-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  margin: 20px 0 0;
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.hero__cta {
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 12px;
  border: 1px solid rgba(141, 13, 227, 0.6);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.025em;
  font-size: 0.875rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: 0.2s ease;
}

.btn--primary {
  background: #8D0DE3;
}

.btn:hover {
  filter: brightness(1.08);
}

.form-card {
  width: min(380px, 100%);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--card);
  padding: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.form-card__title {
  margin: 0;
  text-align: center;
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--accent-green);
}

.lead-form {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.lead-form__input {
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  padding: 0 16px;
  color: var(--text);
  font-size: 0.875rem;
  outline: none;
  transition: 0.2s ease;
}

.lead-form__input::placeholder {
  color: rgba(203, 213, 225, 0.8);
}

.lead-form__input:focus {
  border-color: var(--accent-blue);
  background: rgba(255, 255, 255, 0.1);
}

.lead-form__button {
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(201, 226, 191, 0.6);
  background: rgba(201, 226, 191, 0.7);
  color: #420465;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-top: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: 0.2s ease;
}

.lead-form__button:hover {
  filter: brightness(1.08);
}

.lead-form__button[disabled] {
  cursor: not-allowed;
  opacity: 0.7;
}

.lead-form__seats {
  font-size: 0.85rem;
  color: rgba(220, 230, 255, 0.85);
  min-height: 20px;
}

.lead-form__seats.is-empty {
  color: rgba(220, 230, 255, 0.6);
}

.lead-form__feedback {
  min-height: 18px;
  font-size: 0.85rem;
}

.lead-form__feedback.is-success {
  color: #C9E2BF;
}

.lead-form__feedback.is-error {
  color: #ffb2b2;
}

.benefits-grid {
  margin-top: 40px;
  display: grid;
  gap: 16px;
}

.benefit-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  min-height: 150px;
  padding: 24px 20px;
  text-align: center;
  background: linear-gradient(180deg, rgba(84, 12, 130, 0.88), rgba(66, 4, 101, 0.88));
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.benefit-card__icon {
  margin: 0 auto 16px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(141, 13, 227, 0.4);
  background: rgba(141, 13, 227, 0.1);
  color: var(--accent-green);
  display: grid;
  place-items: center;
}

.benefit-card__icon svg {
  width: 24px;
  height: 24px;
}

.benefit-card h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}

.gallery {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 80px 0;
  background: radial-gradient(circle at top, rgba(141, 13, 227, 0.16), transparent 52%);
}

.section-title {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 40px;
}

.section-title h2 {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-title__light {
  display: block;
  color: var(--text);
}

.section-title__gradient {
  display: block;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-blue-soft), var(--accent-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gallery-grid {
  margin-top: 56px;
  display: grid;
  gap: 20px;
}

.gallery-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 256px;
}

.gallery-card img {
  width: 100%;
  height: 256px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 7, 15, 0.9), rgba(2, 7, 15, 0.2), transparent);
}

.gallery-card__content {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 20px;
}

.gallery-card__content p {
  margin: 0;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-green);
  font-weight: 500;
}

.gallery-card__content h3 {
  margin: 10px 0 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.testimonials {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bg-alt);
  padding: 80px 0;
}

.testimonials__grid {
  display: grid;
  gap: 40px;
}

.testimonials__title {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 900;
}

.testimonials__list {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.testimonial-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  padding: 16px;
}

.testimonial-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.75;
}

.testimonials__form {
  display: flex;
  justify-content: flex-start;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bg-dark);
  padding: 48px 0;
}

.footer .container {
  display: grid;
  gap: 20px;
}

.footer__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer__item svg {
  width: 20px;
  height: 20px;
  color: var(--accent-green);
}

.footer__logos {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
}

.footer__logos img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.footer__logos .footer__logo--allianz {
  height: 64px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }

  .hero__logo {
    height: 80px;
  }

  .hero__title {
    font-size: 3.75rem;
  }

  .hero__title-line--mobile {
    display: none;
  }

  .hero__title-line--desktop,
  .hero__title-gradient--desktop {
    display: block;
  }

  .hero__subtitle {
    font-size: 1.35rem;
    line-height: 2;
  }

  .section-title h2 {
    font-size: 3.75rem;
  }

  .gallery-grid {
    margin-top: 64px;
  }

  .form-card {
    padding: 24px;
  }

  .testimonial-card {
    padding: 16px 20px;
  }

  .testimonial-card p {
    font-size: 1.125rem;
  }

  .testimonials__title {
    font-size: 3rem;
  }
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 999;
}

.whatsapp-float {
  position: fixed;
  right: 50px;
  top: 90%;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
  z-index: 998;
  transform: translateY(-50%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(calc(-50% - 2px));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
}

.modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 20, 0.8);
  backdrop-filter: blur(6px);
}

.modal__dialog {
  position: relative;
  width: min(1200px, 96vw);
  max-height: 94vh;
  overflow: hidden;
  background: #420465;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.modal__header {
  padding: 18px 20px 8px;
  display: grid;
  gap: 10px;
}

.modal__header h2 {
  padding-block: 10px;
  margin: 0;
  font-size: 1.6rem;
  font-weight: 800;
}

.modal__header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.modal__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  padding: 0 20px 12px;
}

.modal__label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.modal__select {
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(141, 13, 227, 0.6);
  background: rgba(141, 13, 227, 0.18);
  color: #fff;
  padding: 0 12px;
  font-size: 0.95rem;
}

.modal__select:focus {
  outline: none;
  border-color: var(--accent-green);
  background: rgba(141, 13, 227, 0.28);
}

.modal__select option {
  color: #420465;
  background: #ffffff;
}

.modal__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.modal__pinch-hint {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
}

.modal__pinch-hint img {
  width: 40px;
  height: auto;
  opacity: 1;
  filter: brightness(0) invert(1);
}

.modal__content {
  padding: 0 16px 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 12px;
  align-items: stretch;
  overflow: hidden;
  min-height: 0;
  height: 100%;
}

.modal__footer {
  padding: 10px 20px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.modal__feedback {
  font-size: 0.9rem;
  color: #ffb2b2;
  min-height: 18px;
}

.seat-grid {
  overflow: hidden;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(4, 11, 24, 0.55);
  min-height: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seat-grid__viewport {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: none;
  user-select: none;
}

.seat-grid__loading {
  min-width: 240px;
  padding: 18px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.seat-map__inner {
  display: inline-grid;
  gap: 6px;
  width: max-content;
  transform-origin: center center;
  transition: transform 0.2s ease;
}

.seat-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
}

.seat {
  width: 60px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.7rem;
  display: grid;
  place-items: center;
  padding: 0;
  font-family: inherit;
  cursor: default;
}

.seat--available {
  background: rgba(201, 226, 191, 0.3);
  border-color: rgba(201, 226, 191, 0.8);
  color: #f8fff5;
  cursor: pointer;
}

.seat--selected {
  background: rgba(141, 13, 227, 0.5);
  border-color: rgba(141, 13, 227, 0.9);
  color: #ffffff;
}

.seat--unavailable {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.4);
}

.seat--placeholder {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: transparent;
}

.seat-zoom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 4px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(4, 11, 24, 0.55);
}

.seat-zoom__label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
}

.seat-zoom__step {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.seat-zoom__step:hover {
  background: rgba(255, 255, 255, 0.15);
}

.seat-zoom__track {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seat-zoom__range {
  width: 214px;
  transform: rotate(-90deg);
  accent-color: var(--accent-green);
}

.seat-zoom__value {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.86);
  min-width: 44px;
  text-align: center;
}

.seat-grid.is-pannable .seat-grid__viewport {
  cursor: grab;
}

.seat-grid.is-dragging-map .seat-grid__viewport {
  cursor: grabbing;
}

@media (max-width: 767px) {
  .modal__pinch-hint {
    display: flex;
  }

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

  .seat-zoom {
    display: none;
  }
}

@media (min-width: 768px) {
  .hero__logo {
    height: 80px;
  }

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

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

  .testimonials__grid {
    align-items: start;
  }

  .testimonials__form {
    justify-content: flex-end;
  }

  .footer__info {
    display: grid;
    gap: 12px;
  }

  .footer__logos {
    justify-content: flex-end;
  }

  .modal__dialog {
    max-height: 90vh;
  }

  .modal__content {
    min-height: 420px;
  }
}

@media (min-width: 1024px) {
  .hero__content {
    padding: 40px 0;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 56px;
  }

  .hero__logo {
    height: 96px;
  }

  .testimonials__grid {
    grid-template-columns: 1.15fr 380px;
    gap: 56px;
  }

  .testimonials__form {
    position: sticky;
    top: 32px;
    align-self: start;
  }

  .modal__dialog {
    max-height: 96vh;
    width: min(1400px, 96vw);
  }
}

@media (min-width: 1280px) {
  .hero__title {
    font-size: 3rem;
  }

  .section-title h2 {
    font-size: 3rem;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
  }
}

/* page-specific styles moved from index-2026.php */
body.page-2026 {
  --bg: #420465;
  --bg-alt: #420465;
  --bg-dark: #420465;
  --accent-blue: #8D0DE3;
  --accent-blue-soft: #8D0DE3;
  --accent-green: #C9E2BF;
  --card: rgba(66, 4, 101, 0.85);
  background: #420465;
}

.page-2026 .hero {
  background:
    linear-gradient(90deg, rgba(66, 4, 101, 0.58) 0%, rgba(66, 4, 101, 0.42) 50%, rgba(66, 4, 101, 0.55) 100%),
    linear-gradient(90deg, rgba(141, 13, 227, 0.88) 0%, rgba(141, 13, 227, 0.62) 50%, rgba(141, 13, 227, 0.78) 100%),
    radial-gradient(circle at right, rgba(201, 226, 191, 0.22), transparent 34%),
    url("https://static.loungecentenario.com.br/files/img/foto-bg.jpg")
      center/cover no-repeat;
}

.page-2026 .hero__title {
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

.page-2026 .hero__title-line {
  color: #ffffff;
}

.page-2026 .btn--primary {
  background: #8D0DE3;
  border-color: #8D0DE3;
}

.page-2026 .lead-form__button {
  background: #C9E2BF;
  border-color: #C9E2BF;
  color: #420465;
}

.page-2026 .hero__title-gradient,
.page-2026 .section-title__gradient {
  background: linear-gradient(90deg, #8D0DE3, #C9E2BF);
}

.page-2026 .hero__title-gradient {
  background: none;
  color: #C9E2BF;
  -webkit-text-fill-color: #C9E2BF;
}

.page-2026 .section-title h2 {
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.page-2026 .section-title__light {
  color: #ffffff;
}

.page-2026 .section-title__gradient {
  background: none;
  color: #C9E2BF;
  -webkit-text-fill-color: #C9E2BF;
}

.page-2026 .testimonials {
  background:
    linear-gradient(180deg, rgba(141, 13, 227, 0.96) 0%, rgba(93, 10, 150, 0.98) 55%, rgba(66, 4, 101, 1) 100%),
    radial-gradient(circle at top right, rgba(201, 226, 191, 0.18), transparent 40%);
}

.page-2026 .seat--available {
  background: rgba(201, 226, 191, 0.28);
  border-color: rgba(201, 226, 191, 0.95);
}

.page-2026 .seat--selected {
  background: rgba(141, 13, 227, 0.62);
  border-color: #8D0DE3;
}

.page-2026 .modal__legend-item-available,
.page-2026 .modal__legend-item-selected,
.page-2026 .modal__legend-item-unavailable {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-2026 .modal__legend-seat-available,
.page-2026 .modal__legend-seat-selected,
.page-2026 .modal__legend-seat-unavailable {
  width: 26px;
  height: 25px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  padding: 0;
}

.page-2026 .modal__legend-seat-available {
  background: rgba(201, 226, 191, 0.28);
  border-color: rgba(201, 226, 191, 0.95);
}

.page-2026 .modal__legend-seat-selected {
  background: rgba(141, 13, 227, 0.62);
  border-color: #8D0DE3;
}

.page-2026 .modal__legend-seat-unavailable {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}
