/* ============================================================
   ORLANDO PRESTIGE TRANSFER — style.css
   ============================================================ */

/* --- Custom Properties ----------------------------------- */
:root {
  --midnight: #06080E;
  --gold:     #C9A84C;
  --gold-dim: rgba(201, 168, 76, 0.18);
  --ivory:    #F9F5EC;
  --navy:     #0F1428;
  --navy-2:   #141c35;

  --font-display:   'Cinzel', serif;
  --font-highlight: 'Cormorant Garamond', serif;
  --font-body:      'DM Sans', sans-serif;

  --container:    1200px;
  --pad-section:  108px;
  --ease:         0.3s ease;
}

/* --- Reset ----------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--midnight);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100%; height: auto; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* --- Container ------------------------------------------ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 40px;
  background: var(--gold);
  color: var(--midnight);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  border: 1px solid var(--gold);
  transition: background var(--ease), color var(--ease);
  cursor: pointer;
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}
.btn-primary.btn-large {
  padding: 20px 52px;
  font-size: 0.95rem;
}

.btn-wpp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(201, 168, 76, 0.45);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn-wpp:hover {
  background: var(--gold);
  color: var(--midnight);
  border-color: var(--gold);
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
section { padding: var(--pad-section) 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--ivory);
  letter-spacing: 0.05em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-sub {
  font-family: var(--font-highlight);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(249, 245, 236, 0.5);
}

/* --- Divider -------------------------------------------- */
.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin: 28px 0 20px;
}
.divider-line {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.divider-dot {
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}

/* --- Fade-in on scroll ---------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  padding: 22px 0;
  transition: background var(--ease), padding var(--ease), border-color var(--ease);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(6, 8, 14, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom-color: var(--gold-dim);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-right: auto;
}
.brand-prestige {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.brand-sub {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  color: rgba(249, 245, 236, 0.4);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: rgba(249, 245, 236, 0.65);
  text-transform: uppercase;
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--gold); }

.nav-wpp-mobile { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ivory);
  transition: var(--ease);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 8, 14, 0.45) 0%,
    rgba(6, 8, 14, 0.62) 45%,
    rgba(6, 8, 14, 0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 130px 28px 96px;
  animation: heroFade 1.4s ease forwards;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 40px;
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.hero-heading {
  line-height: 1;
  margin-bottom: 4px;
}
.hero-heading span {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.06;
}
.h-orlando  {
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  color: var(--gold);
  margin-bottom: 2px;
}
.h-prestige {
  font-size: clamp(3.2rem, 8vw, 7rem);
  color: var(--ivory);
}
.h-transfer {
  font-size: clamp(3.2rem, 8vw, 7rem);
  color: var(--ivory);
}

.hero-location {
  font-family: var(--font-highlight);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(249, 245, 236, 0.45);
  letter-spacing: 0.2em;
  margin-bottom: 28px;
}
.hero-tagline {
  font-family: var(--font-highlight);
  font-style: italic;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: rgba(249, 245, 236, 0.88);
  line-height: 1.55;
  margin-bottom: 48px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(201, 168, 76, 0.55);
  animation: scrollBounce 2.2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ============================================================
   SERVIÇOS
   ============================================================ */
#servicos { background: var(--navy); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-dim);
}
.service-card {
  background: var(--navy);
  padding: 52px 28px 44px;
  text-align: center;
  transition: background var(--ease);
}
.service-card:hover { background: var(--navy-2); }

.service-icon {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--gold);
  transition: border-color var(--ease);
}
.service-card:hover .service-icon { border-color: var(--gold); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ivory);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.service-card p {
  font-size: 1rem;
  color: rgba(249, 245, 236, 0.5);
  line-height: 1.75;
}

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
#diferenciais {
  background: var(--midnight);
  position: relative;
}
#diferenciais::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.4), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 52px 40px;
}
.feature-item { text-align: center; }

.feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-item h3 {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.feature-item p {
  font-size: 1rem;
  color: rgba(249, 245, 236, 0.5);
  line-height: 1.75;
}

/* ============================================================
   GALERIA — CARROSSEL
   ============================================================ */
#galeria { background: var(--navy); }

.gallery-carousel { position: relative; }

.carousel-stage {
  position: relative;
  height: clamp(300px, 48vw, 560px);
  background: #080b12;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* canvas já vem com as dimensões exactas do stage — apenas preenche */
.carousel-slide canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  background: rgba(6, 8, 14, 0.55);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.carousel-btn:hover {
  background: rgba(201, 168, 76, 0.18);
  border-color: var(--gold);
}
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

/* Counter */
.carousel-counter {
  position: absolute;
  bottom: 18px;
  right: 20px;
  z-index: 10;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: rgba(249, 245, 236, 0.5);
  background: rgba(6, 8, 14, 0.5);
  padding: 4px 10px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.carousel-sep { margin: 0 4px; opacity: 0.4; }

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 24px;
}
.carousel-dot {
  width: 28px;
  height: 2px;
  background: rgba(201, 168, 76, 0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  padding: 0;
}
.carousel-dot.active {
  background: var(--gold);
  width: 48px;
}

@media (max-width: 768px) {
  .carousel-stage { height: clamp(220px, 55vw, 360px); }
  .carousel-btn { width: 40px; height: 40px; }
  .carousel-prev { left: 10px; }
  .carousel-next { right: 10px; }
}

@media (max-width: 480px) {
  .carousel-dot { width: 20px; }
  .carousel-dot.active { width: 36px; }
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
#depoimentos { background: var(--midnight); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--navy);
  padding: 40px 32px;
  border-top: 1px solid rgba(201, 168, 76, 0.28);
}
.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.testimonial-text {
  font-family: var(--font-highlight);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(249, 245, 236, 0.8);
  line-height: 1.7;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.author-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.author-detail {
  font-size: 0.92rem;
  color: rgba(249, 245, 236, 0.35);
  font-weight: 300;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
#cta {
  background: var(--navy);
  padding: 128px 0;
  text-align: center;
}
.cta-content {
  max-width: 660px;
  margin: 0 auto;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-sub {
  font-family: var(--font-highlight);
  font-style: italic;
  font-size: 1.3rem;
  color: rgba(249, 245, 236, 0.55);
  margin-bottom: 52px;
  line-height: 1.65;
}
.cta-number {
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.25em;
  color: rgba(201, 168, 76, 0.5);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--midnight);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 64px 0 32px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 52px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-logo {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  flex-shrink: 0;
}
.footer-tagline {
  font-family: var(--font-highlight);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(249, 245, 236, 0.4);
  line-height: 1.65;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: rgba(249, 245, 236, 0.45);
  transition: color var(--ease);
}
.footer-link:hover { color: var(--gold); }
.footer-link svg { color: var(--gold); opacity: 0.7; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.07);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: rgba(249, 245, 236, 0.2);
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .features-grid    { grid-template-columns: repeat(2, 1fr); gap: 44px 36px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --pad-section: 72px; }

  /* Nav mobile */
  .nav-links { display: none; }
  .nav-wpp-desktop { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(6, 8, 14, 0.97);
    z-index: 190;
    align-items: center;
    justify-content: center;
    gap: 36px;
  }
  .nav-links.open a {
    font-size: 1.1rem;
    letter-spacing: 0.22em;
    color: rgba(249, 245, 236, 0.8);
  }
  .nav-wpp-mobile { display: list-item; margin-top: 8px; }

  /* Gallery — handled by carousel-stage media query */

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  /* Footer */
  .footer-content   { flex-direction: column; text-align: center; }
  .footer-links     { align-items: center; }
  .footer-brand     { flex-direction: column; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .features-grid  { grid-template-columns: 1fr; gap: 36px; }
  .services-grid  { grid-template-columns: 1fr; }

  .btn-primary { padding: 15px 28px; }
  .btn-primary.btn-large { padding: 17px 32px; }

  .hero-logo { width: 120px; height: 120px; }
}

/* ============================================================
   PROMOÇÃO COPA
   ============================================================ */
#promo-copa {
  background: var(--navy);
  padding: 0;
}

.promo-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  padding: 36px 44px;
  position: relative;
  overflow: hidden;
}
.promo-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(201, 168, 76, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.promo-badge {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.32em;
  color: var(--midnight);
  background: var(--gold);
  padding: 6px 14px;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 4px;
}

.promo-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.promo-route {
  display: flex;
  align-items: center;
  gap: 16px;
}
.promo-city {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--ivory);
}
.promo-arrow {
  color: var(--gold);
  opacity: 0.7;
  display: flex;
  align-items: center;
}

.promo-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.promo-occasion {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}
.promo-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(249, 245, 236, 0.5);
  line-height: 1.55;
}

.promo-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  flex-shrink: 0;
}

.promo-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.promo-from {
  font-family: var(--font-highlight);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(249, 245, 236, 0.4);
}
.promo-value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.promo-per {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: rgba(201, 168, 76, 0.5);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .promo-strip {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 32px;
  }
  .promo-badge { align-self: auto; width: fit-content; }
  .promo-cta { align-items: flex-start; flex-direction: row; align-items: center; gap: 28px; flex-wrap: wrap; }
  .promo-price { align-items: flex-start; }
}

@media (max-width: 480px) {
  .promo-strip { padding: 28px 22px; }
  .promo-cta { flex-direction: column; align-items: flex-start; }
  .promo-route { gap: 10px; }
}

