/* RESET GERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* ================= TOPO ================= */

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: hsl(80, 9%, 94%);
    padding: 25px 25px;
}

/* Idiomas (lado esquerdo) */
.languages span {
    margin-right: 15px;
    font-weight: bold;
    cursor: pointer;
}

/* Área dos ícones sociais no topo */
.social {
    display: flex;
    gap: 15px;                 /* espaço entre os ícones */
    align-items: center;
    justify-content: center;   /* centraliza no topo */
}

/* Cada ícone individual */
.social-icon img {
    width: 28px;               /* tamanho do ícone */
    height: 28px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.2s ease;
}

/* Efeito ao passar o mouse */
.social-icon img:hover {
    transform: scale(1.15);
}


/* ================= CONTEÚDO ================= */

.conteudo {
    display: flex;
    height: calc(100vh - 70px);
}

/* MENU LATERAL */
.menu {
    width: 240px;
    background-color: hsl(80, 9%, 94%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* LOGO DENTRO DO MENU */
.logo-box {
    width: 100%;
    height: 140px;        /* controla a altura máxima da área da logo */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.logo-box img {
    max-width: 360px;   /* AUMENTE ou DIMINUA AQUI */
    max-height: 100%;
    object-fit: contain;
}
/* MENU LINKS */
.menu ul {
    list-style: none;
    width: 100%;
}

.menu li {
    margin: 15px 0;
}

.menu a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
}

/* ================= ÁREA DO BANNER ================= */

.destaque {
    flex: 1;
    background-color: #e6f2ff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SLIDER */
.slider {
    width: 100%;
    height: 100%;
    background-color: #cfe6ff;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}
