body {
    font-family: Arial, sans-serif;
    background-color: #f0e6da;
}

/* HEADER */
.topo {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* MENUS */
.menu-esquerda,
.menu-direita {
    display: flex;
    gap: 25px;
}

.menu-esquerda a,
.menu-direita a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    transition: 0.3s;
}

.menu-esquerda a:hover,
.menu-direita a:hover {
    opacity: 0.6;
}

/* LOGO CENTRAL */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #5a2ea6;
}

.logo img {
    height: 3em;
    position: relative;
    top: 0px;
}

.logo span {
    position: relative;
    top: 5px;
}

/* HERO */
.hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* IMAGEM FORA DA HERO */
.flor-decorativa {
    position: absolute;
    top: 0;
    right: 0;

    width: 500px;
    max-width: 40%;

    z-index: 1;
    pointer-events: none;
}

/* QUEM SOMOS */
.quem-somos {
    position: relative;
    z-index: 2; /* 🔥 sobe acima da imagem */
    background-color: #f7a95e;
}

/* TEXTO */
.texto-topo h2 {
    font-weight: bold;
    margin-bottom: 15px;
}

.texto-topo p {
    color: #555;
    max-width: 400px;
}

.no-break {
    white-space: nowrap;
}

.card-container {
    background: #fff;
    margin-top: 14px;
    padding: 14px;
    border-radius: 16px;
}

/* CARD */
.card-equipe {
    padding: 14px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
}

/* IMAGEM WRAPPER (3x4) */
.imagem-wrapper {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 10px;
}

/* IMAGEM */
.imagem-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXTO DO CARD */
.card-equipe h5 {
    margin-top: 14px;
    font-weight: 600;
}

.card-equipe p {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.card-equipe span {
    font-size: 13px;
    color: #5a2ea6;
}

/* HOVER SUAVE */
.card-equipe:hover {
    transform: translateY(-5px);
}