/* Paleta de Cores:
#36123D - Roxo Profundo (Principal)
#FFFAE3 - Bege Claro (Fundo)
#A48753 - Dourado/Acento
#323232 - Cinza Escuro (Texto)
*/

body {
    font-family: 'Montserrat', sans-serif;
    color: #323232;
    background-color: #FFFAE3;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Tipografia e Títulos */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #36123D;
    text-align: center;
    margin-bottom: 20px;
}

h1 { font-size: 2.5em; }
h2 { font-size: 2em; }
h3 { font-size: 1.5em; color: #36123D; }

/* Layout Geral */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

/* Cabeçalho Fixo */
header {
    background-color: #36123D;
    color: #FFFAE3;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
header .logo { font-size: 1.5em; font-weight: bold; }
header nav a {
    color: #FFFAE3;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}
header nav a:hover { color: #A48753; }

/* Botões de Ação (CTAs) */
.btn-primary {
    background-color: #36123D; /* Roxo Profundo */
    color: #FFFAE3;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}
.btn-primary:hover {
    background-color: #A48753; /* Dourado */
    color: #36123D;
}
.btn-secondary {
    background-color: #A48753; /* Dourado */
    color: #36123D;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}
.btn-secondary:hover {
    background-color: #36123D;
    color: #FFFAE3;
}

/* Seção Home (Hero) */
#home {
    min-height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    background-color: #FFFAE3;
    padding: 100px 0;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #A48753;
}

/* Seção de Dores/Público (Cards) */
#publico .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
#publico .card {
    background-color: #FFFAE3;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(54, 18, 61, 0.1); /* Sombra suave roxa */
    text-align: center;
}
#publico .card h3 {
    color: #36123D;
    margin-top: 10px;
}
/* Simulação de Ícone */
#publico .card::before {
    content: "🌟"; /* Ícone genérico */
    font-size: 2em;
    color: #A48753;
    display: block;
    margin-bottom: 10px;
}

/* Seção Sobre Mim */
#sobre {
    background-color: rgba(54, 18, 61, 0.05); /* Roxo muito claro */
}
#sobre .sobre-content {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}
#sobre .sobre-content img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
#sobre .sobre-text {
    flex: 1;
}

/* Seção Serviços */
#servicos {
    background-color: #36123D;
    color: #FFFAE3;
}
#servicos h2 {
    color: #FFFAE3;
}
#servicos .servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
#servicos .service-card {
    background-color: #4b2351; /* Roxo ligeiramente mais claro */
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}
#servicos .service-card h3 {
    color: #A48753;
}
#servicos .service-card p {
    color: #FFFAE3;
}

/* Rodapé */
footer {
    background-color: #36123D;
    color: #FFFAE3;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9em;
}

/* Responsividade Básica */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }
    header nav {
        margin-top: 10px;
    }
    #sobre .sobre-content {
        flex-direction: column;
        text-align: center;
    }
    #publico .cards-grid, #servicos .servicos-grid {
        grid-template-columns: 1fr;
    }
}