body {
    background-color: #fad3d8;
    margin: 0;
    overflow-x: hidden; /* Permite rolagem vertical, mas evita rolagem horizontal */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
}

.wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw; /* Ajuste de largura para responsividade */
    max-width: 33.33vw; /* Valor máximo para telas maiores */
}

path {
    stroke-dasharray: 500;
    opacity: 1;
    animation: animate 3s cubic-bezier(.16,.74,.8,.47);
}

polygon {
    stroke-dasharray: 500;
    opacity: 1;
    animation: animate 3s cubic-bezier(.16,.74,.8,.47);
}

@media (max-width: 600px) {
    .wrapper {
        width: 80vw; /* Ajuste para telas pequenas */
    }
}

@keyframes animate {
    0% {
        opacity: 0;
        fill: none;
        stroke-dashoffset: 500;
    }

    30% {
        opacity: 1;
        fill: none;
        stroke-dashoffset: 500;
    }

    90% {
        fill: rgba(3, 159, 155, 0);
    }

    100% {
        opacity: 1;
        fill: rgba(3, 159, 155, 1);
        stroke-dashoffset: 0;
    }
}
