/* --- VARIÁVEIS DO DESIGN SYSTEM (Paleta 2) --- */
:root {
    --bg-color: #1C1E21; /* Cinza Chumbo */
    --bg-card: #282A2E; /* Cinza Chumbo um pouco mais claro */
    --primary-color: #B76E79; /* Rosé Gold */
    --secondary-color: #D4AFB9; /* Rosé Suave */
    --text-color: #EAEAEA; /* Branco Gelo */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* --- RESET BÁSICO --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- TIPOGRAFIA --- */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 { font-size: 2.8rem; line-height: 1.2; }
h2 { font-size: 2.2rem; text-align: center; margin-bottom: 2rem; }
h3 { font-size: 1.5rem; }

p { margin-bottom: 1rem; color: #CCCCCC; }

/* --- ESTRUTURA GLOBAL --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section { padding: 80px 0; }

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; display: inline-block; }

/* --- BOTÕES --- */
.btn-primary, .btn-outline {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    margin-top: 15px;
}

.btn-primary:hover {
    background-color: #9d5c66; /* Tom mais escuro do Rosé no hover */
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* --- HEADER --- */
.header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo { font-size: 1.5rem; margin-bottom: 0; color: #fff; }

/* --- HERO SECTION (Dobra 1) --- */
.hero {
    display: flex;
    align-items: center;
    min-height: 80vh;
}
.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}
.hero-text { flex: 1; }
.hero-image { flex: 1; text-align: center; }
.profile-img {
    max-width: 100%;
    border-radius: 8px;
    border-bottom: 5px solid var(--primary-color);
}
.pre-title {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

/* --- SERVIÇOS E CARDS (Dobra 2) --- */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.card {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: 8px;
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-5px); }

/* --- SOBRE (Dobra 3) --- */
.about { background-color: var(--bg-card); }
.about-content { max-width: 800px; margin: 0 auto; text-align: center; }
.bullet-points {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin-top: 20px;
}
.bullet-points li {
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

/* --- PROCESSO (Dobra 4) --- */
.grid-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.process-step {
    text-align: center;
}
.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px auto;
    font-family: var(--font-heading);
}

/* --- RODAPÉ (Dobra 5) --- */
.footer {
    background-color: #151618;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9rem;
}
.footer-links a:hover { text-decoration: underline; }

/* --- RESPONSIVIDADE (Celulares e Tablets) --- */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}