/* ============================================================
   France Experience — france.css
   Homepage styles for the France Experience sub-brand.
   Inherits variables from global.css (fonts, colors, resets).
   ============================================================ */

/* ══════════════════════════════════════
   BODY — override global off-white bg
   The hero is dark, so start dark.
   ═══════════════════════════════════════ */
body {
  background-color: var(--color-preto-editorial);
  transition: background-color 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ══════════════════════════════════════
   LINK RESETS
   ═══════════════════════════════════════ */
a,
a:hover,
a:focus,
a:active {
  text-decoration: none !important;
  text-decoration-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}

/* ══════════════════════════════════════
   FILM GRAIN OVERLAY
   ═══════════════════════════════════════ */
.noise-overlay {
  display: none;
}

/* ══════════════════════════════════════
   CUSTOM CURSOR
   ═══════════════════════════════════════ */
html, body, *, a, button, input, select, textarea, [role="button"], ::before, ::after {
  cursor: none !important;
}

.cursor-follower {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  background-color: var(--color-roxo-assinatura);
  border: 1px solid transparent;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition:
    width 0.4s cubic-bezier(0.19, 1, 0.22, 1),
    height 0.4s cubic-bezier(0.19, 1, 0.22, 1),
    background-color 0.4s ease,
    border-color 0.4s ease,
    backdrop-filter 0.4s ease;
}

.cursor-follower.is-hovering {
  width: 70px; height: 70px;
  background-color: rgba(142, 106, 168, 0.08);
  border: 1px solid rgba(142, 106, 168, 0.35);
  box-shadow: 0 8px 32px 0 rgba(142, 106, 168, 0.15), inset 0 0 12px rgba(142, 106, 168, 0.2);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

/* ══════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(15px);
  filter: blur(8px);
  transition:
    opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 1s cubic-bezier(0.215, 0.61, 0.355, 1),
    filter 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: opacity, transform, filter;
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

.reveal-image {
  clip-path: inset(5% 5% 5% 5%);
  opacity: 0;
  transition:
    clip-path 1.4s cubic-bezier(0.215, 0.61, 0.355, 1),
    opacity 1.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: clip-path, opacity;
}
.reveal-image.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}
.reveal-image img {
  transform: scale(1.08);
  transition: transform 1.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform;
}
.reveal-image.is-visible img {
  transform: scale(1);
}

/* ══════════════════════════════════════
   SHARED EDITORIAL COMPONENTS
   ═══════════════════════════════════════ */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--color-roxo-assinatura);
  display: block;
  margin-bottom: 2rem;
}

.eyebrow--light {
  color: rgba(243, 239, 234, 0.5);
}

.editorial-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-preto-editorial);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 3.5rem;
  border: 1px solid rgba(27, 27, 27, 0.3);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.editorial-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: var(--color-preto-editorial);
  border-radius: inherit;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}
.editorial-btn:hover { color: var(--color-off-white); border-color: var(--color-preto-editorial); }
.editorial-btn:hover::before { transform: scaleY(1); transform-origin: top; }

.editorial-btn--light {
  color: var(--color-off-white);
  border-color: rgba(255, 255, 255, 0.3);
}
.editorial-btn--light::before { background-color: var(--color-off-white); }
.editorial-btn--light:hover { color: var(--color-bordo-profundo); border-color: var(--color-off-white); }

.editorial-btn--outline-dark {
  color: var(--color-preto-editorial);
  border-color: rgba(27, 27, 27, 0.25);
  background: transparent;
}

/* Art link — animated underline */
.art-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: inherit !important;
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  position: relative;
  padding-bottom: 6px;
  display: inline-block;
  isolation: isolate;
}
.art-link::before { content: none !important; display: none !important; }
.art-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background-image: linear-gradient(to right, var(--color-roxo-assinatura) 50%, currentColor 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: background-position 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.art-link:hover::after { background-position: 0% 0; }
.art-link:hover { font-style: italic; letter-spacing: 0.24em; }

/* Text selection — light sections (default) */
::selection { background-color: rgba(142, 106, 168, 0.25); color: var(--color-preto-editorial, #1B1B1B); }
::-moz-selection { background-color: rgba(142, 106, 168, 0.25); color: var(--color-preto-editorial, #1B1B1B); }

/* ══════════════════════════════════════
   DARK THEME CLASS
   Applied to body by JS for dark sections
   ═══════════════════════════════════════ */
/* Scope dark selection to only the actual dark-background sections */
[data-bg-color="#1B1B1B"] ::selection,
[data-bg-color="#5A2E63"] ::selection,
[data-bg-color="#7A1E2C"] ::selection { background-color: rgba(243, 239, 234, 0.18); color: var(--color-off-white, #F3EFEA); }
[data-bg-color="#1B1B1B"] ::-moz-selection,
[data-bg-color="#5A2E63"] ::-moz-selection,
[data-bg-color="#7A1E2C"] ::-moz-selection { background-color: rgba(243, 239, 234, 0.18); color: var(--color-off-white, #F3EFEA); }

/* ══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.fe-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
  transition:
    background-color 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    backdrop-filter 0.5s ease,
    border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}

.fe-nav__brand {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-off-white);
  text-decoration: none;
  transition: color 0.4s ease;
  flex-shrink: 0;
}

.fe-nav__logo {
  height: 2.2rem;
  max-height: 40px;
  width: auto;
  display: block;
  transition: filter 0.4s ease;
  filter: brightness(0) invert(1); /* Default transparent dark navbar: turn dark logo to white */
}

.fe-nav.is-scrolled .fe-nav__logo {
  filter: none; /* Scrolled light navbar: show original beautiful dark burgundy brand color */
}

.fe-nav.is-scrolled.fe-nav--on-dark .fe-nav__logo {
  filter: brightness(0) invert(1); /* Scrolled on dark background: keep it white */
}



.fe-nav__links {
  display: flex;
  gap: 3.5rem;
  align-items: center;
}

.fe-nav__link {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(243, 239, 234, 0.75);
  text-decoration: none;
  position: relative;
  transition: color 0.4s ease, letter-spacing 0.3s ease;
}
.fe-nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 100%; height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.fe-nav__link:hover { color: var(--color-off-white); letter-spacing: 0.26em; }
.fe-nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

/* CTA button in nav */
.fe-nav__cta {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(243, 239, 234, 0.3);
  border-radius: 50px;
  color: var(--color-off-white);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  white-space: nowrap;
  flex-shrink: 0;
}
.fe-nav__cta:hover {
  background-color: var(--color-off-white);
  color: var(--color-preto-editorial);
  border-color: var(--color-off-white);
}

/* Scrolled state: frosted glass */
.fe-nav.is-scrolled {
  background-color: rgba(245, 241, 235, 0.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-color: rgba(27, 27, 27, 0.06);
}
.fe-nav.is-scrolled .fe-nav__brand { color: var(--color-preto-editorial); }
.fe-nav.is-scrolled .fe-nav__link { color: rgba(27, 27, 27, 0.6); }
.fe-nav.is-scrolled .fe-nav__link:hover { color: var(--color-preto-editorial); }
.fe-nav.is-scrolled .fe-nav__cta { color: var(--color-preto-editorial); border-color: rgba(27,27,27,0.25); }
.fe-nav.is-scrolled .fe-nav__cta:hover { background-color: var(--color-preto-editorial); color: var(--color-off-white); border-color: var(--color-preto-editorial); }

/* On dark section while scrolled */
.fe-nav.is-scrolled.fe-nav--on-dark {
  background-color: rgba(20, 20, 20, 0.92);
  border-color: rgba(255, 255, 255, 0.04);
}
.fe-nav.is-scrolled.fe-nav--on-dark .fe-nav__brand { color: var(--color-off-white); }
.fe-nav.is-scrolled.fe-nav--on-dark .fe-nav__link { color: rgba(243, 239, 234, 0.65); }
.fe-nav.is-scrolled.fe-nav--on-dark .fe-nav__link:hover { color: var(--color-off-white); }
.fe-nav.is-scrolled.fe-nav--on-dark .fe-nav__cta { color: var(--color-off-white); border-color: rgba(243,239,234,0.3); }

/* ══════════════════════════════════════
   HERO
   Full-height, dark, centered editorial.
   ═══════════════════════════════════════ */
.fe-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--color-preto-editorial);
  background-image:
    radial-gradient(ellipse at 65% 35%, rgba(142, 106, 168, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 75%, rgba(122, 30, 44, 0.12) 0%, transparent 45%);
}

.fe-hero__inner {
  position: relative;
  z-index: 10;
  max-width: 860px;
  padding: 0 4rem;
}

.fe-hero__subbrand {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--color-roxo-assinatura);
  display: block;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.fe-hero__brand-h1 {
  margin: 0;
  padding: 0;
  display: inline-block;
}

.fe-hero__logo-badge {
  height: 3.5rem;
  max-height: 70px;
  width: auto;
  margin-bottom: 2rem;
  display: inline-block;
  opacity: 0;
  animation: fadeUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  filter: brightness(0) invert(1); /* Dark hero background: turn dark burgundy logo to white */
}

.fe-hero__logo-badge--large {
  height: clamp(4rem, 10vw, 7rem);
  max-height: 120px;
  margin-bottom: 2.5rem;
}



.fe-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-off-white);
  margin: 0 0 2rem;
  opacity: 0;
  animation: fadeUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.fe-hero__divider {
  width: 3rem;
  height: 1px;
  background-color: var(--color-roxo-assinatura);
  opacity: 0.5;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.55s forwards;
}

.fe-hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.8;
  color: rgba(243, 239, 234, 0.58);
  max-width: 580px;
  margin: 0 auto 3.5rem;
  opacity: 0;
  animation: fadeUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

.fe-hero__actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

/* Scroll indicator */
.fe-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}
.fe-hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(243,239,234,0) 0%, rgba(243,239,234,0.35) 100%);
}
.fe-hero__scroll-label {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(243, 239, 234, 0.35);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}


/* ══════════════════════════════════════
   MANIFESTO
   Big italic quote + body text.
   ═══════════════════════════════════════ */
.fe-manifesto {
  padding: 12rem 4rem;
  background-color: var(--color-off-white);
  position: relative;
}

.fe-manifesto__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 8rem;
  align-items: start;
}

.fe-manifesto__quote {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.1;
  font-style: italic;
  color: var(--color-preto-editorial);
}

.fe-manifesto__quote strong {
  font-style: italic;
  font-weight: 300;
  color: var(--color-roxo-fenix);
}

.fe-manifesto__right {
  padding-top: 1.5rem;
}

.fe-manifesto__text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
}
.fe-manifesto__text p { margin-bottom: 1.5rem; }
.fe-manifesto__text p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════
   TOURS — PARIS DE MULHERES
   Dark purple section
   ═══════════════════════════════════════ */
.fe-tours {
  padding: 10rem 4rem;
  position: relative;
}

.fe-tours--paris {
  background-color: var(--color-ameixa-escura);
}

.fe-tours--france {
  background-color: var(--color-creme-claro);
}

.fe-tours__header {
  max-width: 1300px;
  margin: 0 auto 6rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 3rem;
  gap: 4rem;
}

.fe-tours--france .fe-tours__header {
  border-bottom-color: rgba(27,27,27,0.08);
}

.fe-tours__header-left { flex: 1; }

.fe-tours__section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-off-white);
  margin-bottom: 0;
}

.fe-tours--france .fe-tours__section-title {
  color: var(--color-preto-editorial);
}

.fe-tours__section-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(243, 239, 234, 0.55);
  max-width: 340px;
  flex-shrink: 0;
}

.fe-tours--france .fe-tours__section-desc {
  color: rgba(27, 27, 27, 0.5);
}

/* Tour grid */
.fe-tours__grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.fe-tours__item {
  padding: 4rem 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: background-color 0.4s ease;
  display: flex;
  flex-direction: column;
}
.fe-tours__item:nth-child(2n),
.fe-tours__item:last-child { border-right: none; }
.fe-tours__item:nth-last-child(-n+2) { border-bottom: none; }
.fe-tours__item:hover { background-color: rgba(255, 255, 255, 0.03); }

/* Left editorial accent line on hover */
.fe-tours__item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 100%;
  background-color: var(--color-roxo-assinatura);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.fe-tours__item:hover::before { transform: scaleY(1); transform-origin: top; }

.fe-tours--france .fe-tours__item {
  border-bottom-color: rgba(27, 27, 27, 0.07);
  border-right-color: rgba(27, 27, 27, 0.07);
}
.fe-tours--france .fe-tours__item:hover { background-color: rgba(27, 27, 27, 0.02); }
.fe-tours--france .fe-tours__item::before { background-color: var(--color-roxo-fenix); }

.fe-tours__number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-off-white);
  opacity: 0.1;
  display: block;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.fe-tours--france .fe-tours__number { color: var(--color-preto-editorial); opacity: 0.08; }

.fe-tours__title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-off-white);
  margin-bottom: 1.5rem;
}

.fe-tours--france .fe-tours__title { color: var(--color-preto-editorial); }

.fe-tours__desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(243, 239, 234, 0.58);
  margin-bottom: 1.5rem;
  max-width: 650px;
}

.fe-tours--france .fe-tours__desc { color: rgba(27, 27, 27, 0.55); }

.fe-tours__tags {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.fe-tours__tag {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 239, 234, 0.35);
}

.fe-tours--france .fe-tours__tag { color: rgba(27, 27, 27, 0.35); }

.fe-tours__item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.fe-tours__item-number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--color-preto-editorial);
  opacity: 0.35;
}

.fe-tours__tag-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-roxo-fenix);
  background-color: rgba(123, 75, 143, 0.06);
  border: 1px solid rgba(123, 75, 143, 0.15);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  line-height: 1;
}

.fe-tours__item-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(27, 27, 27, 0.08);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.fe-tours__action-link {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-roxo-fenix);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

/* Stretched link to make the entire .fe-tours__item card clickable */
.fe-tours__action-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  cursor: pointer;
}

.fe-tours__item:hover .fe-tours__action-link {
  color: var(--color-bordo-profundo);
}

.fe-tours__action-link svg {
  transition: transform 0.3s ease;
}

.fe-tours__item:hover .fe-tours__action-link svg {
  transform: translateX(4px);
}

/* ══════════════════════════════════════
   GALLERY SECTION WRAPPER
   ═══════════════════════════════════════ */
.fe-gallery-section {
  padding: 10rem 4rem;
  background-color: var(--color-off-white);
  position: relative;
}

.fe-gallery-section__header {
  max-width: 1400px;
  margin: 0 auto 5rem;
}

.fe-gallery-section__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-preto-editorial);
  margin-bottom: 1rem;
}

.fe-gallery-section__subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(27, 27, 27, 0.5);
  max-width: 500px;
}

/* ══════════════════════════════════════
   ABOUT — SOBRE MINHA
   ═══════════════════════════════════════ */
.fe-about {
  padding: 12rem 4rem;
  background-color: #FFFFFF;
  position: relative;
}

.fe-about__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

/* Decorative left column: large faint italic "G" — editorial texture */
.fe-about__decoration {
  position: relative;
  overflow: hidden;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fe-about__monogram {
  font-family: var(--font-heading);
  font-size: 38vw;
  font-weight: 300;
  font-style: italic;
  line-height: 0.85;
  color: var(--color-preto-editorial);
  opacity: 0.035;
  letter-spacing: -0.05em;
  user-select: none;
  pointer-events: none;
  position: absolute;
  white-space: nowrap;
}

.fe-about__content { position: relative; z-index: 2; }

.fe-about__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-preto-editorial);
  margin-bottom: 0.5rem;
}

.fe-about__rule {
  width: 3rem;
  height: 1px;
  background-color: var(--color-roxo-fenix);
  opacity: 0.4;
  margin: 2rem 0;
}

.fe-about__text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(27, 27, 27, 0.65);
  margin-bottom: 2.5rem;
}

/* ══════════════════════════════════════
   CTA — AGENDE JÁ
   ═══════════════════════════════════════ */
.fe-cta {
  padding: 12rem 4rem;
  background-color: var(--color-bordo-profundo);
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* Subtle radial glow */
.fe-cta::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 70vw;
  height: 70vw;
  background: radial-gradient(ellipse, rgba(193, 79, 122, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.fe-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.fe-cta__heading {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-off-white);
  margin-bottom: 2.5rem;
}

.fe-cta__heading em {
  font-style: italic;
  color: rgba(243, 239, 234, 0.55);
}

.fe-cta__sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(243, 239, 234, 0.55);
  margin-bottom: 3.5rem;
}

/* ══════════════════════════════════════
   FAQ — INFORMAÇÕES IMPORTANTES
   ═══════════════════════════════════════ */
.fe-faq {
  padding: 10rem 4rem;
  background-color: var(--color-creme-claro);
}

.fe-faq__inner {
  max-width: 900px;
  margin: 0 auto;
}

.fe-faq__list {
  list-style: none;
  margin-top: 5rem;
}

.fe-faq__item {
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(27, 27, 27, 0.08);
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 2rem;
  align-items: start;
}
.fe-faq__item:first-child { border-top: 1px solid rgba(27, 27, 27, 0.08); }

.fe-faq__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-preto-editorial);
  opacity: 0.12;
  line-height: 1;
  padding-top: 0.2rem;
}

.fe-faq__question {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-preto-editorial);
  margin-bottom: 1rem;
}

.fe-faq__answer {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(27, 27, 27, 0.6);
}

/* ══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.fe-footer {
  background-color: var(--color-preto-editorial);
  padding: 8rem 4rem 4rem;
}

.fe-footer__inner {
  max-width: 1300px;
  margin: 0 auto;
}

.fe-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 3rem;
}

.fe-footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-off-white);
  margin-bottom: 0.25rem;
}

.fe-footer__brand-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-roxo-assinatura);
}

.fe-footer__logo {
  height: 2.8rem;
  max-height: 50px;
  width: auto;
  display: block;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1); /* Dark footer background: turn dark burgundy logo to white */
}


.fe-footer__col-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(243, 239, 234, 0.25);
  display: block;
  margin-bottom: 1.5rem;
}

.fe-footer__contact-item {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(243, 239, 234, 0.65);
  text-decoration: none;
  line-height: 2;
  transition: color 0.3s ease;
}
.fe-footer__contact-item:hover { color: var(--color-off-white); }

.fe-footer__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.fe-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.fe-footer__legal {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(243, 239, 234, 0.2);
  letter-spacing: 0.1em;
}

.fe-footer__gloria-link {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 239, 234, 0.25);
  text-decoration: none;
  transition: color 0.3s ease;
}
.fe-footer__gloria-link:hover { color: var(--color-roxo-assinatura); }

/* ══════════════════════════════════════
   PARIS DE MULHERES BANNER
   ═══════════════════════════════════════ */
.fe-paris-callout {
  padding: 10rem 4rem;
  text-align: center;
  position: relative;
  background-color: var(--color-ameixa-escura);
  color: var(--color-off-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.fe-paris-callout__inner {
  max-width: 900px;
  margin: 0 auto;
}
.fe-paris-callout__brand-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.fe-paris-callout__logo {
  height: 48px;
  width: auto;
  opacity: 0.95;
  filter: brightness(0) invert(1);
}
.fe-paris-callout__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-off-white);
  margin: 0;
}
.fe-paris-callout__tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  line-height: 1.35;
  margin: 2rem 0;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--color-rosa-queimado, #B65C7A);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}
.fe-paris-callout__desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(243, 239, 234, 0.7);
  margin-bottom: 3.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.fe-paris-callout__action {
  display: flex;
  justify-content: center;
}

/* ══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes fadeUp {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

/* ══════════════════════════════════════
   RESPONSIVE — ≤1024px
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Kill desktop-only elements */
  .cursor-follower { display: none !important; }
  html, body, *, a, button, input, select, textarea, [role="button"], ::before, ::after {
    cursor: auto !important;
  }
  * { -webkit-tap-highlight-color: transparent; }

  /* Nav */
  .fe-nav {
    padding: 1.4rem 1.5rem;
    justify-content: space-between;
  }
  .fe-nav__links { gap: 1.5rem; }
  .fe-nav__link { font-size: 0.58rem; letter-spacing: 0.14em; }
  .fe-nav__cta { padding: 0.65rem 1.4rem; font-size: 0.58rem; }

  /* Hero */
  .fe-hero__inner { padding: 0 1.5rem; }
  .fe-hero__title { font-size: clamp(3rem, 12vw, 5.5rem); }
  .fe-hero__subtitle { font-size: 0.95rem; }
  .fe-hero__actions { gap: 1rem; }
  .fe-hero__scroll { display: none; }

  /* Manifesto */
  .fe-manifesto { padding: 7rem 1.5rem; }
  .fe-manifesto__inner { grid-template-columns: 1fr; gap: 3rem; }
  .fe-manifesto__quote { font-size: clamp(2rem, 7vw, 3rem); }

  /* Tours */
  .fe-tours { padding: 7rem 1.5rem; }
  .fe-tours__header { flex-direction: column; align-items: flex-start; gap: 1rem; margin-bottom: 4rem; padding-bottom: 2rem; }
  .fe-tours__section-desc { max-width: 100%; }
  .fe-tours__grid { grid-template-columns: 1fr; }
  .fe-tours__item { padding: 3rem 0; border-right: none; }
  .fe-tours__item:last-child { border-bottom: none; }
  .fe-tours__item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .fe-tours--france .fe-tours__item:nth-last-child(-n+2) { border-bottom-color: rgba(27,27,27,0.07); }
  .fe-tours__item:last-child { border-bottom: none !important; }
  .fe-tours__number { font-size: 3.5rem; margin-bottom: 1rem; }
  .fe-tours__item::before { width: 100%; height: 2px; top: 0; transform: scaleX(0) !important; }
  .fe-tours__item:hover::before { transform: scaleX(1) !important; transform-origin: left !important; }

  /* Paris callout */
  .fe-paris-callout { padding: 7rem 1.5rem; }
  .fe-paris-callout__brand-container { flex-direction: column; gap: 1rem; }
  .fe-paris-callout__logo { height: 40px; }
  .fe-paris-callout__tagline { margin: 1.5rem 0; padding: 1rem 0; }
  .fe-paris-callout__desc { font-size: 0.95rem; margin-bottom: 2.5rem; }

  /* Gallery */
  .fe-gallery-section { padding: 7rem 1.5rem; }
  .fe-gallery-section__header { margin-bottom: 3rem; }

  /* About */
  .fe-about { padding: 7rem 1.5rem; }
  .fe-about__inner { grid-template-columns: 1fr; gap: 3rem; }
  .fe-about__decoration { height: 120px; overflow: hidden; }
  .fe-about__monogram { font-size: 60vw; opacity: 0.04; }

  /* CTA */
  .fe-cta { padding: 8rem 1.5rem; }
  .fe-cta__heading { font-size: clamp(2.8rem, 11vw, 5rem); }

  /* FAQ */
  .fe-faq { padding: 7rem 1.5rem; }
  .fe-faq__item { grid-template-columns: 3.5rem 1fr; gap: 1rem; padding: 2.5rem 0; }

  /* Footer */
  .fe-footer { padding: 6rem 1.5rem 3rem; }
  .fe-footer__top { grid-template-columns: 1fr; gap: 3rem; padding-bottom: 3rem; }
  .fe-footer__bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* Tap feedback */
  .editorial-btn:active { transform: scale(0.95); opacity: 0.85; transition: transform 0.08s ease, opacity 0.08s ease; }
}

/* ══════════════════════════════════════
   RESPONSIVE — ≤480px
   ═══════════════════════════════════════ */
@media (max-width: 480px) {
  /* Nav: hide middle links on very small screens, keep brand + cta */
  .fe-nav__links .fe-nav__link:not(:last-child) { display: none; }
  .fe-nav__links { gap: 1rem; }

  .fe-hero__title { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .fe-hero__actions { flex-direction: column; align-items: stretch; }
  .fe-hero__actions .editorial-btn { text-align: center; }

  .fe-manifesto { padding: 5rem 1.2rem; }
  .fe-tours { padding: 5rem 1.2rem; }
  .fe-paris-callout { padding: 5rem 1.2rem; }
  .fe-gallery-section { padding: 5rem 1.2rem; }
  .fe-about { padding: 5rem 1.2rem; }
  .fe-cta { padding: 6rem 1.2rem; }
  .fe-faq { padding: 5rem 1.2rem; }
  .fe-footer { padding: 5rem 1.2rem 3rem; }

  .editorial-btn { padding: 1.1rem 2.5rem; }
}

/* Dynamic grid balance: if there is an odd number of items, the last item spans full width on desktop */
@media (min-width: 1025px) {
  .fe-tours__item:last-child:nth-child(odd) {
    grid-column: span 2;
    border-right: none !important;
  }
}

