* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    list-style: none;
}

html, body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden; /* Impede rolagem lateral */
}

:root {
    --vermelho: #9d1c15;
    --branco: #faebc3;
    --amarelo: #f2d583;
    --branco2: #faebd7;
    --marrom: #5e3b3b;
}

body {
    background: var(--vermelho);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 400px;
    
}

/* Evita que elementos se expandam além da largura da tela */
.frase-container, .cronometro-container {
    background: var(--branco2);
    padding: 30px;
    border-radius: 10px;
    max-width: 90%; /* Garante que não ultrapasse a tela */
    text-align: center;
    overflow-wrap: break-word; /* Quebra de texto */
}

.frase-container h1 {
    font-size: 1.3rem;
    color: var(--marrom);
    font-weight: bold;
    padding: 20px 0px;
}


.cronometro {
    font-size: 1.6rem;
    color: var(--marrom);
    font-weight: bold;
}

p {
    font-weight: 600;
}

h2 {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--branco2);
}

.cronometro-container img {
    margin-top: 30px;
}

.final-container p {
    text-align: center;
    color: var(--branco2);
    padding: 0px 10px;
}

.final-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.euteamo {
   font-weight: bold;
   font-size: 24px;
   margin: 20px 0px;
}

.inicio {
    margin: 300px 0px 150px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.inicio p {
    color: var(--branco2);
    text-align: center;
    margin-bottom: 30px;
}
.inicio img {
    max-width: 300px;
}
.volte {
    font-size: 12px;
}



.heart {
    position: absolute;
    color: red;
    font-size: 24px;
    animation: floatUp 4s linear infinite;
}
@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-200vh) scale(0.5);
        opacity: 0;
    }
}