@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: #0D1320;
}

body {
    background-color: #0D1320;
    color: #f8fafc;
    line-height: 1.6;
}

section {
    padding: 12px 8%;
}

.btn-default {
    border: none;
    display: flex;
    margin-top: -4px;
    align-items: center;
    justify-content: center;
    background-color: rgb(0, 0, 0);
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    box-shadow: 0px 0px 10px 2px rgba(48, 29, 29, 0.1);
    cursor: pointer;
    color: aliceblue;
    transition: all 0.3s ease;
}

.btn-default:hover {
    background-color: #111214;
    transform: translateY(-2px);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-default:active {
    transform: translateY(0);
}

.btn-default:focus {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

.social-media-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #25D366;
    border-radius: 12px;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-media-button:hover {
    transform: scale(1.15);
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.3);
}

.frase-animada-container {
    width: 100%;
    overflow: hidden;
    background-color: #0D1320;
    padding: 14px 0;
    position: relative;
    border-top: 1px solid rgba(220, 38, 38, 0.3);
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
}

.frase-animada {
    display: inline-block;
    white-space: nowrap;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(255, 38, 0, 0.6);
    animation: frase-move 10s linear infinite; /* Velocidade mais lenta (10s) */
    padding-left: 100%;
    will-change: transform;
}

@keyframes frase-move {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Versão mobile com velocidade um pouco mais lenta (8s) */
@media screen and (max-width: 768px) {
    .frase-animada {
        font-size: 1.1rem;
        animation-duration: 8s; /* Alterado de 6s para 8s */
        padding-left: 100%;
    }
    
    .frase-animada-container {
        padding: 12px 0;
    }
}