/* ════════════════════════════════════════════════════════════════
   onlyfans.css — Section OnlyFans
   Cores: #00AFF0 azul + branco
   Layout: foto à ESQUERDA · texto à DIREITA (oposto do Privacy)
   ════════════════════════════════════════════════════════════════ */

/* ─── VARIÁVEIS LOCAIS ─────────────────────────────────────────── */
.onlyfans-section {
  --of-blue:       #00AFF0;
  --of-blue-dark:  #0090CC;
  --of-blue-light: #33C2F5;
  --of-blue-glow:  rgba(0, 175, 240, 0.40);
  --of-blue-sm:    rgba(0, 175, 240, 0.10);
  --of-bg:         #010D14;   /* fundo quase preto azulado        */
  --of-bg-mid:     #031825;   /* fundo secundário                 */
  --of-ink:        #FFFFFF;
  --of-ink-soft:   rgba(255,255,255,0.70);
  --of-ink-dim:    rgba(255,255,255,0.40);
}

/* ─── SECTION CONTAINER ────────────────────────────────────────── */
.onlyfans-section {
  background: var(--of-bg);
  color: var(--of-ink);
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
  padding-block: clamp(1.5rem, 4vw, 3rem);
}

/* Brilho azul vindo do lado esquerdo (onde fica a foto) */
.onlyfans-section::before {
  content: '';
  position: absolute;
  top: 0; left: -10%; bottom: 0;
  width: 55%;
  background: radial-gradient(
    ellipse at 20% 50%,
    rgba(0,175,240,0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

/* Grid — foto esquerda, texto direita */
.onlyfans-section .container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;  /* foto | texto */
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  min-height: 100svh;
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════════════════════════════
   COLUNA DA FOTO (esquerda)
   ════════════════════════════════════════════════════════════════ */
.of-photo-col {
  position: relative;
  aspect-ratio: 3 / 4;
  max-width: 460px;
  width: 100%;
  opacity: 0;
  transform: translateX(-40px);
  animation: ofSlideRight 1.1s 0.3s cubic-bezier(.2,.8,.2,1) forwards;
}

/* Bloco azul sólido atrás da foto (oposto do laranja do Privacy) */
.of-photo-block {
  position: absolute;
  top: 8%;
  left: -5%;           /* ← esquerda (Privacy era right) */
  width: 22%;
  height: 92%;
  background: var(--of-blue);
  border-radius: 6px;
  z-index: 1;
}

/* Glow azul difuso */
.of-photo-glow {
  position: absolute;
  inset: -15%;
  background:
    radial-gradient(circle at 40% 50%, rgba(0,175,240,0.50) 0%, transparent 55%),
    radial-gradient(circle at 70% 30%, rgba(0,144,204,0.30) 0%, transparent 50%);
  filter: blur(42px);
  z-index: 0;
  animation: ofGlowPulse 4s ease-in-out infinite;
}

/* Frame da foto */
.of-photo-frame {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 6px;
  overflow: hidden;
  z-index: 2;
  background: var(--of-bg-mid);
  box-shadow:
    0 30px 60px -20px rgba(0,175,240,0.35),
    0 20px 40px -15px rgba(0,0,0,0.5);
}
.of-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* Linhas decorativas (espelhadas — Privacy tinha right, aqui left) */
.of-deco-line { position: absolute; z-index: 3; }
.of-deco-line.h {
  bottom: -12px; right: 8%;
  width: 35%; height: 2px;
  background: var(--of-ink);
}
.of-deco-line.v {
  top: 5%; left: -2%;   /* ← esquerda */
  width: 2px; height: 25%;
  background: var(--of-blue);
}

/* ════════════════════════════════════════════════════════════════
   COLUNA DO TEXTO (direita)
   ════════════════════════════════════════════════════════════════ */
.of-text-col {
  padding-top: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Eyebrow */
.of-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--of-blue);
  margin-bottom: clamp(0.85rem, 1.5vw, 1.25rem);
  opacity: 0;
  transform: translateY(18px);
  animation: ofFadeUp 0.9s 0.5s cubic-bezier(.2,.8,.2,1) forwards;
}
.of-eyebrow::before {
  content: '';
  width: 28px; height: 1.5px;
  background: var(--of-blue);
  flex-shrink: 0;
}

/* Título principal */
.of-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4.5rem, 14vw, 11rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--of-ink);
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
  opacity: 0;
  transform: translateY(36px);
  animation: ofFadeUp 1.1s 0.65s cubic-bezier(.2,.8,.2,1) forwards;
}
/* Texto azul dentro do título */
.of-title .of-acc {
  color: var(--of-blue);
  display: block;
}

/* Tagline */
.of-tagline {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--of-ink-soft);
  max-width: 38ch;
  line-height: 1.7;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  opacity: 0;
  transform: translateY(18px);
  animation: ofFadeUp 1s 0.8s cubic-bezier(.2,.8,.2,1) forwards;
}

/* ─── VANTAGENS (lista de features) ──────────────────────────── */
.of-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  opacity: 0;
  transform: translateY(18px);
  animation: ofFadeUp 1s 0.95s cubic-bezier(.2,.8,.2,1) forwards;
}

.of-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.of-feature-icon {
  width: 36px; height: 36px;
  background: var(--of-blue-sm);
  border: 1px solid rgba(0,175,240,0.25);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--of-blue);
  flex-shrink: 0;
  margin-top: 2px;
  transition: background 0.25s, border-color 0.25s;
}
.of-feature:hover .of-feature-icon {
  background: rgba(0,175,240,0.18);
  border-color: var(--of-blue);
}

.of-feature-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--of-ink);
  margin-bottom: 2px;
}
.of-feature-text span {
  font-size: 0.82rem;
  color: var(--of-ink-dim);
  line-height: 1.5;
}

/* ─── BOTÕES CTA ──────────────────────────────────────────────── */
.of-btns {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
  animation: ofFadeUp 1s 1.1s cubic-bezier(.2,.8,.2,1) forwards;
}

/* Botão primário azul */
.of-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--of-blue);
  border: 2px solid transparent;
  border-radius: 6px;
  color: #fff;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  -webkit-tap-highlight-color: transparent;
  position: relative; overflow: hidden;
}
/* Brilho que percorre o botão */
.of-btn-primary::after {
  content: '';
  position: absolute;
  top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: rgba(255,255,255,0.25);
  transform: skewX(-20deg);
  animation: ofShine 3.5s ease-in-out infinite;
}
.of-btn-primary:hover {
  background: var(--of-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--of-blue-glow);
}

/* Botão outline branco */
.of-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  color: var(--of-ink-soft);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  -webkit-tap-highlight-color: transparent;
}
.of-btn-outline:hover {
  border-color: var(--of-blue);
  color: var(--of-blue);
  background: var(--of-blue-sm);
  transform: translateY(-2px);
}

/* ─── CONTADOR / SOCIAL PROOF ─────────────────────────────────── */
.of-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(14px);
  animation: ofFadeUp 1s 1.25s cubic-bezier(.2,.8,.2,1) forwards;
}
.of-stat-n {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--of-blue);
  line-height: 1;
  display: block;
}
.of-stat-l {
  font-size: 0.68rem;
  color: var(--of-ink-dim);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 3px;
  display: block;
}

/* ════════════════════════════════════════════════════════════════
   KEYFRAMES
   ════════════════════════════════════════════════════════════════ */
@keyframes ofFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ofSlideRight {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes ofGlowPulse {
  0%,100% { opacity: 0.85; transform: scale(1);    }
  50%      { opacity: 1;   transform: scale(1.06); }
}
@keyframes ofShine {
  0%   { left: -75%; }
  40%  { left: 125%; }
  100% { left: 125%; }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVO
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 860px) {
  .onlyfans-section .container {
    grid-template-columns: 1fr;   /* empilha em coluna única       */
    min-height: auto;
    padding-block: clamp(5rem, 12vw, 7rem);
    gap: 2.5rem;
  }

  /* No mobile: foto vai pra baixo do texto */
  .onlyfans-section .container {
    grid-template-areas:
      "text"
      "photo";
  }
  .of-text-col  { grid-area: text; padding-top: 0; }
  .of-photo-col {
    grid-area: photo;
    max-width: 320px;
    margin-inline: auto;
    /* reseta animação lateral para vertical */
    animation-name: ofFadeUp;
  }

  .of-stats { gap: 1.5rem; }
  .of-btns  { flex-direction: column; }
  .of-btn-primary,
  .of-btn-outline { justify-content: center; }
}

@media (max-width: 480px) {
  .of-title { font-size: clamp(3.5rem, 20vw, 6rem); }
  .of-stats { flex-wrap: wrap; gap: 1.25rem; }
}

/* Garante visibilidade se animação não rodar */
@media (prefers-reduced-motion: reduce) {
  .of-eyebrow, .of-title, .of-tagline,
  .of-features, .of-btns, .of-stats,
  .of-photo-col {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   NAV — tema OnlyFans (classe adicionada pelo JS)
   ════════════════════════════════════════════════════════════════ */
.nav--onlyfans {
  background: rgba(1, 13, 20, 0.92);
  border-bottom-color: rgba(0,175,240,0.20);
}
.nav--onlyfans::after {
  background: linear-gradient(90deg, transparent, var(--p-onlyfans), transparent);
  opacity: 0.5;
}
.nav--onlyfans .nav-logo-name          { color: #ffffff; }
.nav--onlyfans .nav-logo-name .accent  { color: var(--p-onlyfans); }
.nav--onlyfans .nav-logo-sub           { color: rgba(255,255,255,0.40); }
.nav--onlyfans .nav-links a            { color: rgba(255,255,255,0.60); }
.nav--onlyfans .nav-links a:hover      { color: var(--p-onlyfans); }
.nav--onlyfans .nav-links a::after     { background: var(--p-onlyfans); }
.nav--onlyfans .icon-btn               { border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.60); }
.nav--onlyfans .icon-btn:hover         { border-color: var(--p-onlyfans); color: var(--p-onlyfans); }
.nav--onlyfans .lang-btn               { border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.60); }
.nav--onlyfans .lang-btn:hover         { border-color: var(--p-onlyfans); color: var(--p-onlyfans); }
.nav--onlyfans .btn-menu-desktop       { background: var(--p-onlyfans); }
.nav--onlyfans .hamburger              { border-color: rgba(255,255,255,0.15); }
.nav--onlyfans .hamburger span         { background: rgba(255,255,255,0.75); }