/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow-x: hidden; /* Remove a barra de rolagem horizontal */
    display: flex;
    flex-direction: column;
}

main {
    flex: 1; /* Faz com que o conteúdo principal ocupe o espaço disponível */
}

/* Estilos gerais */
body {
    font-family: 'Arial', sans-serif;
    background-color: #fff5f8;
    color: #333;
    text-align: center;
}

/* Cabeçalho */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #d63384;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

/* Menu */
nav {
    display: flex;
}

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

.menu li {
    margin-left: 15px;
}

.menu li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

/* Botão hamburguer (aparece só no celular) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
}

/* Responsividade */
@media (max-width: 768px) {
    /* Esconder menu padrão e mostrar botão */
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #d63384;
        text-align: center;
        padding: 10px 0;
    }

    .menu li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    /* Mostrar o menu quando ativo */
    .menu.active {
        display: flex;
    }
}




nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Seção Principal */
.hero {
    padding: 0;
    margin: 0;
    background-color: black;
    margin-top: 60px; /* Para compensar o cabeçalho fixo */
}

/* Carrossel */
.carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: black;
}

/* Imagens do carrossel */
.carousel-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.carousel-images img.active {
    display: block;
}

/* Botões do Carrossel */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover, .next:hover {
    background-color: rgba(255, 255, 255, 0.5);
    color: black;
}

/* Seção de Dicas */
.dicas {
    flex-grow: 1;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dicas-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.dica {
    background: white;
    padding: 20px;
    border-radius: 15px; /* Bordas arredondadas */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 250px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.dica:hover {
    transform: translateY(-5px); /* Efeito sutil ao passar o mouse */
}


.dica h3 {
    color: #d63384;
    font-size: 20px;
    margin-bottom: 10px;
}

/* Rodapé */
footer {
    background-color: #d63384;
    color: white;
    padding: 20px;
    width: 100%;
}

/* Ajustes para telas menores */
@media (max-width: 768px) {
    .carousel {
        height: 300px;
    }

    .prev, .next {
        padding: 10px;
        font-size: 18px;
    }

    .dicas-container {
        flex-direction: column;
    }

    .dica {
        max-width: 90%;
        margin: 10px auto;
    }
}

/* Estilizar os links das redes sociais no rodapé */
.redes-sociais a {
    color: white; /* Mantém os links brancos */
    text-decoration: none; /* Remove o sublinhado */
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.redes-sociais a:hover {
    color: #ffccdc; /* Muda a cor ao passar o mouse para um tom rosado */
    text-decoration: underline;
}
