/* ===================================
   Gonzales Commissions - Styling
   =================================== */

:root {
    --nullax-purple: #a82bff;
    --bg-dark: #050505;
    --bg-card: #0e0e0e;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #777777;
    --accent: #bc62ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Navigation --- */
.topnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1a1a1a;
}

.logo-header {
    height: 40px;
    transition: transform 0.3s;
}

.logo-header:hover {
    transform: scale(1.1);
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--nullax-purple);
}

.cta-btn {
    background: var(--nullax-purple);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s, transform 0.3s;
}

.cta-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
    color: white;
}

/* --- Hero --- */
.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a0525 0%, #050505 70%);
}

.glitch-text {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    letter-spacing: 10px;
    position: relative;
    color: white;
}

.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    text-shadow: -2px 0 red;
    top: 0;
    color: white;
    background: var(--bg-dark);
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(44px, 9999px, 56px, 0); }
    20% { clip: rect(12px, 9999px, 30px, 0); }
    40% { clip: rect(89px, 9999px, 98px, 0); }
    60% { clip: rect(23px, 9999px, 45px, 0); }
    80% { clip: rect(67px, 9999px, 78px, 0); }
    100% { clip: rect(5px, 9999px, 15px, 0); }
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.artist-badge {
    display: inline-block;
    margin-top: 20px;
    padding: 5px 15px;
    border: 1px solid var(--nullax-purple);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--nullax-purple);
}

/* --- Sections --- */
section {
    padding: 80px 10%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 800;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--nullax-purple);
    margin: 15px auto 0;
}

/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.art-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #111;
    cursor: pointer;
}

.art-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.art-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.art-card:hover img {
    transform: scale(1.05);
}

.art-card:hover .art-info {
    opacity: 1;
}

/* --- Pricing --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.price-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #1a1a1a;
    transition: transform 0.3s, border-color 0.3s;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--nullax-purple);
}

.price-card.featured {
    border: 2px solid var(--nullax-purple);
    box-shadow: 0 10px 30px rgba(168, 43, 255, 0.1);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 25px;
    color: white;
}

.price-card ul {
    list-style: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: left;
}

.price-card li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.price-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--nullax-purple);
}

/* --- Terms --- */
.terms-section {
    background: #080808;
}

.terms-container {
    max-width: 800px;
    margin: 0 auto;
    background: #111;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--nullax-purple);
}

.terms-content {
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- Footer --- */
footer {
    padding: 60px 10%;
    border-top: 1px solid #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #030303;
}

.logo-footer {
    height: 30px;
    opacity: 0.5;
}

#Contatos ul {
    list-style: none;
    text-align: right;
}

#Contatos li {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

#Contatos a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

#Contatos a:hover {
    color: var(--nullax-purple);
}

.copyright {
    opacity: 0.5;
    margin-top: 10px;
}

/* --- Mobile --- */
@media (max-width: 768px) {
    nav { display: none; }
    footer { flex-direction: column; gap: 30px; text-align: center; }
    #Contatos ul { text-align: center; }
}
