/* ============================================
   MONREAL TOURS — Base Stylesheet
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&family=Inter:wght@300;400;500&display=swap');

/* ============================================
   VARIÁVEIS CSS
   ============================================ */
:root {
  /* Cores */
  --color-primary:        #001489;
  --color-white:          #FFFFFF;
  --color-off-white:      #F5F3EE;
  --color-dark:           #0A0A0A;
  --color-gray:           #6B6B6B;
  --color-accent-cyan:    #00A0D2;
  --color-accent-green:   #00A878;
  --color-accent-red:     #E5000F;
  --color-accent-orange:  #F47920;
  --color-accent-pink:    #E8006A;
  --color-accent-purple:  #7B2D8B;

  /* Tipografia */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Espaçamentos */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  8rem;

  /* Container */
  --container-max: 1280px;
  --container-pad: 2rem;

  /* Borda/Moldura */
  --frame-width: 2px;
  --frame-color: var(--color-primary);

  /* Transições */
  --transition: 0.3s ease;
}

/* ============================================
   RESET CSS
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ============================================
   TIPOGRAFIA
   ============================================ */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
}

h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.3;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }

p {
  font-family: var(--font-body);
  font-weight: 400;
  max-width: 70ch;
}

small {
  font-size: 0.8rem;
  font-weight: 300;
}

strong {
  font-weight: 500;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ============================================
   SISTEMA DE MOLDURA / FRAME
   ============================================ */
.frame {
  border: var(--frame-width) solid var(--frame-color);
}

.frame--white {
  border-color: var(--color-white);
}

.frame--accent-cyan   { border-color: var(--color-accent-cyan); }
.frame--accent-green  { border-color: var(--color-accent-green); }
.frame--accent-red    { border-color: var(--color-accent-red); }
.frame--accent-orange { border-color: var(--color-accent-orange); }
.frame--accent-pink   { border-color: var(--color-accent-pink); }
.frame--accent-purple { border-color: var(--color-accent-purple); }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-primary);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  height: 72px;
}
.header__logo { display: flex; align-items: center; flex-shrink: 0; }
.header__logo img { height: 40px; width: auto; }
.header__nav { display: flex; align-items: center; gap: var(--space-md); }
.header__nav a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.header__nav a:hover { color: var(--color-white); }
.header__cta { font-size: 0.82rem; font-weight: 400; padding: 0.6rem 1.3rem; white-space: nowrap; }

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.header__hamburger span {
  display: block; width: 100%; height: 2px;
  background-color: var(--color-white);
  transition: transform var(--transition), opacity var(--transition);
}
.header__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.is-open span:nth-child(2) { opacity: 0; }
.header__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.header__mobile-nav {
  display: none;
  flex-direction: column;
  background-color: #001070;
  padding: var(--space-sm) 0 var(--space-md);
}
.header__mobile-nav.is-open { display: flex; }
.header__mobile-nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  padding: 0.75rem var(--container-pad);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.header__mobile-nav a:hover { color: var(--color-white); }
.header__mobile-nav .header__cta {
  margin: var(--space-sm) var(--container-pad) 0;
  text-align: center;
  display: block;
}

/* Nav dropdown */
.nav-has-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 4px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 400;
  color: rgba(255,255,255,0.8); letter-spacing: 0.04em;
  background: none; border: none; cursor: pointer; padding: 0;
  transition: color var(--transition);
}
.nav-has-dropdown.is-open .nav-dropdown-trigger { color: var(--color-white); }
.nav-dropdown-trigger__chevron {
  width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2;
  transition: transform 0.22s ease;
}
.nav-has-dropdown.is-open .nav-dropdown-trigger__chevron { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 640px; background: #0a0e2a; border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 200; overflow: hidden;
}
.nav-dropdown::before {
  content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px;
}
.nav-dropdown__nub {
  position: absolute; top: 0; left: 50%; width: 14px; height: 14px;
  background: #0a0e2a;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transition: left 0.22s ease; z-index: 2;
}
.nav-has-dropdown.is-open .nav-dropdown { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.nav-dropdown__inner { display: grid; grid-template-columns: 1fr 220px; gap: 8px; padding: 10px; }
.nav-dropdown__list { list-style: none; margin: 0; padding: 10px 6px; display: flex; flex-direction: column; gap: 2px; }
.nav-dropdown__item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; text-decoration: none; border-radius: 10px;
  transition: background 0.2s ease;
}
.nav-dropdown__item:hover, .nav-dropdown__item.is-active { background: rgba(255,255,255,0.07); }
.nav-dropdown__item-content { display: flex; flex-direction: column; gap: 3px; }
.nav-dropdown__item-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--color-white); line-height: 1; }
.nav-dropdown__item-desc { font-family: var(--font-body); font-size: 0.75rem; font-weight: 300; color: rgba(255,255,255,0.45); }
.nav-dropdown__item-arrow {
  font-size: 0.85rem; color: rgba(255,255,255,0.35);
  opacity: 0; transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-dropdown__item:hover .nav-dropdown__item-arrow,
.nav-dropdown__item.is-active .nav-dropdown__item-arrow {
  opacity: 1; transform: translateX(0); color: var(--accent, rgba(255,255,255,0.6));
}
.nav-dropdown__preview { position: relative; border-radius: 10px; overflow: hidden; background: rgba(255,255,255,0.04); }
.nav-drop-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.4s ease; }
.nav-drop-slide.is-active { opacity: 1; }

/* ============================================
   BTN SHINY
   ============================================ */
.btn-shiny {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 2.4rem; font-family: var(--font-body); font-size: 0.9rem;
  font-weight: 400; letter-spacing: 0.06em; text-decoration: none;
  border-radius: 8px; overflow: hidden; color: #ffffff;
  background-color: #00AEEF;
  box-shadow: 0 0 0 1.5px rgba(0,180,255,0.45), inset 0 1px 0 rgba(255,255,255,0.28), inset 0 0 20px rgba(0,160,230,0.12), 0 8px 32px rgba(0,120,200,0.25);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.btn-shiny::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%, rgba(0,80,160,0.1) 100%);
  pointer-events: none;
}
.btn-shiny::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.06), rgba(255,255,255,0.02), rgba(255,255,255,0.06));
  opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
}
.btn-shiny:hover {
  background-color: #0095d4; color: #ffffff;
  box-shadow: 0 0 0 1.5px rgba(0,200,255,0.65), inset 0 1px 0 rgba(255,255,255,0.35), inset 0 0 24px rgba(0,180,255,0.18), 0 12px 40px rgba(0,120,200,0.4);
}
.btn-shiny:hover::after { opacity: 1; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background-color: var(--color-primary); color: var(--color-white); overflow: hidden; }
.footer__top { padding: var(--space-lg) 0 var(--space-md); border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--space-lg); }
.footer__col-title {
  font-family: var(--font-body); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-gray); margin-bottom: 1.5rem;
}
.footer__col a, .footer__col p, .footer__col address {
  display: block; font-family: var(--font-body); font-size: 0.9rem;
  font-weight: 300; font-style: normal; color: rgba(255,255,255,0.65);
  padding: 0.3rem 0; transition: color var(--transition);
}
.footer__col a:hover { color: var(--color-white); }
.footer__logo { display: inline-flex; align-items: center; margin-bottom: 1.5rem; }
.footer__logo img { height: 40px; width: auto; }
.footer__bottom { padding: var(--space-sm) 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm); }
.footer__copyright { font-family: var(--font-body); font-size: 0.67rem; font-weight: 300; color: var(--color-gray); max-width: none; }

/* ============================================
   PAGE HERO (páginas internas)
   ============================================ */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: #060606;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.page-hero__content {
  position: relative; z-index: 2;
  padding: 4rem 0;
  color: var(--color-white);
}
.page-hero__eyebrow {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 0.75rem;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700; line-height: 1.05; color: var(--color-white);
  margin-bottom: 0.75rem;
}
.page-hero__subtitle {
  font-family: var(--font-body); font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.75); letter-spacing: 0.04em;
}

/* ============================================
   PAGE INTRO (introdução das páginas internas)
   ============================================ */
.page-intro { background: var(--color-primary); padding: 5rem 0; }
.page-intro__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.page-intro__text p { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.72); margin-bottom: 1.5rem; }
.page-intro__text p:last-child { margin-bottom: 0; }

/* ============================================
   PAGE HIGHLIGHTS
   ============================================ */
.page-highlights { background: #000C52; padding: 5rem 0; }
.page-highlights__title {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--color-white); margin-bottom: 2.5rem;
}
.page-highlights__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.page-highlights__item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.page-highlights__icon {
  width: 40px; height: 40px;
  background-color: #00AEEF;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem; color: var(--color-white);
}
.page-highlights__item-text strong {
  display: block; font-family: var(--font-display); font-size: 1rem;
  font-weight: 700; color: var(--color-white); margin-bottom: 0.3rem;
}
.page-highlights__item-text span { font-size: 0.9rem; color: rgba(255,255,255,0.55); font-weight: 300; }

/* ============================================
   PAGE CTA
   ============================================ */
.page-cta { background: #000C52; padding: 5rem 0; text-align: center; }
.page-cta__title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--color-white); margin-bottom: 1rem;
}
.page-cta__sub { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 2.5rem; border-radius: 8px;
  background: #25D366; color: #fff;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.04em; text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 24px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { background: #20b858; box-shadow: 0 8px 32px rgba(37,211,102,0.45); }
.btn-whatsapp svg { width: 22px; height: 22px; fill: currentColor; }

/* ============================================
   RESPONSIVO GLOBAL
   ============================================ */
@media (max-width: 768px) {
  .header__nav, .header__cta { display: none; }
  .header__hamburger { display: flex; }
  .nav-dropdown { display: none; }

  .footer__grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; }

  .page-intro__layout { grid-template-columns: 1fr; gap: 2rem; }
  .page-highlights__list { grid-template-columns: 1fr; }
}

/* ============================================
   DESTINOS — hierarquia continentes / países / destinos
   ============================================ */

.breadcrumb {
  background: rgba(0,0,0,0.22);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0.85rem 0;
}
.breadcrumb__list {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; list-style: none;
}
.breadcrumb__sep { color: rgba(255,255,255,0.2); font-size: 0.75rem; user-select: none; }
.breadcrumb__item { font-family: var(--font-body); font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.breadcrumb__item a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumb__item a:hover { color: var(--color-white); }
.breadcrumb__item--active { color: rgba(255,255,255,0.9); }

.destinos-section { background: var(--color-primary); padding: 4rem 0 6rem; }
.destinos-section__intro { margin-bottom: 2.5rem; }
.destinos-section__intro h2 {
  font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700; color: var(--color-white); margin-bottom: 0.4rem;
}
.destinos-section__intro p { font-size: 0.9rem; color: rgba(255,255,255,0.5); }

.destinos-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem;
}
.destino-card {
  position: relative; display: flex; flex-direction: column;
  border-radius: 12px; overflow: hidden;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.3s, transform 0.3s; text-decoration: none;
}
.destino-card:not(.is-coming-soon):hover {
  border-color: rgba(255,255,255,0.25); transform: translateY(-4px);
}
.destino-card.is-coming-soon { opacity: 0.45; pointer-events: none; cursor: default; }
.destino-card__image {
  height: 180px; background-size: cover; background-position: center; position: relative;
}
.destino-card__accent {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background-color: var(--card-accent, #00AEEF);
}
.destino-card__body {
  padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.4rem;
}
.destino-card__tag {
  font-family: var(--font-body); font-size: 0.64rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--card-accent, #00AEEF);
}
.destino-card__name {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  color: var(--color-white); line-height: 1.2;
}
.destino-card__desc {
  font-size: 0.875rem; line-height: 1.65; color: rgba(255,255,255,0.55);
  margin-top: 0.2rem; flex: 1;
}
.destino-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.07);
}
.destino-card__cta { font-size: 0.8rem; font-weight: 500; color: var(--card-accent, #00AEEF); letter-spacing: 0.04em; }
.destino-card__arrow { font-size: 1rem; color: var(--card-accent, #00AEEF); transition: transform 0.2s; }
.destino-card:not(.is-coming-soon):hover .destino-card__arrow { transform: translateX(4px); }

/* Hotel listings */
.hotel-listing { background: #000C52; padding: 5rem 0; }
.hotel-listing__header { margin-bottom: 2.5rem; }
.hotel-listing__title {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--color-white); margin-bottom: 0.5rem;
}
.hotel-listing__sub { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.hotel-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem;
}
.hotel-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px; overflow: hidden; transition: border-color 0.3s;
}
.hotel-card:hover { border-color: rgba(255,255,255,0.2); }
.hotel-card__image {
  height: 160px; background-size: cover; background-position: center;
  background-color: rgba(0,20,80,0.8);
}
.hotel-card__body { padding: 1.25rem 1.5rem 1rem; }
.hotel-card__category {
  font-family: var(--font-body); font-size: 0.64rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: #00AEEF; margin-bottom: 0.4rem;
}
.hotel-card__name {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  color: var(--color-white); margin-bottom: 0.5rem; line-height: 1.25;
}
.hotel-card__desc { font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,0.5); }
.hotel-card__footer { padding: 0.85rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.07); }
.hotel-card__consult {
  font-size: 0.8rem; font-weight: 500; color: #00AEEF;
  display: inline-flex; align-items: center; gap: 0.3rem; transition: color 0.2s;
}
.hotel-card:hover .hotel-card__consult { color: #4dd4ff; }

@media (max-width: 768px) {
  .destinos-cards { grid-template-columns: 1fr 1fr; }
  .hotel-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .destinos-cards { grid-template-columns: 1fr; }
}

/* ============================================
   MAPA MUNDIAL — destinos/index.html
   ============================================ */
.world-map-section {
  background: #000C52;
  padding: 3.5rem 0 4rem;
}
.world-map-section__intro {
  text-align: center;
  margin-bottom: 2.5rem;
}
.world-map-section__eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #00AEEF;
  margin-bottom: 0.5rem;
}
.world-map-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-white);
}
.world-map-svg-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.world-map-svg-wrapper svg { width: 100%; height: auto; display: block; }
.flight-arc { transition: stroke-dashoffset 1.4s ease; }

@media (max-width: 768px) {
  .world-map-section { padding: 2.5rem 0 3rem; }
}
