@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Pacifico&family=Montserrat:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #f3e5f5; /* Fundo roxo claro */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Roboto', sans-serif;
    color: #4a148c;
    transition: background-color 0.5s ease;
}

.container {
    text-align: center;
    width: 90%;
    max-width: 750px;
    margin: 20px auto;
    flex-grow: 1;
    animation: fadeIn 2s ease;
}

.stylish-font {
    font-family: 'Lora', serif; /* Fonte Lora para um estilo elegante e legível */
    font-size: 3.2em; /* Ajustado para uma leitura mais equilibrada */
    color: #6a1b9a;
    margin-bottom: 20px;
    text-transform: none; /* Sem transformação em maiúsculas */
    letter-spacing: 0.5px; /* Ajustei o espaçamento entre as letras */
    transition: color 0.4s ease, transform 0.4s ease;
}

.stylish-font:hover {
    color: #ab47bc;
    transform: scale(1.1); /* Efeito de aumento no hover */
}

.content p {
    font-size: 1em;
    margin-bottom: 1.5em;
    line-height: 1.6;
    animation: fadeIn 2s ease;
}

.button-group {
    margin: 30px 0;
}

button {
    background: linear-gradient(45deg, #9c27b0, #ab47bc);
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    margin: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease-in-out, transform 0.3s ease;
}

button:hover {
    background: linear-gradient(45deg, #ab47bc, #9c27b0);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

button:active {
    transform: scale(0.98);
}

.social-media {
    margin-top: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-media img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-media img:hover {
    transform: scale(1.1);
}

.social-media a {
    text-decoration: none; /* Removendo o sublinhado do link */
    color: inherit; /* Herda a cor do texto */
}

.social-media p {
    font-size: 1.1em;
    margin-top: 0.5em;
    color: inherit;
}

.footer-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.footer-text {
    font-size: 0.85em;
    color: #616161;
    text-align: center;
    margin: 10px 0;
    font-family: 'Roboto', sans-serif;
}

.footer-text a {
    color: #616161;
    text-decoration: none;
    font-weight: bold;
}

.footer-text a:hover {
    text-decoration: underline;
    color: #9c27b0;
}

/* Transições e animações */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media query para dispositivos móveis */
@media (max-width: 600px) {
    button {
        padding: 12px 25px;
        font-size: 15px;
    }

    .footer-image {
        max-width: 160px;
    }
}
