/*
Theme Name: OAZ Models
Author: OAZ Architect
Version: 1.0.0
*/

/* =================================================
   ROOT VARIABLES
================================================= */
:root {
  --oaz-gold: #F5E6A3;
  --oaz-black: #050505;
  --oaz-dark: #111111;
  --oaz-white: #ffffff;
  --oaz-text: #888888;
}

/* =================================================
   RESET / BASE
================================================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--oaz-black);
  color: var(--oaz-text);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--oaz-white);
  margin: 0 0 10px;
}

a {
  color: var(--oaz-gold);
  text-decoration: none;
}

a:hover {
  color: var(--oaz-white);
}

/* =================================================
   LAYOUT SYSTEM
================================================= */
.oaz-section {
  width: 100%;
}

.oaz-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
}

@media (max-width: 1200px) {
  .oaz-inner { padding: 0 40px; }
}

@media (max-width: 768px) {
  .oaz-inner { padding: 0 20px; }
}

/* =================================================
   HEADER
================================================= */
.site-header {
  background: var(--oaz-black);
  padding: 15px 0;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-logo-link img {
  width: 100px;
  height: auto;
}

/* HAMBURGER */
.menu-toggle {
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--oaz-gold);
  z-index: 10000;
}

/* DRAWER MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: #0b0b0b;
  padding: 100px 25px;
  transition: right 0.3s ease;
  z-index: 9999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu li {
  margin-bottom: 10px;
}

.mobile-menu a {
  color: var(--oaz-gold);
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* =================================================
   HERO — HOME
================================================= */
.home-hero {
  padding-top: 24px;   /* ↓ distância da logo */
  padding-bottom: 20px; /* ↓ distância até os filtros */
  text-align: center;
}

.home-hero h1 {
  font-size: 22px;
  margin-top: 16px;    /* controla espaço logo → título */
  margin-bottom: 10px; /* controla espaço título → subtítulo */
}

.home-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 14px;
  color: #777;
}

@media (max-width: 768px) {
  .home-hero {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .home-hero h1 {
    font-size: 22px;
    margin-top: 5px;
    margin-bottom: 5px;
  }
}


/* =================================================
   FILTERS
================================================= */
.model-filters {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin: 15px 0 20px;
}

.filter-group {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.filter-group a {
  border: 1px solid rgba(245,230,163,0.4);
  padding: 8px 18px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--oaz-gold);
}

.filter-group a:hover {
  background: var(--oaz-gold);
  color: #000;
}

@media (max-width: 768px) {
  .filter-group {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
  }
}

/* =================================================
   MODELS GRID
================================================= */
.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

@media (max-width: 1024px) {
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
   FEATURED MODELS — IMAGENS SEM CORTE
========================================= */

.model-thumb {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
}

/* cria a altura proporcional */
.model-thumb::before {
  content: "";
  display: block;
  padding-top: 133.33%; /* 4 / 3 */
}

/* imagem posicionada dentro */
.model-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;     /* NÃO corta */
  object-position: center;
}


/* BADGES (HOME + SINGLE) */
.model-badges {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  gap: 6px;
  pointer-events: none;
}

.badge {
  font-size: 9px;
  padding: 4px 10px;
  border-radius: 1px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
}

.badge-woman { background: #d63384; }
.badge-trans { background: #6f42c1; }

.badge-verified {
  background: transparent;
  color: #00c896;
  border-color: rgba(0,200,150,0.5);
}

.badge-vip {
  background: transparent;
  color: var(--oaz-gold);
  border-color: rgba(245,230,163,0.6);
}

.badge-video {
  background: transparent;
  color: #c864ff;
  border-color: rgba(200,100,255,0.5);
}

/* TEXT */
.model-card h3 {
  font-size: 14px;
  text-align: center;
  margin: 10px 0 6px;
}

.model-location,
.model-gender {
  text-align: center;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 15px;
}

/* =================================================
   SINGLE MODEL
================================================= */
.profile-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 70px;
}

@media (max-width: 1024px) {
  .profile-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.featured-image {
  position: relative;
}

/* =================================================
   FOOTER
================================================= */
.site-footer {
  border-top: 1px solid #111;
  padding: 40px 0;
  text-align: center;
  font-size: 12px;
  color: #777;
}

.footer-logo img {
  max-width: 110px;
  opacity: 0.85;
}

.footer-logo img:hover {
  opacity: 1;
}
/* ===============================
   BADGES — FEATURED MODELS (FORÇA FINAL)
================================ */

.models-grid .model-badges {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  z-index: 10;
}

.models-grid .badge {
  background-color: #050505 !important;   /* PRETO */
  color: #F5E6A3 !important;              /* DOURADO */
  border: 1px solid #F5E6A3 !important;
  border-radius: 2px !important;          /* QUADRADA */
  font-size: 9px;
  padding: 5px 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}


/* =========================================
   SINGLE MODEL — BADGES ABAIXO DA IMAGEM
========================================= */

.single-badges {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  justify-content: center;   /* alinhamento final */
  position: static;          /* comportamento normal no fluxo */
}

.single-badges .badge {
  font-size: 11px;
  padding: 6px 16px;
  font-weight: 700;
  letter-spacing: 2px;
  border-width: 2px;
  border-radius: 2px;
}


/* ===============================
   CTA WHATSAPP — SINGLE MODEL
================================ */

.cta-whatsapp {
  display: flex;
  justify-content: center;
  margin-top: 30px;   /* ajuste aqui se quiser */
  
}
  .btn-whatsapp {
  display: inline-block;
  text-align: center; /* garante que o texto fique correto */

}


/* ================================
   CTA WHATSAPP — 3D REALISTA
================================ */

.btn-whatsapp {
  background: linear-gradient(180deg, #f5e6a3 0%, #e2c96a 100%);
  justify-content: center;
  color: #111;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;

  padding: 18px 42px;
  border-radius: 10px;

  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

/* Hover: botão “sobe” */
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow:
    0 13px 0 #c4ad57,
    0 22px 36px rgba(0,0,0,0.5);
}

/* Click: botão “afunda” */
  .btn-whatsapp:active {
  transform: translateY(6px);
  box-shadow:
    0 4px 0 #c4ad57,
    0 8px 14px rgba(0,0,0,0.45);
}
  @media (max-width: 768px) {
  .btn-whatsapp {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
      
  }

/* === HOME — FEATURED MODELS SPACING === */
.home .models-section {
  padding-top: 5px;
  padding-bottom: 10px;
}
/* === AJUSTE DE ESPAÇAMENTO DO H1 NA HOME === */
.home .home-hero h1 {
 margin-top: 5px;   /* mais colado na logo */
 margin-bottom: 8px; /* mais compacto */
}

/* =========================================
   ESCONDER MENU DUPLICADO (MANTÉM HAMBURGER)
========================================= */
@media (max-width: 768px) {

  /* esconde apenas o menu "normal" */
  .site-nav {
    display: none !important;
  }

  /* garante que o menu mobile funcione */
  .mobile-menu {
    display: none;
  }

  .mobile-menu.active {
    display: block;
  }

}

/* =========================================
   ESCONDE MENU DESKTOP (mantém hamburger)
========================================= */

/* Esconde o menu principal em desktop/tablet */
.site-nav {
  display: none !important;
}

/* Garante que o botão hamburger continue visível */
.menu-toggle {
  display: flex !important;
}

/* Garante que o menu mobile funcione */
.mobile-menu {
  display: none;
}

.mobile-menu.active {
  display: block;
}
