/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a252f 100%);
    color: white;
    padding: 80px 0 100px 0;
    text-align: center;
    clip-path: polygon(20% 0%, 80% 0%, 100% 0, 100% 80%, 50% 100%, 0% 80%, 0 0);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content .highlight {
    color: var(--accent); /* Ciano */
}

.hero-content p {
    font-size: 1.2rem;
    color: #cbd5e0;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.btn-hero {
    background-color: var(--accent);
    color: var(--secondary);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.2s;
    display: inline-block;
}

.btn-hero:hover {
    transform: scale(1.05);
    background-color: #fff;
}

/* Títulos das Seções */
.section-title {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--secondary);
}

/* Ajustes do Card de Produto */
.product-card {
    padding: 0; /* Remove padding interno do container base */
    overflow: hidden; /* Para a imagem não sair da borda arredondada */
    display: flex;
    flex-direction: column;
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .card-image img {
    transform: scale(1.05);
}

.card-body {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
}

.card-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text);
}

.card-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary);
}

.card-footer {
    padding: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* Botões do Card */
.btn-outline {
    background: transparent !important;
    border: 1px solid var(--primary) !important;
    color: var(--primary) !important;
    padding: 8px 15px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: var(--primary) !important;
    color: white !important;
}

.btn-cart {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    padding: 9px 15px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
}

/* --- ESTILOS DO MODAL --- */
.modal-overlay {
    display: none; /* Escondido por padrão */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6); /* Fundo escuro transparente */
    backdrop-filter: blur(5px); /* Efeito Blur moderno */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.close-modal:hover { color: #000; }

.modal-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-price-tag {
    background: #d4edda;
    color: #155724;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.modal-body {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}
.hacker-mode {
    background: #000 !important;
    color: #0f0 !important;
    font-family: 'Courier New', monospace !important;
}
.hacker-mode .card, .hacker-mode nav, .hacker-mode .footer {
    background: #111 !important;
    border: 1px solid #0f0 !important;
    box-shadow: 0 0 10px #0f0 !important;
}
.hacker-mode h1, .hacker-mode h2, .hacker-mode p, .hacker-mode a {
    color: #0f0 !important;
}