/* --- RESET E VARIÁVEIS GLOBAIS --- */
:root {
    --bg-color: #050505;       /* Preto profundo conforme imagem */
    --card-bg: #0a0a0a;        /* Cinza muito escuro para cards */
    --text-color: #ffffff;     /* Branco puro */
    --text-secondary: #a3a3a3; /* Cinza claro para subtítulos */
    --accent-color: #ffffff;   /* Acentos em branco */
    --font-main: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- UTILITÁRIOS --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.section-label {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 15px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

p {
    color: var(--text-secondary);
    font-weight: 300;
}

/* --- BOTÕES --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #fff;
    color: #000;
    border: 1px solid #fff;
}

.btn-primary:hover {
    background-color: #dcdcdc;
    border-color: #dcdcdc;
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    margin-left: 15px;
}

.btn-outline:hover {
    border-color: #fff;
    background-color: rgba(255,255,255,0.05);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1rem;
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    background-image: url('img/tatuadortatuando.jpg'); /* Imagem de fundo abstrata/studio */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7); /* Escurece a imagem de fundo */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero .subtitle {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #ccc;
}

/* --- ABOUT SECTION --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(100%); /* Efeito preto e branco na foto */
}

.about-text p {
    margin-bottom: 20px;
}

.highlight-text {
    color: #fff; /* Texto levemente azulado/branco para destaque */
    margin-bottom: 40px;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.stat-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.stat-item span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* --- PORTFOLIO SECTION --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header p {
    max-width: 500px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.portfolio-item {
    aspect-ratio: 1 / 1; /* Garante thumbnails quadrados */
    overflow: hidden;
    position: relative;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(80%);
}

.portfolio-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background-color: var(--card-bg);
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.05);
}

.stars {
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 30px;
    min-height: 80px;
}

.reviewer-info h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.reviewer-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* --- FOOTER / CONTACT --- */
.footer {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 20px;
}

.footer h2 {
    margin-bottom: 15px;
}

.footer p {
    max-width: 600px;
    margin: 0 auto 40px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
    margin-bottom: 80px;
}

.contact-item i {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.contact-item h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    font-size: 0.9rem;
    margin: 0;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    font-size: 0.8rem;
    color: #555;
}

/* --- RESPONSIVIDADE (MOBILE) --- */
@media (max-width: 900px) {
    .hero h1 { font-size: 2.8rem; }
    
    .about-grid,
    .testimonials-grid,
    .contact-info-grid {
        grid-template-columns: 1fr; /* Empilha tudo em uma coluna */
    }

    .about-image img { height: 400px; }
    
    .portfolio-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    
    .btn-outline { margin-left: 0; margin-top: 15px; display: block; text-align: center;}
    .buttons { display: flex; flex-direction: column; align-items: stretch; max-width: 300px; margin: 0 auto; }
}

/* --- BARRA DE ESCASSEZ --- */
.scarcity-banner {
    background-color: #0f0f0f; /* Um pouco mais claro que o fundo preto total */
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
}

.scarcity-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Para funcionar no mobile */
    gap: 20px;
}

/* O Indicador de Status */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}

.status-text {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}

/* O ponto que pulsa (Animação) */
.pulsing-dot {
    width: 8px;
    height: 8px;
    background-color: #c94c4c; /* Vermelho para indicar "Fechado/Espera" */
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 0 rgba(201, 76, 76, 0.7);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(201, 76, 76, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(201, 76, 76, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(201, 76, 76, 0);
    }
}

/* Texto descritivo */
.scarcity-text {
    font-size: 0.9rem;
    color: #ccc;
    margin: 0;
    max-width: 500px;
}

/* Link de ação */
.waitlist-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.waitlist-link:hover {
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;
}

.waitlist-link i {
    margin-left: 5px;
    font-size: 0.8rem;
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .scarcity-flex {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .scarcity-text {
        font-size: 0.8rem;
    }
}