/* ===========================================================
   SoniX Studios - style.css
   Tema: roxo, lilás, preto e branco — premium e responsivo
   =========================================================== */

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

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #0f0420;
    color: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: #d8b4fe;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== HEADER ===== */
.header {
    background: rgba(15, 4, 32, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(180, 100, 255, 0.2);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 1.8rem;
    color: #a855f7;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.6));
}

.logo h1 {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #d8b4fe);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

/* ===== HERO ===== */
.hero {
    background: radial-gradient(circle at 50% 0%, #3d1470 0%, #1a0533 55%, #0f0420 100%);
    padding: 70px 20px 90px;
    text-align: center;
}

.hero-content {
    max-width: 760px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #fff 30%, #d8b4fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(220, 190, 255, 0.85);
    margin-bottom: 36px;
}

/* ===== VÍDEO ===== */
.video-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 16 / 9;
    margin: 0 auto 36px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(180, 100, 255, 0.35);
    box-shadow: 0 0 40px rgba(140, 60, 255, 0.25), 0 20px 60px rgba(0, 0, 0, 0.5);
    background: #1a0533;
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    cursor: pointer;
    background: linear-gradient(145deg, #2a0d4a, #3d1470);
    transition: opacity 0.2s ease;
}

.video-placeholder:hover {
    opacity: 0.9;
}

.play-icon {
    width: 64px;
    height: 64px;
    color: #fff;
    background: rgba(168, 85, 247, 0.35);
    border-radius: 50%;
    padding: 16px;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
}

.video-placeholder p {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.video-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-block;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: #fff;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.45);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.55);
}

.btn-large {
    padding: 18px 44px;
    font-size: 1.1rem;
}

/* ===== TÍTULOS DE SEÇÃO ===== */
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff 30%, #d8b4fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== FAQ ===== */
.faq {
    background: #0f0420;
    padding: 70px 20px;
}

.faq-grid {
    max-width: 760px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: linear-gradient(145deg, #2a0d4a, #3d1470);
    border: 1px solid rgba(180, 100, 255, 0.3);
    border-radius: 14px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    font-size: 1.3rem;
    color: #d8b4fe;
    transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 22px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 22px 18px;
}

.faq-answer p {
    color: rgba(220, 190, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== RODAPÉ ===== */
.footer {
    background: #06020f;
    border-top: 1px solid rgba(180, 100, 255, 0.2);
    padding: 32px 20px;
    text-align: center;
}

.footer p {
    color: rgba(220, 190, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.footer-contact a {
    color: #d8b4fe;
    text-decoration: none;
    font-weight: 600;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 600px) {
    .hero {
        padding: 50px 16px 70px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
        width: 100%;
    }
}

/* ===========================================================
   IMAGENS DOS CARDS DE PRODUTO
   =========================================================== */
.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0;
    display: block;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(168, 85, 247, 0.35);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.22);
    background: rgba(255, 255, 255, 0.04);
}

/* ===========================================================
   ITENS DO CARRINHO (miniatura + info + remover)
   =========================================================== */
.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(168, 85, 247, 0.18);
    margin-bottom: 10px;
}

.cart-item-thumb {
    width: 58px !important;
    height: 58px !important;
    min-width: 58px;
    max-width: 58px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
    border: 1px solid rgba(168, 85, 247, 0.30);
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.20);
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-name {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.cart-item-price {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 700;
}

.cart-item-remove {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 120, 120, 0.4);
    color: #fca5a5;
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.cart-item-remove:hover {
    background: rgba(255, 120, 120, 0.15);
}

@media (max-width: 480px) {
    .cart-item {
        align-items: center;
        gap: 10px;
    }

    .cart-item-thumb {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px;
        max-width: 48px;
    }

    .cart-item-remove {
        font-size: 12px;
        padding: 8px 10px;
    }
}
