#s-modelopage {
    padding: 96px 48px;
    color: #bfb9b9;
    margin-top: 50px;
    min-height: 100%;
    background-color: #09090b;
}
.spacing {
    margin-bottom: 20px; /* ou margin-top: 20px; para o <p> */
}

p {
    padding-top: 10px; /* Adiciona espaço acima de cada parágrafo */
    margin-left: 2ch;
}
.grid-container {
    
    justify-content: center; /* Alinha os itens horizontalmente ao centro */
    align-items: center; /* Alinha os itens verticalmente ao centro */
    gap: 20px; /* Espaçamento entre os itens do grid, ajuste conforme necessário */
    background-color: rgb(255, 255, 255);
    color: #040405;
}
@media screen and (max-width: 992px) {
    #s-modelopage {
        padding: 48px 24px;
    }
}

#s-modelopage .grid-layout #modelopage {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#s-modelopage .grid-layout #modelopage-photo {
    width: 50%;
    padding-right: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: 1s all ease;
}

#s-modelopage .grid-layout #modelopage-photo #photo-lobo {
    width: 400px;
}

#s-modelopage .grid-layout #modelopage-photo:hover {
    transform: scale(1.1);
}

#s-modelopage .grid-layout #modelopage-photo div {
    display: flex;
    justify-content: center;
    align-items: center;
}

#s-modelopage .grid-layout #modelopage-photo div img {
    width: 48px;
}

#s-modelopage .grid-layout #modelopage-photo .modelopage-figure {
    position: absolute;
    background-color: #040405;
    border-radius: 4px;
    width: 72px;
    height: 72px;
}

#s-modelopage .grid-layout #modelopage-photo .figure-one {
    top: 40px;
    right: 430px;
}

#s-modelopage .grid-layout #modelopage-photo .figure-two {
    top: 100px;
    right: 150px;
}

#s-modelopage .grid-layout #modelopage-photo .figure-three {
    top: 250px;
    right: 450px;
}

#s-modelopage .grid-layout #modelopage-photo .icon-one {
    animation: icon-move 3s ease 2.9s infinite alternate;
}

#s-modelopage .grid-layout #modelopage-photo .icon-two {
    animation: icon-move 3s ease 1.9s infinite alternate;
}

#s-modelopage .grid-layout #modelopage-photo .icon-three {
    animation: icon-move 3s ease 0.6s infinite alternate;
}

@keyframes icon-move {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(10px, -40px, 0);
    }
}

#s-modelopage .grid-layout #modelopage-photo img {
    width: 100%;
    max-width: 400px;
}

@media screen and (max-width: 1200px) {
    #s-modelopage .grid-layout #modelopage-photo {
        display: none;
    }

    #s-modelopage .grid-layout #modelopage-text {
        width: 100%;
        display: flex;
        flex-direction: column;
        padding-left: 0;
    }
}

#s-modelopage .grid-layout #modelopage-text {
    width: 50%;
}

#s-modelopage .grid-layout #modelopage-text h2 {
    padding-bottom: 24px;
    color: #fff;
    font-size: 4rem;
    font-weight: 500;
}

#s-modelopage .grid-layout #modelopage-text h2 span {
    color: #ff8009de;
}

#s-modelopage .grid-layout #modelopage-text p {
    line-height: 3.2rem;
    color: #d8d8d8;
    font-size: 2rem;
    line-height: 160%; /* Corrigido de 'font-line-height' para 'line-height' */
}