/* Reset CSS - Remove margens e paddings padrão */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Importação de fonte externa do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Estilos gerais */
/* Comportamento de rolagem suave */
html {
    scroll-behavior: smooth;
}

body{
    font-family: 'Poppins', sans-serif;
    color: white;
    background: linear-gradient(to right, #30cfd0, #330867);
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Centraliza verticalmente */
    gap: 20px;
}

 
/* Header  */
header {
    width: 100%;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

/* Área principal  */
main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 300px;
} 


/* Imagem de perfil */
figure {
    overflow: hidden;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 10px;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

img:hover {
    transform: scale(1.2);
}

/* Textos */
h1 {
    margin: 0;
    font-size: 24px;
    text-align: center;
}

h2, p {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 400;
    text-align: center;

}

/* Botões */
button {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    width: 100%;
    height: 50px;
    color: #333;
    border: none;
    border-radius: 10px;
    background-color: white;
}

button:hover {
    cursor: pointer;
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    transition: 0.3s;
}


.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    padding: 15px;
    background: #2c3e50;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none; /* Oculta inicialmente */
    text-align: center;
  }
  
  .cookie-popup p {
    margin: 0 0 15px 0;
    font-size: 14px;
  }
  
  .cookie-button {
    padding: 8px 20px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
  }


/* Responsividade */
@media screen and (max-width: 600px) {
    body {
        padding: 20px;
    }

    main {
        width: 100%;
    }

    button {
        width: 100%;
    }
}

