/**
 * 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
   ═══════════════════════════════════════════════ */
.fm-header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff; border-bottom: 1px solid var(--fm-border);
  height: 60px;
}
.fm-header__inner {
  display: flex; align-items: center;
  max-width: var(--fm-max); margin: 0 auto;
  padding: 0 24px; height: 100%;
  gap: 16px;
}
.fm-header__logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 32px; font-weight: 800; white-space: nowrap;
}
.fm-header__logo-mark {
  width: 32px; height: 32px; background: var(--fm-red);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; color: #fff; font-size: 21px;
  font-weight: 900;
}
.fm-header__logo-text { color: var(--fm-text); }
.fm-header__logo-text b { color: var(--fm-red); font-weight: 400; }
.fm-header__spacer { flex: 1; }
.fm-header__nav { display: flex; align-items: center; gap: 6px; }
.fm-header__link {
  padding: 8px 16px; font-size: 18px; font-weight: 500;
  color: var(--fm-text-2); border-radius: 8px;
  transition: all .2s;
}
.fm-header__link:hover { color: var(--fm-red); background: var(--fm-red-light); }
.fm-header__link--cta {
  color: var(--fm-red); font-weight: 600;
}
.fm-header__icons { display: flex; gap: 8px; margin-left: 12px; }
.fm-header__icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--fm-bg-alt); border: 1px solid var(--fm-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--fm-text-2); font-size: 16px; transition: all .2s;
}
.fm-header__icon:hover { color: var(--fm-red); border-color: var(--fm-red); }

/* ═══════════════════════════════════════════════
   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); }

/* Search bar */
.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; }
}
