/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    scroll-padding-top: 80px;
    top:1;
}

/* Cabeçalho */
header {
    background: #6c63ff;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 0;
}

/* Menu */
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.menu li {
    display: inline;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #ff6f61;
}

/* Botão de menu (responsivo) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Seções */
.section {
    padding: 2rem;
    margin: 2rem auto;
    width: 90%;
    max-width: 1200px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    scroll-margin-top: 125px; /* Espaçamento para âncoras, ajustado à altura do cabeçalho */
}


.section:nth-child(even) {
    background: #f4f4f4;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #6c63ff;
}

.section p {
    margin-bottom: 1rem;
}

.section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Seção de profissionais */
#profissionais {
    text-align: center;
    scroll-margin-top: 100px;
}

.profissionais h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #6c63ff;
}

.profissionais-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.profissional {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    max-width: 300px;
    text-align: center;
}

.profissional img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.profissional h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #6c63ff;
    margin-bottom: 0.5rem;
}

.profissional p {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

/* Links de contato */
ul li a {
    color: #6c63ff;
    text-decoration: none;
    font-weight: bold;
}

ul li a:hover {
    color: #ff6f61;
}

/* Rodapé */
footer {
    background: #6c63ff;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        background: #6c63ff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
    }

    .menu li {
        text-align: center;
        padding: 0.5rem 0;
    }

    .menu-toggle {
        display: block;
    }

    .menu.active {
        display: flex;
    }
}