/*
Theme Name: Life Signals
Theme URI: https://lifesignals.com.br
Description: Tema exclusivo para e-commerce de canecas e blusas personalizadas
Version: 1.0.0
Author: Life Signals
Author URI: https://lifesignals.com.br
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: life-signals
Domain Path: /languages
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e0e0;
    overflow-x: hidden;
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    letter-spacing: -1px;
}

.text-gradient {
    background: linear-gradient(135deg, #ff1493, #ff69b4, #ffc0cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-neon {
    text-shadow: 0 0 10px #ff1493, 0 0 20px #ff1493, 0 0 30px #ff1493;
    color: #ff1493;
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse-neon {
    0%, 100% {
        box-shadow: 0 0 20px #ff1493, 0 0 40px #ff1493;
    }
    50% {
        box-shadow: 0 0 30px #ff1493, 0 0 60px #ff1493;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slideInRight {
    animation: slideInRight 0.8s ease-out forwards;
}

/* ===== ELEMENTOS ===== */
.app-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.container-main {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ff1493;
    padding: 10px 20px;
    border-radius: 6px;
    border: 2px solid #ff1493;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 20, 147, 0.1);
    transform: scale(1.05);
}

.card-produto {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.card-produto:hover {
    border-color: #ff1493;
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.2);
}

.badge-categoria {
    display: inline-block;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.carrinho-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff1493;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: #ff1493;
    background: rgba(255, 20, 147, 0.1);
}

.hero-section {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, rgba(255, 105, 180, 0.05) 50%, rgba(16, 33, 62, 0.3) 100%);
    border-bottom: 1px solid rgba(255, 20, 147, 0.2);
    padding: 80px 20px;
}

.produto-imagem {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.card-produto:hover .produto-imagem {
    transform: scale(1.05);
}

.input-busca {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 20, 147, 0.3);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.input-busca:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: #ff1493;
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.2);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.ativo {
    display: flex;
    animation: fadeInUp 0.3s ease-out;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 12px;
    padding: 32px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 16px;
}

.carousel-imagem {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: none;
}

.carousel-imagem.ativa {
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: rgba(255, 20, 147, 0.8);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 20, 147, 0.2);
    color: #b0b0b0;
    padding: 40px 20px 20px;
    text-align: center;
    margin-top: 60px;
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 16px 0;
}

.social-links a {
    color: #ff1493;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.social-links a:hover {
    color: #ff69b4;
    transform: scale(1.1);
}

.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff1493;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
    display: none;
    z-index: 2000;
    animation: slideInRight 0.3s ease-out;
}

.toast.mostrar {
    display: block;
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid rgba(255, 20, 147, 0.3);
    color: #e0e0e0;
    cursor: pointer;
    border-radius: 6px;
    margin-right: 12px;
    margin-bottom: 16px;
    transition: all 0.3s;
    font-weight: 600;
}

.tab-btn.ativo {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    border-color: #ff1493;
    color: white;
}

.filtro-badge {
    display: inline-block;
    padding: 6px 14px;
    margin: 6px 6px 6px 0;
    background: rgba(255, 20, 147, 0.2);
    border: 1px solid #ff1493;
    color: #ff1493;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 13px;
    font-weight: 500;
}

.filtro-badge:hover,
.filtro-badge.ativo {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    border-color: #ff1493;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 20px;
    }

    .container-main {
        padding: 0 16px;
    }

    .modal-content {
        padding: 24px;
    }

    .carousel-imagem {
        height: 250px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }
}