/*
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.1.24
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;
    inset: 0;
    width: 100vw !important;
    height: 100vh !important;
    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;
    width: min(90%, 220px);
}


.lock-overlay .unlock-title{
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 6px 0;
}
.lock-overlay .unlock-sub{
    font-size: 10px;
    line-height: 1.25;
    color: rgba(255,255,255,0.88);
    margin: 0 0 10px 0;
}

/* CTA de desbloqueio (Premium/Exclusiva) */
.unlock-btn{
    appearance: none;
    border: 0;
    cursor: pointer;
    background: #FF7A1A;
    color: #fff;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 12px 18px;
    font-size: 14px;
    line-height: 1;
    box-shadow: 0 10px 22px rgba(0,0,0,.35);
    width: auto;
    max-width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.unlock-btn:hover{
    filter: brightness(.95);
}

/* nos thumbs o botão precisa ser menor */
.thumb-item .unlock-btn{
  font-size: 12px;
  padding: 10px 14px;
  max-width: 140px;
}

.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;
}

/* ===== FIX: BLOQUEIO TAMBÉM NA IMAGEM PRINCIPAL DO CARROSSEL (MEIO) ===== */
.carousel-main.dx-main-locked #carouselMainImg{
  filter: blur(14px) brightness(.55) saturate(.9);
  transform: scale(1.04);
}

.carousel-main .dx-main-lock{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index: 5;
  pointer-events: none; /* só o botão recebe clique */
}

.carousel-main .dx-main-lock-card{
  pointer-events: auto;
  width: min(92%, 360px);
  text-align: center;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,136,0,.35);
  border-radius: 18px;
  padding: 18px 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.carousel-main .dx-main-lock-title{
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 6px 0;
}

.carousel-main .dx-main-lock-sub{
  font-size: 12px;
  line-height: 1.25;
  color: rgba(255,255,255,.88);
  margin: 0 0 12px 0;
}


.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 (MODELO 2) ==================== */
.modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .modal-container {
            background: #1a1a1a;
            border-radius: 20px;
            width: 100%;
            max-width: 600px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
            position: relative;
            border: 2px solid #d4af37;
            animation: slideUp 0.4s ease;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .modal-header {
            padding: 20px 25px;
            border-bottom: 2px solid rgba(212, 175, 55, 0.5);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 10;
            background: #1a1a1a;
        }
        
        .modal-title {
            font-size: 24px;
            color: #d4af37;
            font-weight: 700;
        }
        
        .close-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid #d4af37;
            background: transparent;
            color: #d4af37;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .close-btn:hover {
            background: #d4af37;
            color: #1a1a1a;
        }
        
        .modal-body {
            padding: 25px;
        }
        
        .section-title {
            font-size: 20px;
            color: #d4af37;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(212, 175, 55, 0.5);
            font-weight: 600;
        }
        
        .section-subtitle {
            font-size: 14px;
            color: #aaa;
            margin-bottom: 15px;
            font-style: italic;
        }
        
        .plans-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 25px;
        }
        
        .plan-card {
            background: rgba(212, 175, 55, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.4);
            border-radius: 16px;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s ease;
        }
        
        .plan-card:hover {
            background: rgba(212, 175, 55, 0.12);
            border-color: #d4af37;
        }
        
        .plan-info {
            flex: 1;
        }
        
        .plan-name {
            font-size: 18px;
            color: #fff;
            font-weight: 700;
            margin-bottom: 4px;
        }
        
        .plan-description {
            font-size: 13px;
            color: #aaa;
            margin-bottom: 6px;
        }
        
        .plan-price {
            font-size: 20px;
            color: #d4af37;
            font-weight: 700;
        }
        
        .gold-btn {
            background: transparent;
            border: 2px solid #d4af37;
            color: #d4af37;
            padding: 10px 28px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .gold-btn:hover {
            background: #d4af37;
            color: #1a1a1a;
        }
        
        .section-divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
            margin: 20px 0;
        }
        
        .toggle-btn {
            background: rgba(212, 175, 55, 0.15);
            border: 2px solid #d4af37;
            color: #d4af37;
            padding: 14px 28px;
            border-radius: 14px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .toggle-btn:hover {
            background: rgba(212, 175, 55, 0.25);
        }
        
        .toggle-btn .arrow {
            transition: transform 0.3s ease;
        }
        
        .toggle-btn.active .arrow {
            transform: rotate(180deg);
        }
        
        .toggle-content {
            display: none;
            margin-top: 15px;
        }
        
        .toggle-content.show {
            display: block;
        }
        
        .content-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .content-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 14px;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s ease;
        }
        
        .content-item:hover {
            background: rgba(212, 175, 55, 0.08);
            border-color: rgba(212, 175, 55, 0.6);
        }
        
        .content-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .content-icon {
            font-size: 22px;
        }
        
        .content-name {
            font-size: 15px;
            color: #fff;
            font-weight: 600;
        }
        
        .content-description {
            font-size: 12px;
            color: #888;
            margin-top: 3px;
        }
        
        .content-price {
            font-size: 18px;
            color: #d4af37;
            font-weight: 700;
            margin-right: 15px;
        }
        
        .select-btn {
            background: transparent;
            border: 1px solid #d4af37;
            color: #d4af37;
            padding: 8px 22px;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .select-btn:hover {
            background: #d4af37;
            color: #1a1a1a;
        }
        
        .footer-text {
            margin-top: 20px;
            font-size: 11px;
            color: #555;
            text-align: center;
            font-style: italic;
        }
        
        @media (max-width: 600px) {
            .modal-container {
                margin: 10px;
                max-height: 95vh;
            }
            
            .plan-card {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }
            
            .plan-info {
                padding-right: 0;
            }
            
            .gold-btn {
                width: 100%;
            }
            
            .content-item {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
            
            .content-info {
                flex-direction: column;
            }
            
            .content-item div:last-child {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            
            .content-price {
                margin-right: 0;
            }
            
            .select-btn {
                width: 100%;
            }
        }

.modal-overlay.active { display: flex; }


/* ===============================
   DISCRETX - MODAL ASSINATURA
================================= */
:root{
  --dx-black: #0B0B0F;
  --dx-card: #1C1C1C;
  --dx-gold: #D4AF37;
  --dx-text: #F2F2F2;
  --dx-muted: rgba(242,242,242,.72);
}

html.dx-modal-lock,
body.dx-modal-lock{
  overflow: hidden !important;
  height: 100%;
}

.dx-modal-overlay{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0,0,0,.72);
  z-index: 999999;
}

.dx-modal-overlay.is-open{ display: flex; }

.dx-modal{
  width: min(560px, 100%);
  max-height: min(86vh, 720px);
  overflow: auto;
  background: var(--dx-black);
  border: 0.5px solid var(--dx-gold);
  border-radius: 18px;
  padding: 18px 16px 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.6);
  position: relative;
}

.dx-modal-close{
  position: absolute;
  right: 10px;
  top: 10px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 0.5px solid rgba(212,175,55,.55);
  background: rgba(255,255,255,.06);
  color: var(--dx-text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.dx-modal-head{
  padding: 8px 8px 10px;
  text-align: center;
}

.dx-modal-head h2{
  margin: 0;
  font-size: 34px;
  letter-spacing: .2px;
  color: var(--dx-text);
}

.dx-modal-sub{
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--dx-gold);
  opacity: .95;
}

.dx-modal-section{
  margin-top: 12px;
  padding: 0 6px;
}

.dx-section-title{
  margin: 12px 0 10px;
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dx-gold);
}

.dx-plan-list{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dx-plan-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--dx-card);
  border: 0.5px solid rgba(212,175,55,.25);
  border-radius: 16px;
  padding: 12px 12px;
  cursor: pointer;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
  outline: none;
}

.dx-plan-card:hover{
  border-color: rgba(212,175,55,.55);
  background: #1b1b1b;
  transform: translateY(-1px);
}

.dx-plan-card.is-selected{
  border-color: rgba(212,175,55,.95);
  box-shadow: 0 0 0 2px rgba(212,175,55,.18) inset;
}

.dx-plan-name{
  color: var(--dx-text);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 3px;
}

.dx-plan-desc{
  color: var(--dx-muted);
  font-size: 12.5px;
  line-height: 1.25;
}

.dx-plan-price{
  color: var(--dx-gold);
  font-weight: 900;
  font-size: 16px;
  white-space: nowrap;
}

.dx-hotcam-note{
  color: var(--dx-muted);
  font-size: 12.5px;
  margin: 0 0 10px;
}

.dx-hotcam-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dx-hotcam-card{
  background: var(--dx-card);
  border: 0.5px solid rgba(212,175,55,.25);
  border-radius: 14px;
  padding: 10px 10px;
  text-align: center;
  color: var(--dx-text);
}

.dx-hotcam-card span{
  display: block;
  font-size: 12.5px;
  color: var(--dx-muted);
}

.dx-hotcam-card strong{
  display: block;
  margin-top: 3px;
  color: var(--dx-gold);
  font-size: 15px;
}

.dx-modal-actions{
  margin-top: 14px;
  padding: 0 6px 4px;
  display: flex;
  justify-content: center;
}

.dx-modal-primary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--dx-gold);
  color: #0B0B0F;
  font-weight: 900;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  min-width: 190px;
}

.dx-modal-primary:hover{
  filter: brightness(1.05);
}

@media (max-width: 420px){
  .dx-modal-head h2{ font-size: 28px; }
  .dx-hotcam-grid{ grid-template-columns: 1fr; }
}


/* DiscretX - Hero CTA overlay */
body.home .hero-slideshow .slide-content{ position:relative; overflow:visible; }
body.home .hero-slideshow .slide-content .dx-hero-cta{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  top:-42px;
  z-index:80;
  pointer-events:auto;
}
@media (max-width: 768px){
  body.home .hero-slideshow .slide-content .dx-hero-cta{ top:-54px; }
}

/* From Uiverse.io by Creatlydev */
body.home .hero-slideshow .dx-hero-cta .button {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--clr);
  color: #fff;
  border-radius: 10rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
}

body.home .hero-slideshow .dx-hero-cta .button__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: var(--clr);
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

body.home .hero-slideshow .dx-hero-cta .button:hover { background-color: #000; }
body.home .hero-slideshow .dx-hero-cta .button:hover .button__icon-wrapper { color: #000; }

body.home .hero-slideshow .dx-hero-cta .button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

body.home .hero-slideshow .dx-hero-cta .button:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

body.home .hero-slideshow .dx-hero-cta .button:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

@media (max-width: 480px){
  body.home .hero-slideshow .dx-hero-cta{ bottom:clamp(14px, 6vh, 44px); }
  body.home .hero-slideshow .dx-hero-cta .button{ padding:0.7rem 1.1rem; }
}


/* =========================================================
   DiscretX Subscribe Modal (Home)
   ========================================================= */
.dx-modal-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  display:none;
  align-items:center;
  justify-content:center;
  padding:16px;
  z-index:9999;
}
.dx-modal-backdrop.is-open{ display:flex; }
.dx-modal{
  width:min(520px, 92vw);
  max-height:86vh;
  overflow-y:auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  background:#0B0B0F;
  border:1px solid rgba(212,175,55,.35);
  border-radius:18px;
  box-shadow:0 20px 80px rgba(0,0,0,.65);
  padding:18px 16px 16px;
  position:relative;
}

@media (max-width: 768px){
  /* Mobile: modal must always be scrollable to reach the last options */
  .dx-modal-backdrop{ align-items:flex-start; padding:10px; }
  .dx-modal{ width:100%; max-height: calc(100vh - 20px); }
}
.dx-modal-open{ overflow:hidden !important; }

.dx-modal-close{
  position:absolute;
  top:10px;
  right:12px;
  width:34px;
  height:34px;
  border-radius:10px;
  border:1px solid rgba(212,175,55,.25);
  background:rgba(28,28,28,.65);
  color:#D4AF37;
  font-size:22px;
  line-height:1;
  cursor:pointer;
}
.dx-modal-close:hover{ background:#1C1C1C; }

.dx-modal-header{ margin-bottom:12px; }


/* Header (novo layout + logo em marca d'água) */
.dx-modal-header--hero{
  position:relative;
  padding:16px 10px 14px;
  border-bottom:1px solid rgba(212,175,55,.18);
  margin-bottom:14px;
  overflow:hidden;
}
.dx-modal-header--hero::before{
  content:"";
  position:absolute;
  inset:-10px;
  background: url("assets/images/dx-logo-watermark.png") center/contain no-repeat;
  opacity:0.15; /* 85% transparente */
  pointer-events:none;
  transform: translateZ(0);
}
.dx-modal-header--hero > *{ position:relative; z-index:1; }

.dx-modal-title--main{
  font-size:22px;
  font-weight:800;
  margin:0 0 6px;
}
.dx-modal-kicker--under{
  margin:0 0 8px;
  opacity:.92;
}
.dx-modal-subtitle > div{
  display:block;
}

.dx-modal-kicker{
  color:#D4AF37;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  opacity:.9;
}
.dx-modal-title{
  color:#D4AF37;
  margin:6px 0 4px;
  font-size:18px;
  font-weight:700;
}
.dx-modal-title--h4{ font-size:16px; }
.dx-modal-subtitle{
  color:rgba(242,242,242,.78);
  font-size:12px;
  line-height:1.35;
}

.dx-modal-header--compact{ margin-top:2px; }

.dx-modal-section{ display:flex; flex-direction:column; gap:10px; }

.dx-plan-card{
  background:#1C1C1C;
  border:1px solid rgba(212,175,55,.18);
  border-radius:14px;
  padding:12px 12px 10px;
}
.dx-plan-top{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
}
.dx-plan-name{
  color:#D4AF37;
  font-weight:700;
  font-size:15px;
}
.dx-plan-price{
  color:#E5C147;
  font-weight:800;
  font-size:14px;
  white-space:nowrap;
}
.dx-plan-desc{
  margin-top:6px;
  color:rgba(242,242,242,.78);
  font-size:12px;
  line-height:1.35;
}
.dx-plan-cta{
  display:inline-flex;
  margin-top:10px;
  align-items:center;
  justify-content:center;
  width:100%;
  background:rgba(212,175,55,.14);
  border:1px solid rgba(212,175,55,.35);
  color:#D4AF37;
  text-decoration:none;
  font-weight:700;
  font-size:12px;
  padding:10px 12px;
  border-radius:12px;
}
.dx-plan-cta:hover{ background:rgba(212,175,55,.20); }

.dx-modal-divider{
  height:1px;
  background:rgba(212,175,55,.18);
  margin:12px 0;
}

.dx-hotcam-note{
  margin-top:12px;
  background:#1C1C1C;
  border:1px solid rgba(212,175,55,.18);
  border-radius:14px;
  padding:12px;
}
.dx-hotcam-title{
  color:#D4AF37;
  font-weight:800;
  font-size:13px;
  margin-bottom:8px;
}
.dx-hotcam-list{
  color:rgba(242,242,242,.78);
  font-size:12px;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.dx-hotcam-list strong{ color:#E5C147; }
.dx-hotcam-foot{
  margin-top:8px;
  color:rgba(242,242,242,.65);
  font-size:11px;
}


/* =========================================================
   DiscretX Subscribe Modal - Alignment Fix (V1.0.23)
   ========================================================= */
#dxSubscribeOverlay .dx-section-title{
  text-align:center;
}
#dxSubscribeOverlay .dx-ac-title{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:2px;
}
#dxSubscribeOverlay .dx-ac-title .dx-ac-main{
  font-size:14px;
  letter-spacing:.18em;
}
#dxSubscribeOverlay .dx-ac-title .dx-ac-sub{
  font-size:12px;
  letter-spacing:.22em;
  opacity:.95;
  margin-top:2px;
}

#dxSubscribeOverlay .dx-plan-card{
  /* Layout em 3 colunas (texto | preco | botao) como no mock mais claro */
  display:grid;
  grid-template-columns: 1fr auto auto;
  grid-template-rows: auto auto;
  align-items:center;
  column-gap:16px;
  row-gap:6px;
  text-align:left;
  padding:12px 12px 12px;
}
#dxSubscribeOverlay .dx-plan-top{
  grid-column:1;
  grid-row:1;
  text-align:left;
  margin:0;
}
#dxSubscribeOverlay .dx-plan-name{
  margin:0;
  font-size:18px;
  font-weight:800;
  color:#fff;
}
#dxSubscribeOverlay .dx-plan-desc{
  grid-column:1;
  grid-row:2;
  margin:0;
  text-align:left;
  color:#cfcfcf;
  line-height:1.35;
}
#dxSubscribeOverlay .dx-plan-foot{
  /* Colunas 2 e 3: preco + botao, centralizados verticalmente entre as 2 linhas */
  grid-column:2 / 4;
  grid-row:1 / 3;
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:auto;
  align-items:center;
  column-gap:14px;
  justify-content:end;
  margin:0;
}
#dxSubscribeOverlay .dx-plan-foot .dx-plan-price{
  font-size:20px;
  font-weight:900;
  color:var(--dx-gold);
  white-space:nowrap;
}
#dxSubscribeOverlay .dx-plan-cta{
  border:none;
  cursor:pointer;
  background:transparent;
  color:#fff;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:10px 16px;
  border-radius:12px;
  border:1px solid rgba(212,175,55,.85);
  background: rgba(212,175,55,.18);
  white-space:nowrap;
}
#dxSubscribeOverlay .dx-plan-cta:hover{
  background: rgba(212,175,55,.28);
  border-color: rgba(212,175,55,1);
}

@media (max-width: 420px){
  #dxSubscribeOverlay .dx-plan-card{
    column-gap:12px;
  }
  #dxSubscribeOverlay .dx-plan-foot .dx-plan-price{font-size:18px;}
  #dxSubscribeOverlay .dx-plan-cta{padding:10px 14px;}
}

/* Hot Cam layout */
#dxSubscribeOverlay .dx-hotcam-title{
  text-align:center;
}
#dxSubscribeOverlay .dx-hotcam-grid{
  grid-template-columns:1fr;
}
#dxSubscribeOverlay .dx-hotcam-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  text-align:left;
  padding:12px;
}
#dxSubscribeOverlay .dx-hotcam-time{
  color:var(--dx-text);
  font-weight:800;
}
#dxSubscribeOverlay .dx-hotcam-price{
  color:var(--dx-gold);
  font-weight:900;
  margin-left:auto;
}
#dxSubscribeOverlay .dx-hotcam-cta{
  border:none;
  cursor:pointer;
  background:rgba(255,255,255,.04);
  color:var(--dx-gold);
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:10px 12px;
  border-radius:12px;
  border:0.5px solid rgba(212,175,55,.55);
}
#dxSubscribeOverlay .dx-hotcam-cta:hover{
  background:rgba(255,255,255,.07);
  border-color:rgba(212,175,55,.85);
}

@media (max-width: 420px){
  #dxSubscribeOverlay .dx-plan-foot{
    flex-wrap:wrap;
  }
  #dxSubscribeOverlay .dx-plan-cta{
    width:100%;
    justify-content:center;
    text-align:center;
  }
  #dxSubscribeOverlay .dx-hotcam-card{
    flex-wrap:wrap;
  }
  #dxSubscribeOverlay .dx-hotcam-cta{
    width:100%;
  }
}



/* === DiscretX Subscribe Modal - layout refinado (V1.0.24) === */
.dx-center{ text-align:center; }
.dx-plan-head{ display:flex; justify-content:center; margin-bottom:6px; }
.dx-plan-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:10px;
}
.dx-plan-cta.dx-plan-cta--right{
  width:auto;
  margin-top:0;
  padding:9px 14px;
  border-radius:12px;
  white-space:nowrap;
}
.dx-hotcam-rows{ display:flex; flex-direction:column; gap:8px; }
.dx-hotcam-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(212,175,55,.12);
  border-radius: 12px;
  padding: 10px 10px;
}
.dx-hotcam-left{
  color: rgba(242,242,242,.85);
  font-size: 12px;
  font-weight: 600;
}
.dx-hotcam-right{ display:flex; align-items:center; gap:10px; }
.dx-hotcam-price{ color:#E5C147; font-weight:800; font-size:12px; white-space:nowrap; }
.dx-hotcam-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(212,175,55,.14);
  border: 1px solid rgba(212,175,55,.35);
  color:#D4AF37;
  text-decoration:none;
  font-weight:700;
  font-size:12px;
  padding:8px 12px;
  border-radius: 12px;
}
.dx-hotcam-cta:hover{ background: rgba(212,175,55,.20); }



/* --- DiscretX Subscribe Modal: ajuste MOBILE (100% igual no mobile) --- */
@media (max-width: 600px){
  .dx-modal-backdrop{
    padding:10px;
    align-items:flex-start;
  }
  .dx-modal{
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    border-radius:18px;
    padding:16px 14px 14px;
    -webkit-overflow-scrolling: touch;
  }
  .dx-modal-close{
    top:10px;
    right:10px;
    width:36px;
    height:36px;
    border-radius:12px;
  }
  .dx-plan-card{ border-radius:16px; }
  .dx-plan-cta.dx-plan-cta--right{ border-radius:14px; }
  .dx-hotcam-row{ border-radius:14px; }
  .dx-hotcam-cta{ border-radius:14px; }
}

/* =========================================================
   DiscretX - Mobile plan layout + "Mais detalhes" + Details modal
   ========================================================= */
:root{
  --dx-purple-x: #CD1DE5; /* cor aproximada do X do logo */
}

.dx-more-details{
  display:none;
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
  outline:none !important;
  -webkit-appearance:none;
  appearance:none;
  padding:8px 0 0;
  margin:0;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  color: var(--dx-purple-x);
  cursor:pointer;
  text-decoration:none;
}

.dx-more-details:hover{
  opacity:.9;
}

/* Mobile: "Plano + Valor + Botão" e "Mais detalhes" abaixo */
@media (max-width: 900px){
  /* Mobile/Tablet: 1a linha = PLANO + VALOR + BOTÃO | 2a linha = "MAIS DETALHES" (texto) */
  #dx-subscribe-backdrop .dx-plan-card--main{
    display:grid;
    /* plano (esq) | valor (centro) | botão (dir) */
    grid-template-columns: 1fr 1fr auto;
    /* 1ª linha ocupa o "miolo" do card (centraliza verticalmente)
       e 2ª linha fica reservada para "MAIS DETALHES" */
    grid-template-rows: 1fr auto;
    column-gap: 12px;
    row-gap: 8px;
    align-items:center;
    /* garante altura mínima para o conteúdo da 1ª linha ficar no meio do card */
    min-height: 92px;
  }

  #dx-subscribe-backdrop .dx-plan-card--main .dx-plan-head{
    grid-column:1;
    grid-row:1;
    margin:0;
    justify-content:flex-start;
    text-align:left;
  }

  /* transforma o container em "pass-through" p/ posicionar preço e CTA em colunas separadas */
  #dx-subscribe-backdrop .dx-plan-card--main .dx-plan-actions{
    display:contents;
  }
  #dx-subscribe-backdrop .dx-plan-card--main .dx-plan-price{
    grid-column:2;
    grid-row:1;
    justify-self:center;
    white-space:nowrap;
  }

  /* acrescenta "/Mês" no valor no mobile */
  #dx-subscribe-backdrop .dx-plan-card--main .dx-plan-price::after{
    content:"/Mês";
    font-size:.85em;
    opacity:.9;
    margin-left:2px;
  }
  #dx-subscribe-backdrop .dx-plan-card--main .dx-plan-cta{
    grid-column:3;
    grid-row:1;
    justify-self:end;
    white-space:nowrap;
  }

  /* descrição some no card no mobile (vai para o modal de detalhes) */
  #dx-subscribe-backdrop .dx-plan-card--main .dx-plan-desc{ display:none; }

  /* MAIS DETALHES: texto abaixo (não botão) */
  #dx-subscribe-backdrop .dx-plan-card--main .dx-more-details{
    display:block;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self:center;
    padding:0;
    margin:0;
    font-size: 12px; /* menor, como solicitado */
    background:transparent !important;
    border:0 !important;
  }

  /* CTA no modal de detalhes */
  #dx-plan-details-backdrop .dx-modal{
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    overflow:auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Details modal */
#dx-plan-details-backdrop{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  background: rgba(0,0,0,.68);
  z-index: 999999;
}
#dx-plan-details-backdrop.is-open{
  display:flex;
}

.dx-modal--details{
  background: rgba(18,18,18,.96);
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 18px;
  width: min(520px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  overflow:auto;
  padding: 18px 16px 16px;
  position:relative;
}

.dx-modal-close--details{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(212,175,55,.35);
  background: rgba(0,0,0,.25);
  color: #fff;
  font-size: 22px;
  cursor:pointer;
}

.dx-modal-close--details:hover{
  background: rgba(212,175,55,.18);
  border-color: rgba(212,175,55,.65);
}

.dx-modal-section--details{
  padding: 10px 6px 6px;
}

.dx-benefits{
  list-style:none;
  padding: 0;
  margin: 10px 0 16px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.dx-benefits li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: rgba(242,242,242,.88);
  font-weight: 600;
  line-height: 1.25;
}

.dx-benefits li::before{
  content: "✅";
  flex: 0 0 auto;
}

.dx-details-cta-wrap{
  display:flex;
  justify-content:center;
  padding-bottom: 8px;
}

.dx-plan-cta--details{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  min-width: 220px;
  text-align:center;
}


/* ====== DXEP: aviso de salvamento no modal de fotos ====== */
.dxep-save-notice{
  position: sticky;
  bottom: 12px;
  margin: 12px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  z-index: 2;
}
.dxep-save-notice.is-ok{ background:#ecfdf3; color:#166534; border:1px solid #bbf7d0; }
.dxep-save-notice.is-err{ background:#fef2f2; color:#7f1d1d; border:1px solid #fecaca; }


/* ================================
   DXEP Agenda (Gerenciar Agenda)
   ================================ */
.dashboard-content[data-content="schedule"] .content-header h1{
  color:#D4AF37;
}
.dashboard-content[data-content="schedule"] .content-header p{
  color: rgba(212,175,55,.75);
}

.dxep-agenda-banner{
  margin: 12px 0 16px;
  background: rgba(212,175,55,.10);
  border: 1px solid rgba(212,175,55,.22);
  color:#D4AF37;
  border-radius: 16px;
  padding: 12px 14px;
  font-weight: 650;
}
.dxep-agenda-wrap{
  background: #fff;
  border-radius: 22px;
  padding: 18px 16px 14px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
}
.dxep-agenda-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 12px;
}
.dxep-agenda-nav{
  width:44px;
  height:44px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  color:#111827;
  font-size: 24px;
  line-height: 1;
  cursor:pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.dxep-agenda-month-title{
  font-weight: 800;
  font-size: 18px;
  color:#111827;
  text-align:center;
}
.dxep-agenda-month-sub{
  font-size: 12px;
  color:#6b7280;
  text-align:center;
  margin-top: 2px;
}
.dxep-agenda-weekdays{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin: 10px 2px 8px;
  font-size: 11px;
  color:#6b7280;
  text-align:center;
  font-weight: 700;
}
.dxep-agenda-grid{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.dxep-cal-cell{
  border: 1px solid rgba(0,0,0,.08);
  background: linear-gradient(180deg,#ffffff, #f9fafb);
  border-radius: 16px;
  min-height: 56px;
  padding: 10px 10px 8px;
  text-align:left;
  cursor:pointer;
  position:relative;
  box-shadow: 0 10px 22px rgba(0,0,0,.05);
}
.dxep-cal-cell:hover{ transform: translateY(-1px); }
.dxep-cal-cell.is-empty{
  background: transparent;
  border: none;
  box-shadow:none;
  cursor: default;
}
.dxep-cal-daynum{
  font-weight: 800;
  color:#111827;
  font-size: 14px;
}
.dxep-cal-marks{
  display:flex;
  gap: 6px;
  margin-top: 8px;
  align-items:center;
}
.dxep-dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  display:inline-block;
}
.dxep-dot-free{ background: #BFE8C7; }
.dxep-dot-busy{ background: #E25555; }
.dxep-dot-pending{ background: #F6C1D1; }
.dxep-dot-proposed{ background: #D4AF37; }

.dxep-agenda-legend{
  display:flex;
  flex-wrap:wrap;
  gap: 10px 14px;
  margin-top: 12px;
  font-size: 12px;
  color:#374151;
}
.dxep-legend-item{
  display:flex;
  align-items:center;
  gap: 6px;
}

/* Modais agenda */
.dxep-modal-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.62);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 16px;
  z-index: 999999;
}
.dxep-modal-overlay.is-open{ display:flex; }
.dxep-modal{
  width: min(720px, calc(100vw - 24px));
  max-height: min(80vh, 760px);
  background: #fff;
  border-radius: 22px;
  overflow:hidden;
  box-shadow: 0 20px 70px rgba(0,0,0,.25);
  border: 1px solid rgba(0,0,0,.08);
}
.dxep-modal-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  background: linear-gradient(180deg,#ffffff,#f7f7f8);
}
.dxep-modal-head h2{
  margin:0;
  font-size: 18px;
  font-weight: 900;
  color:#111827;
}
.dxep-modal-head p{
  margin:4px 0 0 0;
  font-size: 12px;
  color:#6b7280;
}
.dxep-modal-close{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  font-size: 22px;
  cursor:pointer;
}

.dxep-day-modal-body{
  padding: 14px 16px 10px;
  overflow:auto;
  max-height: calc(min(80vh, 760px) - 140px);
}
.dxep-day-slots{
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.dxep-slot-row{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 14px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
  justify-content:space-between;
  background: #fff;
}
.dxep-slot-left{
  min-width: 120px;
}
.dxep-slot-time{
  font-weight: 900;
  font-size: 16px;
  color:#111827;
}
.dxep-slot-status{
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  color:#6b7280;
}
.dxep-slot-right{
  flex: 1;
  display:flex;
  flex-direction:column;
  gap: 10px;
  align-items:flex-end;
}
.dxep-slot-info{
  width: 100%;
  font-size: 12px;
  color:#374151;
  background: #f9fafb;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 10px 12px;
}
.dxep-slot-actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.dxep-btn-small{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  font-weight: 800;
  font-size: 12px;
  cursor:pointer;
  background: #fff;
}
.dxep-btn-green{ background: #BFE8C7; border-color: rgba(55,65,81,.10); }
.dxep-btn-red{ background: #E25555; color:#fff; border-color: rgba(0,0,0,.10); }
.dxep-btn-gold{ background: #D4AF37; color:#111827; border-color: rgba(0,0,0,.10); }

.dxep-free-tag{
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 12px;
  background: #BFE8C7;
  color:#111827;
  border: 1px solid rgba(0,0,0,.08);
}

.dxep-day-modal-actions{
  padding: 12px 16px 16px;
  border-top: 1px solid rgba(0,0,0,.06);
  display:flex;
  gap: 12px;
  justify-content:flex-end;
  background: #fff;
}

.dxep-btn{
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  font-weight: 900;
  cursor:pointer;
}
.dxep-btn-ghost{ background:#fff; }
.dxep-btn-primary{ background:#D4AF37; color:#111827; }

.dxep-field{
  display:flex;
  flex-direction:column;
  gap: 8px;
  padding: 0 16px;
  margin-top: 10px;
}
.dxep-field span{ font-size: 12px; color:#6b7280; font-weight: 800; }
.dxep-field input, .dxep-field textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  padding: 12px 12px;
  font-size: 14px;
  background: #fff;
}

.dxep-loading, .dxep-empty{
  padding: 18px 10px;
  color:#6b7280;
  font-weight: 700;
  text-align:center;
}

.dxep-toast{
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(18px);
  background: rgba(17,24,39,.94);
  color: #fff;
  padding: 12px 14px;
  border-radius: 18px;
  font-weight: 800;
  font-size: 13px;
  opacity: 0;
  transition: .25s ease;
  z-index: 1000000;
  box-shadow: 0 18px 46px rgba(0,0,0,.35);
  max-width: calc(100vw - 24px);
  text-align:center;
}
.dxep-toast.is-show{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

html.dxep-modal-lock, body.dxep-modal-lock{ overflow: hidden !important; }

/* Mobile tweaks */
@media (max-width: 520px){
  .dxep-cal-cell{ min-height: 52px; padding: 9px 9px 8px; border-radius: 14px; }
  .dxep-slot-row{ flex-direction:column; align-items:stretch; }
  .dxep-slot-left{ min-width: auto; display:flex; justify-content:space-between; align-items:center; }
  .dxep-slot-status{ margin-top: 0; }
  .dxep-slot-right{ align-items:stretch; }
  .dxep-slot-actions{ justify-content:flex-start; }
}


/* HOME: Botão ADICIONAR (roxo) para criar/gerenciar acompanhante */
body.home .home-addicionar-btn{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 99999;
  background: #7C3AED; /* roxo */
  color: #fff;
  font-weight: 800;
  letter-spacing: .4px;
  border-radius: 999px;
  padding: 14px 26px;
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
  text-decoration: none;
}
body.home .home-addicionar-btn:active{transform: translateX(-50%) scale(.98);}



/* =========================
   FIX (v1.1.00): Profile modal size
   Evita que o CSS do modal de assinatura (reaproveitando .modal-container) "encolha" o perfil.
   ========================= */
#profileModal .modal-container{
  width: min(1200px, calc(100vw - 48px)) !important;
  max-width: 1200px !important;
  max-height: calc(100vh - 48px) !important;
}
@media (min-width: 1280px){
  #profileModal .modal-container{
    width: min(1400px, calc(100vw - 64px)) !important;
    max-width: 1400px !important;
  }
}
#profileModal .modal-content{
  max-height: calc(100vh - 120px) !important;
}




/* =========================
   FIX (v1.1.02): Profile modal gallery should scroll with page (no fixed/sticky header)
   A regra global .modal-header estava com position: sticky e deixava a galeria "fixa".
   Aqui garantimos que, no #profileModal, o header participa do fluxo normal e o scroll é único.
   ========================= */
#profileModal{
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}
#profileModal .modal-header{
  position: relative !important; /* remove sticky/fixed */
  top: auto !important;
}
#profileModal .modal-carousel{
  /* Mantém scroll único do modal, mas limita a área da galeria para não ampliar demais as imagens */
  height: clamp(280px,44vh,480px) !important;
  min-height: 280px !important;
  max-height: 480px !important;
}
#profileModal .carousel-main{
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #000 !important;
}
#profileModal .carousel-main img{
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
}
#profileModal .carousel-main img{ object-fit: contain !important; }
#profileModal .thumb-item img{ object-fit: cover; }
/* Evita qualquer scroll interno inesperado */
#profileModal .modal-container,
#profileModal .modal-body,
#profileModal .modal-info{
  overflow: visible !important;
  max-height: none !important;
  height: auto !important;
}

/* =========================
   FIX (v1.1.03): Profile modal must allow full scroll (no 90vh clipping)
   O tema tem um segundo bloco ("MODAL DE ASSINATURA") que redefine
   .modal-overlay e .modal-container e pode limitar o scroll (max-height: 90vh)
   e centralizar via flex. No #profileModal queremos:
   - overlay com overflow-y:auto
   - container sem max-height/overflow interno
   - scroll único no overlay
   ========================= */
#profileModal.modal-overlay{
  display: none;
  align-items: flex-start !important;
  justify-content: center !important;
  overflow-y: auto !important;
  height: 100vh !important;
  width: 100vw !important;
}
#profileModal.modal-overlay.active{
  display: block !important; /* evita o flex do modal de assinatura */
}

#profileModal .modal-container{
  max-height: none !important;
  overflow: visible !important;
  background: transparent !important;
  margin: 40px auto !important;
}

#profileModal .modal-content{
  max-height: none !important;
}

/* =========================
   v1.1.14 — Gallery sizing + prevent clipping
   ========================= */

/* Give the carousel a comfortable height but keep it responsive */
#profileModal .modal-carousel{
  height: clamp(360px, 60vh, 640px) !important;
  max-height: none !important;
}

/* Thumbnails columns: allow scroll so all items are reachable */
#profileModal .carousel-thumbs{
  height: 100% !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding-right: 6px;
  scrollbar-gutter: stable;
}

#profileModal .carousel-thumbs::-webkit-scrollbar{ width: 8px; }
#profileModal .carousel-thumbs::-webkit-scrollbar-track{ background: rgba(255,255,255,0.06); border-radius: 999px; }
#profileModal .carousel-thumbs::-webkit-scrollbar-thumb{ background: rgba(255,255,255,0.18); border-radius: 999px; }

/* Stop flex stretching which was causing weird sizing and clipping */
#profileModal .thumb-item{
  /* thumbs devem preencher a coluna inteira (sem área preta sobrando) */
  flex: 1 1 0 !important;
  height: auto !important;
  min-height: 0 !important;
}

/* Keep images contained inside thumb boxes */
#profileModal .thumb-item img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}


/* Main image: keep it contained and limit maximum upscaling */
#profileModal .carousel-main{
  align-items: center !important;
  justify-content: center !important;
}

#profileModal #carouselMainImg{
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  max-width: 980px !important;
  max-height: 560px !important;
}

@media (max-width: 768px){
  #profileModal .modal-carousel{ height: clamp(320px, 55vh, 560px) !important; }
  #profileModal .thumb-item{ height: 96px !important; min-height: 96px !important; }
  #profileModal #carouselMainImg{ max-height: 420px !important; }
}

/* =========================
   v1.1.18 — MOBILE ONLY (NÃO TOCAR NO DESKTOP)
   Galeria no #profileModal deve ficar:
   [thumbs em linha] + [imagem grande] + [thumbs em linha]
   (como no print de referência). No desktop permanece como está.
   ========================= */
@media (max-width: 768px){
  /* força layout 1 coluna no carrossel do modal (top strip, main, bottom strip) */
  #profileModal .modal-carousel{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    height: auto !important;
    min-height: 0 !important;
  }

  /* thumbs em linha (scroll horizontal) */
  #profileModal .carousel-thumbs{
    flex-direction: row !important;
    height: auto !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 10px 10px !important;
    gap: 10px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  #profileModal .carousel-thumbs::-webkit-scrollbar{ display:none; }

  #profileModal .thumb-item{
    width: 84px !important;
    height: 84px !important;
    min-height: 84px !important;
    flex: 0 0 auto !important;
    border-radius: 14px !important;
  }
  #profileModal .thumb-item img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* imagem principal grande, ocupando o máximo possível sem estourar */
  #profileModal .carousel-main{
    height: clamp(340px, 58vh, 560px) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    background: #000 !important;
    position: relative !important;
  }
  #profileModal #carouselMainImg{
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
  }

  /* CTA do bloqueio (no MEIO) não pode estourar largura no mobile */
  #profileModal .carousel-main .lock-overlay,
  #profileModal .carousel-main .carousel-lock-overlay{
    width: min(92%, 380px) !important;
    max-width: calc(100% - 24px) !important;
  }
}




/* =========================================================
   MOBILE ONLY - Galeria do Profile Modal (slider + grid 2 col)
   (NÃO afeta DESKTOP)
========================================================= */
@media (max-width: 820px){
  /* v1.1.21 — MOBILE ONLY: modal fullscreen (100vw)
     A moldura/borda dourada não pode limitar a galeria. */
  #profileModal .modal-container{
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  /* remove cantos e margens que encolhiam o conteúdo */
  #profileModal .modal-header{
    border-radius: 0 !important;
    margin-bottom: 12px !important;
  }
  /* botão X sempre acessível */
  #profileModal .modal-close{
    top: 10px !important;
    right: 10px !important;
    z-index: 10002 !important;
  }

  /* MOBILE: aproveitar mais largura útil no modal (sem afetar desktop) */
  #profileModal .modal-body{
    padding: 14px 14px 18px !important;
  }

  #profileModal .modal-carousel{
    display:block !important;
    height:auto !important;
  }
  /* esconde colunas laterais de thumbs no mobile */
  #profileModal #thumbsLeft,
  #profileModal #thumbsRight{
    display:none !important;
  }

  /* slider (imagem grande) */
  #profileModal .carousel-main{
    width:100% !important;
    max-width:100% !important;
    margin:0 auto !important;
    border-radius:18px !important;
    overflow:hidden !important;
  }
  #profileModal #carouselMainImg{
    width:100% !important;
    height:auto !important;
    max-height:55vh !important;
    object-fit:contain !important;
    background:#0b0b0b;
    display:block;
  }

  /* botões de navegação ficam menores e não estouram */
  #profileModal .carousel-nav-btn{
    width:44px !important;
    height:44px !important;
    border-radius:999px !important;
    z-index: 50 !important;      /* sempre acima do blur/CTA */
    opacity: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: auto !important;
  }

  /* grid 2 col abaixo do slider */
  #profileModal .dx-mobile-grid{
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:12px !important;
    margin-top:12px !important;
  }
  #profileModal .dx-mg-item{
    appearance:none;
    border:0;
    padding:0;
    background:transparent;
    border-radius:16px !important;
    overflow:hidden !important;
    line-height:0;
    position: relative;
    /* aumenta um pouco a altura visual sem estourar */
    aspect-ratio: 2 / 3;
  }
  #profileModal .dx-mg-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:16px;
  }

  /* thumbs bloqueados (Premium/Exclusiva) - CTA proporcional */
  #profileModal .dx-mg-item.dx-mg-locked img{
    filter: blur(9px) brightness(.55) saturate(.95);
    transform: scale(1.06);
  }
  #profileModal .dx-mg-item .dx-mg-lock{
    position:absolute;
    left:10px;
    right:10px;
    bottom:10px;
    z-index:3;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:6px;
    padding:10px 12px;
    border-radius:14px;
    background: rgba(0,0,0,.58);
    border:1px solid rgba(255,136,0,.35);
    backdrop-filter: blur(6px);
  }
  #profileModal .dx-mg-item .dx-mg-lock-text{
    /* trocamos o texto via pseudo-elementos para manter o HTML/JS intactos */
    color:#fff;
    opacity:.95;
    text-align:center;
    font-size:0; /* esconde texto antigo */
    line-height:0;
    margin:0;
  }
  #profileModal .dx-mg-item .dx-mg-lock-text::before{
    content:"ASSINE PARA LIBERAR";
    display:block;
    font-weight:900;
    letter-spacing:.35px;
    text-transform:uppercase;
    font-size:11px;
    line-height:1.05;
    margin-bottom:2px;
  }
  #profileModal .dx-mg-item .dx-mg-lock-text::after{
    content:"Exclusivo para assinantes";
    display:block;
    font-weight:600;
    letter-spacing:.2px;
    text-transform:none;
    font-size:10px;
    line-height:1.15;
    opacity:.9;
  }
  #profileModal .dx-mg-item .dx-mg-unlock{
    appearance:none;
    border:0;
    cursor:pointer;
    background:#FF7A1A;
    color:#fff;
    font-weight:900;
    letter-spacing:.4px;
    text-transform:uppercase;
    border-radius:999px;
    padding:9px 18px;
    font-size:11px;
    line-height:1;
    box-shadow: 0 10px 22px rgba(0,0,0,.30);
    white-space:nowrap;
    align-self:center;
  }
  #profileModal .dx-mg-item .dx-mg-unlock:hover{ filter: brightness(.95); }

  /* garante que o CTA do bloqueio principal não estoure */
  #profileModal .dx-main-lock-card{
    max-width:92vw !important;
  }
}

/* HOTFIX v1.1.35 — ProfileModal: galeria mobile (slide + thumbs grid abaixo) */
body.dx-modal-lock .home-addicionar-btn{display:none !important;}
#profileModal .modal-header{position:relative !important;z-index:2 !important;}
#profileModal .modal-info{position:relative !important;z-index:1 !important;}
#profileModal .modal-main-info{position:relative !important;}
@media (max-width: 820px){
  #profileModal .modal-carousel{display:block !important;height:auto !important;}
  #profileModal #thumbsLeft{display:none !important;}
  #profileModal #thumbsRight{display:none !important;}
  #profileModal .carousel-main{height:auto !important;background:#000 !important;}
  #profileModal #carouselMainImg{width:100% !important;height:auto !important;max-height:55vh !important;object-fit:contain !important;display:block !important;}
  #profileModal .dx-mobile-grid{display:grid !important;grid-template-columns:repeat(2,1fr) !important;gap:14px !important;margin-top:14px !important;padding:0 2px !important;}
  #profileModal .dx-mobile-grid .thumb-image{width:100% !important;aspect-ratio:1/1;object-fit:cover !important;border-radius:18px !important;}
}


/* =============================================================
   DXSP v2 — Redesign elegante da seção de perfil
   ============================================================= */

/* ── Wrapper geral ── */
.dxsp-info {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-top: 0;
}

/* ── Card principal ── */
.dxsp-card {
  background: linear-gradient(160deg, #181818 0%, #0f0f0f 100%);
  border-radius: 24px;
  padding: 36px 32px 32px;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
  position: relative;
  overflow: hidden;
}
.dxsp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.45), transparent);
}

/* ── Badge ── */
.dxsp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #c9953a 0%, #e8c96a 50%, #b8820e 100%);
  color: #1a0e00;
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(212,175,55,.28);
}
.dxsp-badge--vip {
  background: linear-gradient(135deg, #8b5cf6 0%, #c084fc 50%, #7c3aed 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(139,92,246,.35);
}

/* ── Nome ── */
.dxsp-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 10px;
  letter-spacing: -.5px;
}

/* ── Localização ── */
.dxsp-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #888;
  font-size: 13px;
  margin-bottom: 0;
}
.dxsp-location svg { color: #d4af37; flex-shrink: 0; }

/* ── Hero block ── */
.dxsp-hero {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* ── Telefone em destaque ── */
.dxsp-phone-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 22px;
  padding: 16px 20px;
  background: rgba(212,175,55,.05);
  border: 1px solid rgba(212,175,55,.15);
  border-radius: 16px;
}
.dxsp-phone-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #d4af37;
  opacity: .7;
  text-transform: uppercase;
}
.dxsp-phone-number {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 800;
  color: #fff;
  letter-spacing: .5px;
  text-decoration: none;
  transition: color .2s;
}
.dxsp-phone-number:hover { color: #d4af37; }

/* ── Botões de ação ── */
.dxsp-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.dxsp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.dxsp-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.0);
  transition: background .18s;
}
.dxsp-btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.dxsp-btn:active { transform: translateY(0); filter: brightness(.95); }

/* WhatsApp */
.dxsp-btn--whatsapp {
  background: linear-gradient(135deg, #25d366, #128c3a);
  color: #fff;
  box-shadow: 0 6px 22px rgba(37,211,102,.30);
  flex: 1 1 auto;
}
.dxsp-btn--whatsapp:hover { box-shadow: 0 10px 30px rgba(37,211,102,.40); }

/* Ligar */
.dxsp-btn--call {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff;
  box-shadow: 0 6px 22px rgba(59,130,246,.28);
  flex: 1 1 auto;
}
.dxsp-btn--call:hover { box-shadow: 0 10px 30px rgba(59,130,246,.40); }

/* Favoritar */
.dxsp-btn--fav {
  background: rgba(255,255,255,.06);
  color: #ccc;
  border: 1px solid rgba(255,255,255,.10);
  flex: 0 0 auto;
}
.dxsp-btn--fav:hover { background: rgba(232,54,93,.12); color: #e8365d; border-color: rgba(232,54,93,.3); }
.dxsp-btn--fav.active { background: rgba(232,54,93,.15); color: #e8365d; border-color: rgba(232,54,93,.4); }

/* ── Citação ── */
.dxsp-quote {
  position: relative;
  padding: 20px 22px 18px 52px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  border-left: 3px solid #d4af37;
  border-radius: 0 16px 16px 0;
  margin-bottom: 26px;
}
.dxsp-quote-mark {
  position: absolute;
  top: 8px; left: 16px;
  font-size: 52px;
  line-height: 1;
  font-family: Georgia, serif;
  color: #d4af37;
  opacity: .35;
  pointer-events: none;
}
.dxsp-quote-text,
.dxsp-quote-text p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
  font-style: italic;
}

/* ── Section label ── */
.dxsp-section-label {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 12px;
}

/* ── Tags ── */
.dxsp-tags-section { margin-bottom: 26px; }
.dxsp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dxsp-tag {
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.22);
  color: #d4af37;
  cursor: default;
  transition: background .2s, color .2s, transform .15s;
}
.dxsp-tag:hover {
  background: #d4af37;
  color: #0d0d0d;
  transform: translateY(-1px);
}

/* ── Stats grid ── */
.dxsp-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 4px;
}
.dxsp-stat-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 14px 16px;
  transition: border-color .2s;
}
.dxsp-stat-card:hover { border-color: rgba(212,175,55,.25); }
.dxsp-stat-card--wide {
  grid-column: 1 / -1;
}
.dxsp-stat-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #555;
}
.dxsp-stat-value {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.dxsp-stat-value small {
  font-size: 12px;
  font-weight: 500;
  color: #888;
}
.dxsp-stat-value--sm {
  font-size: 13px;
  font-weight: 600;
  color: #ccc;
}

/* ═══════════════════════════════
   SIDEBAR
   ═══════════════════════════════ */
.dxsp-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── HotCam card ── */
.dxsp-hotcam-card {
  background: linear-gradient(150deg, #1a0909 0%, #0d0505 100%);
  border: 1px solid rgba(239,68,68,.2);
  border-radius: 22px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.dxsp-hotcam-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 130px; height: 130px;
  background: radial-gradient(circle, rgba(239,68,68,.18) 0%, transparent 70%);
  pointer-events: none;
}
.dxsp-live-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}
.dxsp-live-dot {
  width: 8px; height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: dxsp-blink 1.2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(239,68,68,.8);
}
@keyframes dxsp-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.75); }
}
.dxsp-live-text {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ef4444;
  text-transform: uppercase;
}
.dxsp-hotcam-title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.dxsp-hotcam-desc {
  font-size: 12px;
  color: #888;
  line-height: 1.5;
  margin-bottom: 18px;
}
.dxsp-hotcam-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, filter .18s;
  box-shadow: 0 8px 24px rgba(239,68,68,.30);
  animation: dxsp-pulse-red 2.5s ease-in-out infinite;
}
@keyframes dxsp-pulse-red {
  0%, 100% { box-shadow: 0 8px 24px rgba(239,68,68,.30); }
  50%       { box-shadow: 0 8px 36px rgba(239,68,68,.55); }
}
.dxsp-hotcam-btn:hover { transform: translateY(-2px) scale(1.01); filter: brightness(1.1); }
.dxsp-hotcam-btn:active { transform: translateY(0); }

/* ── Compartilhar card ── */
.dxsp-share-card {
  background: linear-gradient(160deg, #181818, #0f0f0f);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 22px;
  padding: 22px;
}
.dxsp-share-title {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 16px;
}
.dxsp-share-row {
  display: flex;
  gap: 8px;
}
.dxsp-share-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.04);
  color: #aaa;
  cursor: pointer;
  transition: transform .17s, background .17s, color .17s, border-color .17s;
}
.dxsp-share-btn:hover { transform: translateY(-2px); }
.dxsp-share-wpp:hover { background: rgba(37,211,102,.15); color: #25d366; border-color: rgba(37,211,102,.3); }
.dxsp-share-fb:hover  { background: rgba(24,119,242,.15); color: #1877f2; border-color: rgba(24,119,242,.3); }
.dxsp-share-tw:hover  { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.2); }
.dxsp-share-copy:hover { background: rgba(212,175,55,.12); color: #d4af37; border-color: rgba(212,175,55,.3); }
.dxsp-share-copy.copied { background: rgba(34,197,94,.15); color: #22c55e; border-color: rgba(34,197,94,.3); }

/* ═══════════════════════════════
   RESPONSIVE MOBILE (≤768px)
   ═══════════════════════════════ */
@media (max-width: 768px) {
  .dxsp-info {
    grid-template-columns: 1fr;
  }
  .dxsp-card {
    padding: 24px 18px;
  }
  .dxsp-actions {
    flex-direction: column;
  }
  .dxsp-btn {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    font-size: 14px;
  }
  .dxsp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dxsp-stat-value { font-size: 18px; }
  .dxsp-sidebar {
    flex-direction: column;
  }
  .dxsp-share-row { gap: 6px; }
}

@media (max-width: 480px) {
  .dxsp-name { font-size: 28px; }
  .dxsp-phone-number { font-size: 22px; }
  .dxsp-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
