/**
 * ImSexxy — Home CSS (Fatal Model Light Clone)
 *
 * @package 55acompanhantes
 * @since   3.0.0
 */

/* ═══════════════════════════════════════════════
   VARIÁVEIS
   ═══════════════════════════════════════════════ */
:root {
  --fm-red: #e25352;
  --fm-red-dark: #c94443;
  --fm-red-light: #FFF0F1;
  --fm-red-bg: #FCEAEC;
  --fm-bg: #FFFFFF;
  --fm-bg-alt: #F8F8FA;
  --fm-bg-dark: #1A1A2E;
  --fm-text: #1A1A1A;
  --fm-text-2: #6B7280;
  --fm-text-3: #9CA3AF;
  --fm-border: #E5E7EB;
  --fm-border-lt: #F3F4F6;
  --fm-green: #22C55E;
  --fm-gold: #F59E0B;
  --fm-radius: 12px;
  --fm-radius-sm: 8px;
  --fm-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fm-max: 1200px;
}

/* ═══════════════════════════════════════════════
   RESET ESCOPO HOME
   ═══════════════════════════════════════════════ */
.fm-home { font-family: var(--fm-font); color: var(--fm-text); line-height: 1.5; -webkit-font-smoothing: antialiased; }
.fm-home *, .fm-home *::before, .fm-home *::after { box-sizing: border-box; }
.fm-home a { color: inherit; text-decoration: none; }
.fm-home img { display: block; max-width: 100%; }
.fm-home button { font-family: var(--fm-font); cursor: pointer; border: none; }
.fm-wrap { max-width: var(--fm-max); margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════════════
   SEÇÃO 1 — HEADER
   ═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   HEADER — regras movidas para assets/css/header.css (global)
   ═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   SEÇÃO 2 — HERO
   ═══════════════════════════════════════════════ */
.fm-hero {
  padding: 48px 0 40px; background: #fff;
  position: relative; overflow: hidden;
}
.fm-hero__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; align-items: start;
  position: relative; z-index: 1;
}
.fm-hero__title {
  font-size: 42px; font-weight: 900; line-height: 1.12;
  letter-spacing: -1.5px; margin-bottom: 16px; color: var(--fm-text);
}
.fm-hero__title em {
  font-style: normal; color: var(--fm-red);
  text-decoration: none;
}
.fm-hero__stats-row {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 24px; font-size: 14px; color: var(--fm-text-2);
}
.fm-hero__stats-row strong { color: var(--fm-red); font-weight: 700; }
.fm-hero__ctas { display: flex; gap: 12px; margin-bottom: 28px; }
.fm-hero__btn {
  padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 600; transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.fm-hero__btn--primary { background: var(--fm-red); color: #fff; }
.fm-hero__btn--primary:hover {
  background: var(--fm-red-dark); transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,56,79,.25);
}
.fm-hero__btn--outline {
  background: #fff; color: var(--fm-text);
  border: 1.5px solid var(--fm-border);
}
.fm-hero__btn--outline:hover { border-color: var(--fm-red); color: var(--fm-red); }

/* Geo box */
.fm-hero__geo {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 2px solid var(--fm-red);
  border-radius: 14px; padding: 16px 22px;
  max-width: 520px; margin: 0 auto 28px;
  box-shadow: 0 4px 16px rgba(226,83,82,.1);
}
.fm-hero__geo-ico {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--fm-red); display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px; flex-shrink: 0;
  animation: geoPulse 2s ease-in-out infinite;
}
@keyframes geoPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(226,83,82,.3); }
  50% { box-shadow: 0 0 0 10px rgba(226,83,82,0); }
}
.fm-hero__geo-txt { text-align: left; flex: 1; }
.fm-hero__geo-city { font-size: 16px; font-weight: 700; color: var(--fm-text); }
.fm-hero__geo-sub { font-size: 11px; color: var(--fm-text-3); margin-top: 1px; }
.fm-hero__geo-btn {
  padding: 10px 22px; background: var(--fm-red); color: #fff !important;
  border-radius: 8px; font-weight: 600; font-size: 13px;
  white-space: nowrap; transition: all .15s; flex-shrink: 0;
}
.fm-hero__geo-btn:hover { background: var(--fm-red-dark); }
@media (max-width: 520px) {
  .fm-hero__geo { flex-direction: column; text-align: center; }
  .fm-hero__geo-txt { text-align: center; }
}

/* Search bar (mantido como fallback) */
.fm-hero__search {
  display: flex; align-items: center;
  background: #fff; border: 1.5px solid var(--fm-border);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.04); margin-bottom: 32px;
}
.fm-hero__search i { padding-left: 16px; color: var(--fm-text-3); font-size: 16px; }
.fm-hero__search input {
  flex: 1; padding: 14px 16px; border: none; outline: none;
  font-size: 14px; font-family: var(--fm-font); color: var(--fm-text);
  background: transparent;
}
.fm-hero__search input::placeholder { color: var(--fm-text-3); }

/* Quick links */
.fm-hero__quick-label {
  font-size: 12px; font-weight: 600; color: var(--fm-text-3);
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px;
}
.fm-hero__quick-list { list-style: none; margin: 0; padding: 0; }
.fm-hero__quick-list li { border-bottom: 1px solid var(--fm-border-lt); }
.fm-hero__quick-list li:last-child { border-bottom: none; }
.fm-hero__quick-list a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 0; font-size: 14px; color: var(--fm-text);
  transition: color .2s;
}
.fm-hero__quick-list a:hover { color: var(--fm-red); }
.fm-hero__quick-list .qi { width: 24px; text-align: center; color: var(--fm-red); font-size: 15px; }
.fm-hero__quick-list .fa-chevron-right { margin-left: auto; font-size: 11px; color: var(--fm-text-3); }

/* Visual placeholder */
.fm-hero__visual {
  display: flex; align-items: flex-start; justify-content: center;
  position: relative; padding-top: 0;
}
/* Blob coral SVG atrás da imagem */
.fm-hero__blob {
  position: absolute;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  width: 115%; max-width: 620px; height: auto;
  z-index: 0;
  pointer-events: none;
}
.fm-hero__img {
  width: 100%; max-width: 580px;
  border-radius: 0; overflow: visible;
  background: transparent;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: var(--fm-red-bg);
  position: relative; z-index: 1;
}
.fm-hero__img img { width: 100%; height: auto; object-fit: contain; display: block; }

/* ═══════════════════════════════════════════════
   SEÇÃO 3 — SHOTS
   ═══════════════════════════════════════════════ */
.fm-shots { padding: 64px 0; background: #fff; text-align: center; }
.fm-shots__title { font-size: 28px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 8px; }
.fm-shots__sub { font-size: 15px; color: var(--fm-text-2); margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.fm-shots__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.fm-shots__card {
  border-radius: var(--fm-radius); overflow: hidden; cursor: pointer;
  position: relative; aspect-ratio: 3/4;
  background: linear-gradient(135deg, #f0e4e6, #fdf2f3);
  transition: transform .25s;
}
.fm-shots__card:hover { transform: translateY(-4px); }
.fm-shots__card img { width: 100%; height: 100%; object-fit: cover; }
.fm-shots__card-ph {
  width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: center; font-size: 28px; color: var(--fm-red-bg);
}

/* ═══════════════════════════════════════════════
   SEÇÃO 4 — TRUST (contrate com segurança)
   ═══════════════════════════════════════════════ */
.fm-trust { padding: 64px 0; background: #fff; text-align: center; }
.fm-trust__title { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.fm-trust__sub { font-size: 15px; color: var(--fm-text-2); margin-bottom: 40px; }
.fm-trust__sub a { color: var(--fm-red); font-weight: 600; }
.fm-trust__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; max-width: 800px; margin: 0 auto; }
.fm-trust__item { text-align: center; }
.fm-trust__icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--fm-red-light); color: var(--fm-red);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin: 0 auto 16px;
}
.fm-trust__label { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.fm-trust__desc { font-size: 13px; color: var(--fm-text-2); }

/* ═══════════════════════════════════════════════
   SEÇÃO 5 — CTA BANNER (vermelho)
   ═══════════════════════════════════════════════ */
.fm-cta-banner {
  position: relative; padding: 80px 0;
  background: linear-gradient(135deg, rgba(232,56,79,.93), rgba(200,30,60,.93));
  text-align: center; color: #fff; overflow: hidden;
}
.fm-cta-banner__title {
  font-size: 32px; font-weight: 800; margin-bottom: 24px;
  max-width: 600px; margin-left: auto; margin-right: auto;
  position: relative; z-index: 1;
}
.fm-cta-banner__title em { font-style: normal; }
.fm-cta-banner__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: #fff; color: var(--fm-red);
  border-radius: 10px; font-size: 15px; font-weight: 700;
  transition: all .2s; position: relative; z-index: 1;
}
.fm-cta-banner__btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }

/* Stats bar */
.fm-cta-stats {
  display: flex; justify-content: center; flex-wrap: wrap;
  background: #fff; border-bottom: 1px solid var(--fm-border);
}
.fm-cta-stat {
  padding: 20px 40px; text-align: center;
  border-right: 1px solid var(--fm-border);
}
.fm-cta-stat:last-child { border-right: none; }
.fm-cta-stat__num { font-size: 15px; font-weight: 700; color: var(--fm-text); }
.fm-cta-stat__label { font-size: 12px; color: var(--fm-text-3); margin-top: 2px; }

/* ═══════════════════════════════════════════════
   SEÇÃO 6 — VIDEO
   ═══════════════════════════════════════════════ */
.fm-video { padding: 64px 0; background: #fff; text-align: center; }
.fm-video__title { font-size: 28px; font-weight: 800; margin-bottom: 32px; }
.fm-video__embed {
  max-width: 640px; margin: 0 auto; border-radius: 16px;
  overflow: hidden; aspect-ratio: 16/9;
  background: var(--fm-bg-alt); border: 1px solid var(--fm-border);
  display: flex; align-items: center; justify-content: center;
  position: relative; cursor: pointer;
}
.fm-video__play {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--fm-red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; box-shadow: 0 4px 20px rgba(232,56,79,.3);
  transition: transform .2s; position: relative; z-index: 1;
}
.fm-video__embed:hover .fm-video__play { transform: scale(1.1); }

/* ═══════════════════════════════════════════════
   SEÇÃO 7 — PATROCÍNIO
   ═══════════════════════════════════════════════ */
.fm-sponsor { padding: 64px 0; background: #fff; text-align: center; }
.fm-sponsor__title { font-size: 24px; font-weight: 800; margin-bottom: 24px; }
.fm-sponsor__banner {
  max-width: 900px; margin: 0 auto; border-radius: 16px; overflow: hidden;
  aspect-ratio: 21/9; background: linear-gradient(90deg, var(--fm-red-light), var(--fm-bg-alt));
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--fm-border); font-size: 64px; color: var(--fm-red-bg);
}

/* ═══════════════════════════════════════════════
   SEÇÃO 8 — AVALIAÇÕES
   ═══════════════════════════════════════════════ */
.fm-reviews { padding: 64px 0; background: var(--fm-bg-alt); text-align: center; }
.fm-reviews__title { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.fm-reviews__sub { font-size: 15px; color: var(--fm-text-2); margin-bottom: 28px; max-width: 650px; margin-left: auto; margin-right: auto; }
.fm-reviews__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; background: var(--fm-red); color: #fff;
  border-radius: 10px; font-size: 14px; font-weight: 600; transition: all .2s;
}
.fm-reviews__btn:hover { background: var(--fm-red-dark); }

/* ═══════════════════════════════════════════════
   SEÇÃO 9 — PERSONALIZE
   ═══════════════════════════════════════════════ */
.fm-personalize { padding: 64px 0; background: #fff; }
.fm-personalize__card {
  display: grid; grid-template-columns: auto 1fr;
  gap: 40px; align-items: center;
  max-width: 900px; margin: 0 auto; padding: 40px;
  border-radius: 20px; background: #fff;
  border: 1px solid var(--fm-border);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.fm-personalize__avatar {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--fm-red-light); border: 3px solid var(--fm-red-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; color: var(--fm-red-bg); overflow: hidden;
}
.fm-personalize__avatar img { width: 100%; height: 100%; object-fit: cover; }
.fm-personalize__title { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.fm-personalize__text { font-size: 14px; color: var(--fm-text-2); line-height: 1.6; margin-bottom: 12px; }
.fm-personalize__sub { font-size: 13px; font-weight: 600; color: var(--fm-text); margin-bottom: 16px; }
.fm-personalize__search {
  display: flex; border: 1.5px solid var(--fm-border);
  border-radius: 10px; overflow: hidden; max-width: 400px;
}
.fm-personalize__search input {
  flex: 1; padding: 12px 16px; border: none; outline: none;
  font-size: 14px; font-family: var(--fm-font);
}
.fm-personalize__search-btn {
  padding: 12px 20px; background: var(--fm-red); color: #fff;
  font-size: 14px; font-weight: 600; white-space: nowrap;
}

/* ═══════════════════════════════════════════════
   SEÇÃO 10 — MÍDIA
   ═══════════════════════════════════════════════ */
.fm-media { padding: 64px 0; background: #fff; border-top: 1px solid var(--fm-border); text-align: center; }
.fm-media__title { font-size: 24px; font-weight: 800; margin-bottom: 32px; }
.fm-media__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.fm-media__card { padding: 24px; border-radius: var(--fm-radius); border: 1px solid var(--fm-border); text-align: center; }
.fm-media__logo { font-size: 28px; font-weight: 900; margin-bottom: 12px; font-family: Georgia, 'Times New Roman', serif; letter-spacing: -1px; color: var(--fm-text); }
.fm-media__logo--red { color: #CC0000; }
.fm-media__logo--green { color: #00A859; font-family: var(--fm-font); font-weight: 800; }
.fm-media__logo--italic { font-style: italic; }
.fm-media__text { font-size: 12px; color: var(--fm-text-2); line-height: 1.5; margin-bottom: 12px; min-height: 54px; }
.fm-media__link { font-size: 12px; color: var(--fm-red); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }

/* ═══════════════════════════════════════════════
   SEÇÃO 11 — DIRETÓRIO (fundo escuro)
   ═══════════════════════════════════════════════ */
.fm-directory { padding: 64px 0; background: var(--fm-bg-dark); color: #fff; }
.fm-directory__title { font-size: 28px; font-weight: 800; text-align: center; margin-bottom: 8px; }
.fm-directory__sub { font-size: 14px; color: rgba(255,255,255,.55); text-align: center; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }
.fm-directory__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.fm-directory__col-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 16px; font-weight: 700; margin-bottom: 8px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.fm-directory__col-title i { color: var(--fm-red); }
.fm-directory__col-desc { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 16px; line-height: 1.5; }
.fm-directory__links { display: flex; flex-wrap: wrap; gap: 8px; }
.fm-directory__link {
  padding: 6px 14px; border-radius: 20px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  font-size: 13px; color: rgba(255,255,255,.65); transition: all .2s;
}
.fm-directory__link:hover { background: var(--fm-red); border-color: var(--fm-red); color: #fff; }

/* ═══════════════════════════════════════════════
   SEÇÃO 12 — SEO TEXT
   ═══════════════════════════════════════════════ */
.fm-seo { padding: 48px 0; background: #fff; border-top: 1px solid var(--fm-border); }
.fm-seo__title { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.fm-seo__body { font-size: 14px; color: var(--fm-text-2); line-height: 1.7; max-width: 900px; }
.fm-seo__body a { color: var(--fm-red); font-weight: 500; }

/* ═══════════════════════════════════════════════
   SEÇÃO 13 — LINKS INSTITUCIONAIS
   ═══════════════════════════════════════════════ */
.fm-about { padding: 48px 0; background: var(--fm-bg-alt); border-top: 1px solid var(--fm-border); }
.fm-about__header { font-size: 18px; font-weight: 800; margin-bottom: 24px; }
.fm-about__grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.fm-about__col-title { font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.fm-about__list { list-style: none; margin: 0; padding: 0; }
.fm-about__list li { margin-bottom: 6px; }
.fm-about__list a { font-size: 13px; color: var(--fm-text-2); transition: color .2s; display: inline-flex; align-items: center; gap: 6px; }
.fm-about__list a:hover { color: var(--fm-red); }

/* ═══════════════════════════════════════════════
   SEÇÃO 14 — FOOTER BOTTOM
   ═══════════════════════════════════════════════ */
.fm-footer {
  padding: 20px 0; background: var(--fm-bg-alt);
  border-top: 1px solid var(--fm-border);
}
.fm-footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--fm-text-3);
}
.fm-footer__logo { font-size: 18px; font-weight: 800; color: var(--fm-text); }
.fm-footer__logo b { color: var(--fm-red); }
.fm-footer__links { display: flex; gap: 20px; }
.fm-footer__links a { font-size: 12px; color: var(--fm-text-3); transition: color .2s; display: inline-flex; align-items: center; gap: 4px; }
.fm-footer__links a:hover { color: var(--fm-red); }

/* ═══════════════════════════════════════════════
   RESPONSIVO
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .fm-hero__grid { grid-template-columns: 1fr; }
  .fm-hero__visual { display: none; }
  .fm-shots__grid { grid-template-columns: repeat(3,1fr); }
  .fm-media__grid { grid-template-columns: repeat(2,1fr); }
  .fm-directory__grid { grid-template-columns: 1fr; }
  .fm-about__grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .fm-header__nav { display: none; }
  .fm-hero__title { font-size: 30px; }
  .fm-hero__ctas { flex-direction: column; }
  .fm-hero__ctas .fm-hero__btn { text-align: center; justify-content: center; }
  .fm-shots__grid { grid-template-columns: repeat(2,1fr); }
  .fm-trust__grid { grid-template-columns: 1fr; gap: 24px; }
  .fm-cta-stats { flex-direction: column; }
  .fm-cta-stat { border-right: none; border-bottom: 1px solid var(--fm-border); padding: 16px 24px; }
  .fm-cta-stat:last-child { border-bottom: none; }
  .fm-media__grid { grid-template-columns: 1fr; }
  .fm-personalize__card { grid-template-columns: 1fr; text-align: center; }
  .fm-personalize__avatar { margin: 0 auto; }
  .fm-personalize__search { margin: 0 auto; }
  .fm-cta-banner__title { font-size: 24px; padding: 0 16px; }
  .fm-about__grid { grid-template-columns: repeat(2,1fr); }
  .fm-footer__inner { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 480px) {
  .fm-about__grid { grid-template-columns: 1fr; }
  .fm-hero__stats-row { flex-direction: column; gap: 4px; }
}

/* ═══════════════════════════════════════════════
   X-STYLE REDESIGN — Override layout
   ═══════════════════════════════════════════════ */

/* Esconder seções legadas no novo layout */
.fm-home--xstyle .fm-hero,
.fm-home--xstyle .fm-shots,
.fm-home--xstyle .fm-trust,
.fm-home--xstyle .fm-cta-banner,
.fm-home--xstyle .fm-cta-stats,
.fm-home--xstyle .fm-video,
.fm-home--xstyle .fm-sponsor,
.fm-home--xstyle .fm-reviews,
.fm-home--xstyle .fm-personalize,
.fm-home--xstyle .fm-media,
.fm-home--xstyle .fm-directory { display: none !important; }

.fmx-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── HERO (fundo branco, sem card, blob atrás da foto) ─────────── */
.fmx-hero { background: #fff; padding: 56px 0 48px; }
.fmx-hero__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.fmx-hero__card {
  background: transparent; border-radius: 0;
  padding: 0; display: grid;
  grid-template-columns: 1.05fr .95fr; gap: 56px;
  align-items: center; box-shadow: none;
}
.fmx-hero__title {
  font-size: 52px; font-weight: 800; line-height: 1.08;
  color: #1a1a2e; margin: 0 0 18px; letter-spacing: -1.8px;
}
.fmx-hero__title em { font-style: normal; background: linear-gradient(90deg,#e25352,#ff8a89); -webkit-background-clip: text; background-clip: text; color: transparent; }
.fmx-hero__desc {
  font-size: 16px; color: #6b7280; line-height: 1.6;
  margin: 0 0 32px; max-width: 520px;
}
.fmx-hero__ctas { display: flex; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }
.fmx-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 26px; border-radius: 10px; font-size: 14px;
  font-weight: 700; text-decoration: none; transition: all .15s;
  border: 1.5px solid transparent; line-height: 1;
}
.fmx-btn--primary { background: var(--fm-red); color: #fff !important; border-color: var(--fm-red); }
.fmx-btn--primary:hover { background: var(--fm-red-dark); border-color: var(--fm-red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(226,83,82,.3); }
.fmx-btn--outline { background: #fff; color: #1a1a2e !important; border-color: #e5e7eb; }
.fmx-btn--outline:hover { border-color: var(--fm-red); color: var(--fm-red) !important; }
.fmx-btn--lg { padding: 16px 36px; font-size: 15px; }
.fmx-hero__statline {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  font-size: 12px; color: #9ca3af; padding-top: 22px;
  border-top: 1px solid #f3f4f6; margin-top: 8px;
}
.fmx-hero__statline strong { color: var(--fm-red); font-weight: 700; font-size: 13px; }
.fmx-dot { color: var(--fm-red); font-weight: 700; }
.fmx-hero__visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 480px; }
.fmx-hero__blob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 100%; max-width: 460px; height: auto;
  z-index: 0; pointer-events: none;
}
.fmx-hero__visual img {
  position: relative; z-index: 1;
  max-width: 92%; height: auto; max-height: 520px;
  object-fit: contain; display: block;
}
.fmx-hero__ph { width: 280px; height: 280px; border-radius: 50%; background: #fff0f1; display: flex; align-items: center; justify-content: center; font-size: 80px; color: var(--fm-red); position: relative; z-index: 1; }

@media (max-width: 860px) {
  .fmx-hero { padding: 32px 0; }
  .fmx-hero__card { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .fmx-hero__title { font-size: 34px; letter-spacing: -1px; }
  .fmx-hero__desc { margin-left: auto; margin-right: auto; }
  .fmx-hero__ctas { justify-content: center; }
  .fmx-hero__statline { justify-content: center; }
  .fmx-hero__visual { min-height: 340px; order: -1; }
  .fmx-hero__blob { max-width: 320px; }
}

/* ── BUSCA (vermelha) — agora com geo-detect ─────── */
.fmx-search { background: var(--fm-red); padding: 64px 0 56px; color: #fff; text-align: center; }
.fmx-search__title { font-size: 32px; font-weight: 800; margin: 0 0 10px; color: #fff; letter-spacing: -.5px; }
.fmx-search__title em { font-style: normal; color: #ffd1d1; }
.fmx-search__sub { font-size: 14px; opacity: .92; margin: 0 0 28px; }
.fmx-geo {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border-radius: 14px;
  padding: 12px 12px 12px 20px; max-width: 640px;
  margin: 0 auto 24px; box-shadow: 0 8px 28px rgba(0,0,0,.18);
  border: none; cursor: pointer; width: 100%;
  text-align: left; font-family: var(--fm-font);
  transition: transform .15s, box-shadow .15s;
}
.fmx-geo:hover { transform: translateY(-1px); box-shadow: 0 12px 36px rgba(0,0,0,.22); }
.fmx-geo__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--fm-red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  animation: fmxGeoPulse 2.2s ease-in-out infinite;
}
@keyframes fmxGeoPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(226,83,82,.45); }
  50%     { box-shadow: 0 0 0 12px rgba(226,83,82,0); }
}
.fmx-geo__text { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.fmx-geo__city { font-size: 15px; font-weight: 700; color: #1a1a2e; line-height: 1.2; }
.fmx-geo__sub  { font-size: 11px; color: #9ca3af; margin-top: 2px; }
.fmx-geo__btn {
  background: var(--fm-red); color: #fff !important;
  padding: 12px 20px; border-radius: 10px;
  font-size: 13px; font-weight: 700; white-space: nowrap;
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  transition: background .15s;
}
.fmx-geo__btn:hover { background: var(--fm-red-dark); }
.fmx-geo--ok .fmx-geo__icon { background: var(--fm-green, #22c55e); animation: none; }

.fmx-search__or {
  font-size: 12px; opacity: .8;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin: 8px 0 14px; color: #ffe0e0;
}
.fmx-search__pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.fmx-pill {
  display: inline-flex; align-items: center;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(255,255,255,.15); color: #fff !important;
  font-size: 13px; font-weight: 600; text-decoration: none;
  border: 1px solid rgba(255,255,255,.25); transition: all .15s;
}
.fmx-pill:hover { background: #fff; color: var(--fm-red) !important; border-color: #fff; }

@media (max-width: 560px) {
  .fmx-geo { flex-direction: column; text-align: center; padding: 16px; gap: 10px; }
  .fmx-geo__btn { width: 100%; justify-content: center; }
  .fmx-search__title { font-size: 24px; }
}

/* ── ANUNCIAR ─────────────────────────────────── */
.fmx-anunciar { background: var(--fm-red); padding: 0 0 64px; }
.fmx-anunciar__card {
  background: #fff; border-radius: 24px; padding: 48px 48px;
  box-shadow: 0 16px 48px rgba(0,0,0,.15); text-align: center;
}
.fmx-anunciar__title { font-size: 30px; font-weight: 800; margin: 0 0 6px; color: #1a1a2e; }
.fmx-anunciar__title em { font-style: normal; color: var(--fm-red); }
.fmx-anunciar__sub { font-size: 14px; color: #6b7280; margin: 0 0 36px; }
.fmx-anunciar__steps {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
  margin-bottom: 32px; text-align: center;
}
.fmx-step { padding: 0 8px; }
.fmx-step__icon {
  width: 72px; height: 72px; margin: 0 auto 16px;
  border-radius: 14px; background: #ffe7e7;
  display: flex; align-items: center; justify-content: center;
  color: var(--fm-red); font-size: 28px;
  border: 1px solid #ffd0d0;
}
.fmx-step h3 { font-size: 17px; font-weight: 700; color: #1a1a2e; margin: 0 0 8px; }
.fmx-step h3 em { font-style: normal; color: var(--fm-red); }
.fmx-step p { font-size: 13px; color: #6b7280; line-height: 1.5; margin: 0; }
.fmx-anunciar__cta-text { font-size: 13px; color: #6b7280; max-width: 580px; margin: 0 auto 20px; line-height: 1.5; }
.fmx-anunciar__cta-text strong { color: #1a1a2e; }

@media (max-width: 720px) {
  .fmx-anunciar__card { padding: 32px 20px; }
  .fmx-anunciar__steps { grid-template-columns: 1fr; gap: 24px; }
  .fmx-anunciar__title { font-size: 24px; }
}

/* ── PILLARS (4 + foto) ───────────────────────── */
.fmx-pillars { background: #fff; padding: 72px 0 64px; }
.fmx-pillars__grid {
  display: grid; grid-template-columns: 1.2fr .8fr;
  gap: 56px; align-items: center;
}
.fmx-pillars__title { font-size: 30px; font-weight: 800; margin: 0 0 24px; color: #1a1a2e; line-height: 1.2; }
.fmx-pillars__title em { font-style: normal; color: var(--fm-red); }
.fmx-pillars__items { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px; }
.fmx-pillar h4 { font-size: 15px; font-weight: 700; color: #1a1a2e; margin: 0 0 6px; }
.fmx-pillar p { font-size: 13px; color: #6b7280; line-height: 1.5; margin: 0; }
.fmx-pillars__visual { display: flex; align-items: center; justify-content: center; }
.fmx-pillars__visual img { max-width: 100%; height: auto; border-radius: 20px; max-height: 380px; object-fit: cover; }
.fmx-pillars__ph { width: 240px; height: 240px; border-radius: 50%; background: #ffe7e7; display: flex; align-items: center; justify-content: center; font-size: 80px; color: var(--fm-red); }

@media (max-width: 860px) {
  .fmx-pillars__grid { grid-template-columns: 1fr; gap: 32px; }
  .fmx-pillars__items { grid-template-columns: 1fr; }
}

/* ── CATEGORIAS ───────────────────────────────── */
.fmx-cats { background: var(--fm-red); padding: 64px 0; color: #fff; }
.fmx-cats__title { font-size: 28px; font-weight: 800; text-align: center; margin: 0 0 6px; color: #fff; }
.fmx-cats__title em { font-style: normal; color: #ffd1d1; }
.fmx-cats__sub { font-size: 14px; opacity: .85; text-align: center; margin: 0 auto 32px; max-width: 700px; }
.fmx-cats__list { display: flex; flex-direction: column; gap: 16px; }
.fmx-cat-card {
  background: #fff; border-radius: 14px;
  padding: 20px 24px; display: grid;
  grid-template-columns: minmax(280px, 1fr) 2fr;
  gap: 32px; align-items: center;
}
.fmx-cat-card__head { display: flex; align-items: center; gap: 14px; }
.fmx-cat-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: #ffe7e7; color: var(--fm-red);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.fmx-cat-card__head h3 { font-size: 15px; font-weight: 700; color: #1a1a2e; margin: 0 0 2px; }
.fmx-cat-card__head p { font-size: 12px; color: #6b7280; margin: 0; line-height: 1.4; }
.fmx-cat-card__pills { display: flex; flex-wrap: wrap; gap: 6px; }
.fmx-pill--cat {
  background: #fff; color: var(--fm-red) !important;
  border: 1px solid var(--fm-red); font-size: 11px;
  padding: 5px 12px; font-weight: 600;
}
.fmx-pill--cat:hover { background: var(--fm-red); color: #fff !important; }

@media (max-width: 860px) {
  .fmx-cat-card { grid-template-columns: 1fr; gap: 14px; }
  .fmx-cats__title { font-size: 24px; }
}

/* Garante que .fm-seo + .fm-about ainda apareçam bem */
.fm-home--xstyle .fm-seo { background: #f8f8fa; padding: 56px 0; }
.fm-home--xstyle .fm-about { padding: 56px 0; }

/* ── SOBRE ACOMPANHANTES (SEO content) ─────────── */
.fmx-about-seo { background: #fff; padding: 64px 0 56px; }
.fmx-about-seo__title { font-size: 26px; font-weight: 800; color: #1a1a2e; margin: 0 0 24px; letter-spacing: -.5px; }
.fmx-about-seo__title em { font-style: normal; color: var(--fm-red); }
.fmx-about-seo__body { font-size: 14px; color: #4b5563; line-height: 1.75; max-width: 880px; }
.fmx-about-seo__body p { margin: 0 0 14px; }
.fmx-about-seo__body strong { color: #1a1a2e; font-weight: 700; }
.fmx-about-seo__body a { color: var(--fm-red); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(226,83,82,.3); }
.fmx-about-seo__body a:hover { text-decoration-color: var(--fm-red); }

/* ── FAQ ───────────────────────────────────────── */
.fmx-faq { background: #f8f8fa; padding: 56px 0; }
.fmx-faq__title { font-size: 26px; font-weight: 800; color: #1a1a2e; text-align: center; margin: 0 0 32px; letter-spacing: -.5px; }
.fmx-faq__title em { font-style: normal; color: var(--fm-red); }
.fmx-faq__list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.fmx-faq__item {
  background: #fff; border-radius: 12px;
  border: 1px solid #e5e7eb; overflow: hidden;
}
.fmx-faq__item[open] { border-color: var(--fm-red); box-shadow: 0 2px 12px rgba(226,83,82,.08); }
.fmx-faq__q {
  font-size: 15px; font-weight: 700; color: #1a1a2e;
  padding: 18px 22px; cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.fmx-faq__q::-webkit-details-marker { display: none; }
.fmx-faq__q i { color: var(--fm-red); font-size: 12px; transition: transform .2s; }
.fmx-faq__item[open] .fmx-faq__q i { transform: rotate(180deg); }
.fmx-faq__a {
  padding: 0 22px 18px; font-size: 14px; color: #4b5563;
  line-height: 1.65; border-top: 1px solid #f3f4f6; padding-top: 14px;
  margin-top: -2px;
}

@media (max-width: 560px) {
  .fmx-about-seo__title, .fmx-faq__title { font-size: 22px; }
  .fmx-faq__q { font-size: 14px; padding: 16px 18px; }
  .fmx-faq__a { padding: 14px 18px 16px; font-size: 13px; }
}
