/*
Theme Name: secretx Premium
Theme URI: https://secretx.com.br
Author: secretx Developer
Author URI: https://secretx.com.br
Description: Tema premium elegante para sites de acompanhantes e perfis exclusivos. Design moderno com cards animados, modal flutuante, slideshow hero e efeitos visuais sofisticados.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: secretx
Tags: dark, elegant, premium, adult, profiles, gallery, responsive, animations
*/

/* ==================== RESET & BASE ==================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background: #0a0a0a;
    color: #fff;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ==================== HEADER ==================== */
.site-header {
    background: rgba(0, 0, 0, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 15px 40px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    padding: 12px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.site-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-logo .logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-logo .logo-text {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.site-logo .logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.site-logo .logo-x {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: 0px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.site-logo .logo-star {
    color: #A4C639;
    font-size: 14px;
    margin-left: 2px;
    margin-top: -12px;
    filter: drop-shadow(0 0 5px rgba(164, 198, 57, 0.6));
}

.site-logo .logo-slogan {
    font-family: 'Playfair Display', serif;
    font-size: 9px;
    font-weight: 400;
    color: #D4AF37;
    letter-spacing: 2px;
    margin-top: 3px;
    display: flex;
    align-items: center;
    width: 100%;
}

.site-logo .logo-slogan::before,
.site-logo .logo-slogan::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.site-logo .logo-slogan::before {
    margin-right: 8px;
}

.site-logo .logo-slogan::after {
    margin-left: 8px;
}

.main-navigation {
    display: flex;
    gap: 30px;
}

.main-navigation a {
    color: #ccc;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.main-navigation a:hover { color: #d4af37; }

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-login {
    color: #fff;
    font-size: 13px;
}

/* Main Content Spacing for Fixed Header */
.main-content {
    padding-top: 100px;
}

.btn-premium {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #000;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s;
}

.btn-premium:hover { transform: scale(1.05); }

/* ==================== HERO SLIDESHOW ==================== */
.hero-slideshow {
    position: relative;
    height: 80vh;
    min-height: 600px;
    margin-top: 40px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-image {
    position: relative;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, #0a0a0a);
}

.slide-content {
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}

.slide-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #000;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    width: fit-content;
}

.slide-name {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.slide-location {
    color: #888;
    font-size: 16px;
    margin-bottom: 16px;
}

.slide-phone {
    color: #d4af37;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.slide-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-call {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.slide-quote {
    color: #666;
    font-style: italic;
    font-size: 15px;
    margin-bottom: 24px;
    padding-left: 20px;
    border-left: 3px solid #d4af37;
}

.slide-tags-title {
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.slide-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.slide-tag {
    background: transparent;
    border: 1px solid #333;
    color: #888;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    transition: all 0.3s;
}

.slide-tag:hover {
    border-color: #d4af37;
    color: #d4af37;
}

.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 40px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: #d4af37;
    width: 60px;
}

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
}

.slide-nav:hover {
    background: #d4af37;
    color: #000;
}

.slide-nav.prev { left: 20px; }
.slide-nav.next { right: 20px; }

/* ==================== SECTION TITLE ==================== */
.section-title {
    text-align: center;
    padding: 60px 20px 40px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 10px;
}

.section-title span {
    color: #d4af37;
}

.section-title p {
    color: #666;
    font-size: 14px;
}

/* ==================== GRID CARDS ==================== */
.grid-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 60px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.card-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.card-desc {
    color: #888;
    font-size: 11px;
}

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #000;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
}

/* Card Animation */
.card.highlight {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.4);
    z-index: 10;
}

.card.highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #d4af37;
    border-radius: 16px;
    animation: borderGlow 1s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    from { box-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }
    to { box-shadow: 0 0 25px rgba(212, 175, 55, 0.8); }
}

/* ==================== VIP SECTION ==================== */
.vip-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 60px 0;
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.vip-card {
    background: #151515;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
}

.vip-card:hover {
    border-color: #d4af37;
}

.vip-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.vip-info {
    padding: 20px;
}

.vip-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.vip-location {
    color: #666;
    font-size: 12px;
    margin-bottom: 12px;
}

.vip-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.vip-tag {
    background: #222;
    color: #888;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
}

/* VIP Animation */
.vip-card.vip-highlight {
    animation: vipPulse 1.5s ease-in-out;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

.vip-card.vip-highlight img {
    filter: brightness(1.1) saturate(1.2);
}

.vip-card.vip-highlight::before {
    content: '\2728';
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 24px;
    z-index: 10;
    animation: sparkle 0.5s ease infinite;
}

@keyframes vipPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* ==================== CATEGORIES ==================== */
.categories {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.cat-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 3/4;
}

.cat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.cat-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.cat-item:hover img {
    transform: scale(1.1);
}

.cat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.95));
    text-align: center;
}

.cat-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 16px;
    transition: border-color 0.3s;
    z-index: 1;
    pointer-events: none;
}

.cat-item:hover::before {
    border-color: #d4af37;
}

/* Category Animation */
.cat-item.cat-highlight {
    transform: scale(1.08);
    z-index: 10;
}

.cat-item.cat-highlight img {
    transform: scale(1.15);
    filter: brightness(1.15) contrast(1.1);
}

.cat-item.cat-highlight .cat-overlay {
    background: linear-gradient(transparent 30%, rgba(212, 175, 55, 0.9));
}

.cat-item.cat-highlight .cat-name {
    color: #000;
    text-shadow: none;
}

.cat-item.cat-highlight::before {
    border-color: #d4af37 !important;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

/* ==================== FILTERS ==================== */
.filters-section {
    background: #111;
    padding: 50px 40px;
}

.filters-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-title {
    color: #d4af37;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

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

.filter-tag {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #888;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-tag:hover {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: #050505;
    padding: 60px 40px 30px;
    border-top: 1px solid #1a1a1a;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .site-logo {
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    color: #555;
    font-size: 13px;
}

.footer-col h4 {
    color: #d4af37;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: #666;
    font-size: 13px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover { color: #d4af37; }

.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
    display: flex;
    justify-content: space-between;
    color: #444;
    font-size: 12px;
}

/* ==================== MODAL ==================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.modal-close {
    position: fixed;
    top: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    z-index: 10001;
    transition: all 0.3s;
}

.modal-close:hover {
    background: #d4af37;
    color: #000;
}

.modal-header {
    background: linear-gradient(135deg, #151515, #0a0a0a);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 24px;
}

.modal-carousel {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 4fr 1fr;
    gap: 4px;
    height: 400px;
}

.carousel-thumbs {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 4px;
    background: #0a0a0a;
}

.thumb-item {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s;
    position: relative;
}

.thumb-item.active, .thumb-item:hover { opacity: 1; }

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-locked::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
}

.lock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

.lock-icon {
    font-size: 24px;
    opacity: 0.6;
    margin-bottom: 4px;
}

.lock-text {
    font-size: 8px;
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 1px;
}

.carousel-main {
    position: relative;
    overflow: hidden;
}

.carousel-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
}

.carousel-nav-btn:hover {
    background: #d4af37;
    color: #000;
}

.carousel-nav-btn.prev { left: 16px; }
.carousel-nav-btn.next { right: 16px; }

.modal-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.modal-main-info {
    background: linear-gradient(135deg, #151515, #0d0d0d);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #222;
}

.modal-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.modal-name {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 8px;
}

.modal-location {
    color: #888;
    font-size: 14px;
    margin-bottom: 16px;
}

.modal-phone {
    color: #d4af37;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.modal-btn {
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.btn-wpp { background: #25D366; color: #fff; }
.btn-wpp:hover { background: #1da851; }

.btn-ligar { background: #3b82f6; color: #fff; }
.btn-ligar:hover { background: #2563eb; }

.btn-fav { background: #ec4899; color: #fff; }
.btn-fav:hover { background: #db2777; }

.btn-hotcam {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 20px 10px rgba(239, 68, 68, 0.2); }
}

.modal-quote {
    background: #0a0a0a;
    border-left: 3px solid #d4af37;
    padding: 20px;
    margin-bottom: 24px;
    border-radius: 0 12px 12px 0;
}

.modal-quote p {
    color: #888;
    font-style: italic;
    font-size: 14px;
    line-height: 1.7;
}

.modal-tags-section {
    margin-bottom: 24px;
}

.modal-tags-title {
    color: #888;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modal-tag {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    transition: all 0.3s;
}

.modal-tag:hover {
    background: #d4af37;
    color: #000;
}

.modal-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #222;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #1a1a1a;
}

.stat-label {
    color: #666;
    font-size: 12px;
}

.stat-value {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.modal-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: linear-gradient(135deg, #151515, #0d0d0d);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #222;
}

.sidebar-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.videos-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.video-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.video-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 16px;
}

.video-locked::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.video-lock-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

.video-lock-badge .lock-icon { font-size: 20px; opacity: 0.5; }
.video-lock-badge .lock-text { font-size: 9px; color: #d4af37; }

.hotcam-card {
    background: linear-gradient(135deg, #1a0a0a, #0d0505);
    border-color: rgba(239, 68, 68, 0.3);
}

.hotcam-btn {
    width: 100%;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    border: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.hotcam-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.3);
}

.hotcam-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    justify-content: center;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.status-text {
    color: #22c55e;
    font-size: 11px;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s;
}

.share-btn.wpp { background: #25D366; color: #fff; }
.share-btn.fb { background: #1877F2; color: #fff; }
.share-btn.tw { background: #1DA1F2; color: #fff; }
.share-btn.email { background: #666; color: #fff; }

.hotcam-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.98);
    z-index: 10002;
    justify-content: center;
    align-items: center;
}

.hotcam-modal.active { display: flex; }

.hotcam-content {
    background: #111;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    max-width: 600px;
}

.hotcam-video {
    width: 100%;
    height: 400px;
    background: #000;
    border-radius: 12px;
    margin-bottom: 20px;
}

.hotcam-close {
    background: #ef4444;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .cards-grid { grid-template-columns: repeat(3, 1fr); }
    .vip-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .modal-info { grid-template-columns: 1fr; }
    .modal-carousel { grid-template-columns: 1fr; height: auto; }
    .carousel-thumbs { flex-direction: row; padding: 8px; }
    .thumb-item { width: 60px; height: 60px; flex: none; }
}

@media (max-width: 768px) {
    .site-header { padding: 15px 20px; }
    .main-navigation { display: none; }
    .header-actions { gap: 10px; }
    .btn-login { display: none; }
    .btn-premium { padding: 10px 16px; font-size: 10px; }
    .site-logo { font-size: 22px; }
    
    .hero-slideshow {
        height: auto;
        min-height: auto;
        margin-top: 60px;
    }
    
    .slide {
        position: relative;
        display: flex;
        flex-direction: column;
        opacity: 0;
        pointer-events: none;
        height: 0;
        overflow: hidden;
    }
    
    .slide.active {
        opacity: 1;
        pointer-events: auto;
        height: auto;
    }
    
    .slide-image {
        width: 100%;
        height: 300px;
        min-height: 300px;
    }
    
    .slide-image::after { display: none; }
    
    .slide-content {
        padding: 24px 20px;
        text-align: center;
    }
    
    .slide-badge {
        font-size: 9px;
        padding: 6px 12px;
        margin: 0 auto 16px;
    }
    
    .slide-name { font-size: 28px; }
    .slide-phone { font-size: 22px; }
    
    .slide-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .slide-nav { width: 36px; height: 36px; font-size: 14px; }
    
    .section-title { padding: 40px 15px 25px; }
    .section-title h2 { font-size: 24px; }
    
    .grid-section { padding: 0 15px 40px; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    
    .vip-section { padding: 40px 0; }
    .vip-grid { grid-template-columns: 1fr 1fr; gap: 15px; padding: 0 15px; }
    
    .categories { padding: 40px 15px; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    
    .filters-section { padding: 30px 15px; }
    
    .site-footer { padding: 40px 20px 20px; }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    
    .modal-container { margin: 20px auto; padding: 0 10px; }
    .modal-close { top: 10px; right: 10px; width: 40px; height: 40px; }
    .modal-carousel { grid-template-columns: 1fr; height: auto; }
    .carousel-main { height: 280px; }
    .modal-info { grid-template-columns: 1fr; }
    .modal-main-info { padding: 20px; }
    .modal-buttons { flex-wrap: wrap; }
    .modal-btn { flex: 1 1 45%; justify-content: center; }
}

@media (max-width: 480px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .vip-grid { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .slide-image { height: 250px; }
    .modal-buttons { flex-direction: column; }
    .modal-btn { flex: 1 1 100%; }
}

/* ==================== MODAL DE ASSINATURA ==================== */
.secretx-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 20px;
}

.secretx-modal-overlay.active {
    display: flex;
}

@keyframes secretxModalFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.secretx-modal-popup {
    background: #000;
    width: 100%;
    max-width: 480px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #222;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: secretxModalFadeIn 0.3s ease;
    position: relative;
}

.secretx-modal-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 30px 30px 20px;
    text-align: center;
}

.secretx-modal-tag {
    background: #D4AF37;
    color: #000;
    padding: 8px 16px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.secretx-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    margin: 0;
}

.secretx-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    line-height: 1;
}

.secretx-modal-close:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
}

.secretx-modal-body {
    padding: 25px 30px 30px;
}

.secretx-plans {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.secretx-plan {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 15px 18px 15px 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.secretx-plan:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
}

.secretx-plan.selected {
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.08);
}

/* Tarja Diagonal */
.secretx-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 28px;
    background: #D4AF37;
    color: #000;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-40px) rotate(-45deg);
    transform-origin: center;
    white-space: nowrap;
    z-index: 5;
}

.secretx-ribbon-gold {
    background: #D4AF37;
}

.secretx-ribbon-special {
    background: linear-gradient(135deg, #D4AF37 0%, #E5C147 100%);
}

.secretx-plan-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 6;
}

.secretx-plan.selected .secretx-plan-radio {
    border-color: #D4AF37;
}

.secretx-plan-radio::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #D4AF37;
    border-radius: 50%;
    opacity: 0;
}

.secretx-plan.selected .secretx-plan-radio::after {
    opacity: 1;
}

.secretx-plan-details {
    flex: 1;
    position: relative;
    z-index: 6;
}

.secretx-plan-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.secretx-plan-desc {
    color: #666;
    font-size: 11px;
}

.secretx-plan-price {
    text-align: right;
    position: relative;
    z-index: 6;
}

.secretx-plan-value {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #D4AF37;
    font-weight: 700;
}

.secretx-plan-time {
    color: #555;
    font-size: 10px;
    display: block;
}

.secretx-plan-tag {
    background: #9C27B0;
    color: #fff;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 8px;
    font-weight: 600;
    margin-top: 2px;
    display: inline-block;
}

.secretx-btn-assinar {
    width: 100%;
    background: #D4AF37;
    color: #000;
    padding: 14px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border: none;
    margin-top: 20px;
    transition: all 0.2s;
}

.secretx-btn-assinar:hover {
    background: #E5C147;
}

.secretx-payment {
    margin-top: 18px;
    text-align: center;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.secretx-payment-title {
    color: #555;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.secretx-payment-options {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.secretx-payment-item {
    background: rgba(255,255,255,0.05);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 10px;
    color: #666;
}

.secretx-trust {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.secretx-trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #555;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.secretx-trust-icon {
    color: #D4AF37;
    font-size: 11px;
}

@media (max-width: 500px) {
    .secretx-modal-popup {
        max-width: 100%;
    }
    
    .secretx-ribbon {
        width: 100px;
        height: 24px;
        font-size: 9px;
        transform: translateX(-35px) rotate(-45deg);
    }
}
