/* Estilo sensual e moderno para site +18 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-red: #ff1744;
  --secondary-red: #d50000;
  --accent-purple: #9c27b0;
  --accent-gold: #ffd700;
  --dark-bg: #0a0a0a;
  --darker-bg: #050505;
  --card-bg: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #666666;
  --border-glow: #ff1744;
  --shadow-glow: 0 0 20px rgba(255, 23, 68, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Efeito de partículas de fundo */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 23, 68, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(156, 39, 176, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Efeito de partículas de fundo - removido para dar lugar ao wallpaper */

/* Header sensual */
.header-sensual {
  background: linear-gradient(135deg, var(--card-bg) 0%, #2a2a2a 100%);
  border-bottom: 2px solid var(--primary-red);
  box-shadow: var(--shadow-glow);
  backdrop-filter: blur(10px);
}

.header-sensual h1 {
  background: linear-gradient(45deg, var(--primary-red), var(--accent-purple), var(--accent-gold));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Botões sensuais */
.btn-sensual {
  background: linear-gradient(45deg, var(--primary-red), var(--accent-purple));
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 23, 68, 0.3);
}

.btn-sensual::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-sensual:hover::before {
  left: 100%;
}

.btn-sensual:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 23, 68, 0.4);
}

/* Cards sensuais */
.card-sensual {
  background: linear-gradient(145deg, var(--card-bg), #2a2a2a);
  border: 1px solid rgba(255, 23, 68, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.card-sensual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-red), var(--accent-purple), var(--accent-gold));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card-sensual:hover::before {
  transform: scaleX(1);
}

.card-sensual:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 23, 68, 0.2);
  border-color: var(--primary-red);
}

/* Garantir cursor pointer nos cards clicáveis */
.card-sensual .cursor-pointer,
.card-sensual div[onclick],
.clickable-card {
  cursor: pointer !important;
}

.card-sensual h2, .card-sensual a, .card-sensual h2 a {
  text-decoration: none !important;
}

/* Imagens sensuais */
.img-sensual {
  transition: all 0.4s ease;
  filter: brightness(0.9) contrast(1.1);
}

.img-sensual:hover {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.2) saturate(1.1);
}

/* Formulários sensuais */
.form-sensual {
  background: linear-gradient(145deg, var(--card-bg), #2a2a2a);
  border: 1px solid rgba(255, 23, 68, 0.3);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.input-sensual {
  background: rgba(26, 26, 26, 0.8);
  border: 2px solid rgba(255, 23, 68, 0.2);
  border-radius: 12px;
  color: var(--text-primary);
  padding: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.input-sensual:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 20px rgba(255, 23, 68, 0.3);
  outline: none;
}

/* Paginação sensual */
.pagination-sensual {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 32px 0;
}

.pagination-sensual a {
  background: linear-gradient(145deg, var(--card-bg), #2a2a2a);
  border: 1px solid rgba(255, 23, 68, 0.2);
  color: var(--text-secondary);
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination-sensual a:hover,
.pagination-sensual a.active {
  background: linear-gradient(45deg, var(--primary-red), var(--accent-purple));
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 23, 68, 0.3);
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Classes utilitárias */
.text-primary {
  color: var(--primary-red);
}

.text-secondary {
  color: var(--text-secondary);
}

.text-muted {
  color: var(--text-muted);
}

.text-decoration-none {
  text-decoration: none;
}

/* Grid utilities */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .sm\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .md\:text-2xl {
    font-size: 1.5rem;
  }
  
  .md\:text-3xl {
    font-size: 1.875rem;
  }
  
  .md\:text-7xl {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Flex utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

/* Spacing utilities */
.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.p-12 {
  padding: 3rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Text utilities */
.text-center {
  text-align: center;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-5xl {
  font-size: 3rem;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.leading-relaxed {
  line-height: 1.625;
}

/* Layout utilities */
.min-h-screen {
  min-height: 100vh;
}

.w-full {
  width: 100%;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.h-48 {
  height: 12rem;
}

.w-16 {
  width: 4rem;
}

.h-16 {
  height: 4rem;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.overflow-hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.block {
  display: block;
}

/* Background utilities */
.bg-black {
  background-color: #000;
}

.bg-gray-800 {
  background-color: #1f2937;
}

/* Border utilities */
.border-4 {
  border-width: 4px;
}

.border-red-600 {
  border-color: #dc2626;
}

/* Shadow utilities */
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Transition utilities */
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

/* Hover utilities */
.hover\:text-primary:hover {
  color: var(--primary-red);
}

.hover\:text-accent-gold:hover {
  color: var(--accent-gold);
}

.hover\:opacity-100:hover {
  opacity: 1;
}

/* Opacity utilities */
.opacity-0 {
  opacity: 0;
}

/* Transform utilities */
.scale-1\.02 {
  transform: scale(1.02);
}

.scale-1 {
  transform: scale(1);
}

/* Object fit utilities */
.object-cover {
  object-fit: cover;
}

/* Z-index utilities */
.z-1 {
  z-index: 1;
}

.z-1 {
  z-index: -1;
}

/* Logo utilities */
.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.w-auto {
  width: auto;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, var(--primary-red), var(--accent-purple));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, var(--secondary-red), var(--accent-purple));
}

/* Responsividade */
@media (max-width: 768px) {
  .card-sensual:hover {
    transform: translateY(-4px) scale(1.01);
  }
  
  .btn-sensual {
    padding: 10px 20px;
  }
}

/* Efeitos de hover para vídeos */
.video-sensual {
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.video-sensual:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 23, 68, 0.2);
}

/* Loading spinner sensual */
.loading-sensual {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 23, 68, 0.3);
  border-top: 3px solid var(--primary-red);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Modal sensual */
#mediaModal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  z-index: 9999;
  transition: opacity 0.3s;
}
#mediaModal .modal-content {
  position: relative;
  background: transparent;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.7);
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
#mediaModal img, #mediaModal video {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(255,23,68,0.15);
  background: #111;
}
#mediaModal .close-modal-btn {
  position: absolute;
  top: -32px;
  right: 0;
  background: linear-gradient(45deg, var(--primary-red), var(--accent-purple));
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: background 0.2s;
}
#mediaModal .close-modal-btn:hover {
  background: linear-gradient(45deg, var(--accent-gold), var(--primary-red));
}
@media (max-width: 600px) {
  #mediaModal img, #mediaModal video {
    max-width: 98vw;
    max-height: 60vh;
  }
  #mediaModal .modal-content {
    max-width: 98vw;
    max-height: 70vh;
  }
  #mediaModal .close-modal-btn {
    top: -20px;
    right: -10px;
    width: 32px;
    height: 32px;
    font-size: 1.5rem;
  }
}

.hidden {
  display: none !important;
}

/* Estilos específicos para a página index com wallpaper */
body.index-page {
  position: relative;
}

body.index-page::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/images/assets/lp/wallpaper.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -2;
}

body.index-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  pointer-events: none;
  z-index: -1;
} 