:root {
    --purple: #8B00FF;
    --dark: #1A1A1A;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: 'Inter', sans-serif;
    background: #FFFFFF;
    color: #1A1A1A;
    line-height: 1.6;
}

.container { 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* ==================== HEADER ==================== */
.header {
    background: rgba(255, 255, 255, 0.98);
    width: 100%;
    border-bottom: 1px solid rgba(139, 0, 255, 0.15);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 20px;
}

.logo { 
    font-family: 'Playfair Display', serif; 
    font-size: 34px; 
    font-weight: 700; 
}
.logo-purple { color: var(--purple); }
.logo-white { color: var(--dark); }

/* ==================== MAIN ==================== */
.main-title {
    text-align: center;
    font-size: 2.8rem;
    margin: 40px 0 15px;
    color: #1A1A1A;
    font-family: 'Playfair Display', serif;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1A1A1A;
    font-weight: 600;
}

/* ==================== PRODUTOS ==================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    padding: 30px 0 80px;
}

.product-card {
    background: #FFFFFF;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid rgba(139, 0, 255, 0.25);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.4s;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--purple);
}

/* ==================== IMAGENS DOS PRODUTOS (OTIMIZADO) ==================== */
.product-image-container {
    position: relative;
    height: 260px;           /* Melhor altura para suas imagens grandes */
    background: #000;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.purple-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--purple);
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 2;
}

/* ==================== INFORMAÇÕES DO PRODUTO ==================== */
.product-info { 
    padding: 20px; 
}

.product-title { 
    font-size: 1.25rem; 
    margin-bottom: 8px; 
}

.product-desc { 
    color: #555; 
    margin-bottom: 18px; 
    font-size: 0.98rem;
}

.price {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 18px;
}

/* ==================== BOTÕES ==================== */
.buttons {
    display: flex;
    gap: 12px;
    padding: 0 20px 20px;
}

.preview-btn, .buy-btn {
    flex: 1;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.02rem;
}

.preview-btn {
    background: transparent;
    border: 2px solid #555;
    color: #1A1A1A;
}

.preview-btn:hover {
    border-color: var(--purple);
    color: var(--purple);
}

.buy-btn {
    background: linear-gradient(90deg, #8B00FF, #C026D3);
    color: white;
    border: none;
}

.buy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(139, 0, 255, 0.4);
}

/* ==================== TRUST BAR ==================== */
.trust-bar { 
    display: flex; 
    justify-content: center; 
    gap: 50px; 
    padding: 45px 0; 
    flex-wrap: wrap;
    background: linear-gradient(to right, #f8f8ff, #ffffff);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #1A1A1A;
}

.trust-item i {
    font-size: 2rem;
    color: var(--purple);
}

/* ==================== MODAL ==================== */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.modal-content {
    background: #FFFFFF;
    width: 100%;
    max-width: 680px;
    max-height: 92vh;
    border-radius: 20px;
    overflow: hidden;
}

.modal-header {
    padding: 18px 22px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F8F8F8;
}

.close-modal {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
}

.modal-body {
    padding: 18px;
    max-height: 68vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ==================== FOOTER E SUPORTE ==================== */
.footer {
    background: #0F0F1A;
    color: white;
    padding: 35px 0;
    text-align: center;
    margin-top: 60px;
}

.support-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(90deg, #8B00FF, #C026D3);
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(139, 0, 255, 0.4);
    z-index: 9999;
}

/* Responsividade */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 480px) {
    .main-title { font-size: 2.2rem; }
    .product-image-container { height: 220px; }
    .buttons { flex-direction: column; }
}
/* ==================== OVERLAY "CLICK TO WATCH" ==================== */
.enter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(12px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    transition: opacity 0.6s ease;
}

.overlay-content {
    max-width: 520px;
    padding: 40px 20px;
}

.overlay-content h1 {
    font-size: 3.4rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Playfair Display', serif;
}

.overlay-text {
    font-size: 2.3rem;
    margin-bottom: 45px;
    font-weight: 600;
    color: #ddd;
}

.enter-btn {
    background: linear-gradient(90deg, #8B00FF, #C026D3);
    color: white;
    border: none;
    padding: 18px 55px;
    font-size: 1.45rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s;
    margin-bottom: 30px;
}

.enter-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(139, 0, 255, 0.8);
}

.age-warning {
    font-size: 1.1rem;
    opacity: 0.85;
}