/* ===== Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", Arial, sans-serif;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}
a {
    text-decoration: none;
    color:  #4D6B96;
}

body {
    background-color:#EFB8B6;
    color: #4D6B96;
    line-height: 2;
}

/* ===== Header e Menu ===== */
header {
    background: #f4e0e0;
    padding: 1rem 2rem;
    border-bottom: 1px solid #4D6B96;
    position: sticky;
    top: 0;
    z-index: 100;
}

.menu ol {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.menu li {
    cursor: pointer;
    font-weight: 800;
    transition: color 0.2s;
}

.menu li:hover {
    color: #4D6B96;
}


/* ===== Apresentação ===== */
.apresentacao {
    text-align: center;
    width: 90%;
    padding: 4rem 1rem;
}

.apresentacao h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.apresentacao p {
    color:  #4D6B96;
    font-size: 1.1rem;
}

.apresentacao img {
    width: 100%;
    border-radius: 30px;
    margin-top: 20px;
  
}
/* ===== Sessões de Texto ===== */
main > div {
    max-width: 900px;
    margin: 1rem auto;
    padding: 0 1rem;
}

h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    color: #3B3C3C;
}

/* ===== Galeria de Imagens ===== */
.trabalhos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.trabalhos img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.trabalhos img:hover {
    transform: scale(1.05);
}

/* ===== Procedimentos ===== */
section {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

section div {
    background: #f0eeee;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

section div:hover {
    transform: translateY(-5px);
}

section h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

section p {
    font-size: 0.95rem;
    color:  #3B3C3C;
}

/* ===== Footer ===== */
footer {
    background: #f4e0e0;
    padding: 2rem 1rem;
    margin-top: 3rem;
    border-top: 1px solid #4D6B96;
    text-align: center;
}

footer h2, footer h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

footer li {
    list-style: none;
    color: #3B3C3C;
}

.instagram img {
    width: 40px;
    margin: 1rem 0;
    transition: transform 0.3s;
}

.instagram img:hover {
    transform: scale(1.2);
}

.container-rodape {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #3B3C3C;
}