body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #FEBE98;
    background-image: url("../../img/linhas-background-studio-titta.png");
    background-size: 100%;
    background-repeat: no-repeat;
    font-family: 'Inter', sans-serif; /* Mantendo a fonte Inter para outros elementos */
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-text {
    font-size: 60px;
    font-family: 'Flatline Regular', sans-serif; /* Usando a fonte Flatline Regular */
    color: #ffffff;
    position: absolute;
    top: 295px;
    left: 190px;
}

.secondary-text {
    max-width: 830px;
    font-size: 40px;
    font-weight: 200;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    color: #3d3d3d;
    position: absolute;
    top: 395px;
    left: 190px;
}

.instagram-btn {
    position: absolute;
    top: 570px;
    left: 195px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 50px;
    padding: 7px 27px;
    text-decoration: none;
    color: #866152;
    box-shadow: 10px 10px 34px rgba(0, 0, 0, 0.6);
    transition: background-color 0.3s, transform 0.3s;
    font-size: 21px;
    font-weight: 700;
    font-family: 'Inter', sans-serif; /* Mantendo a fonte Inter */
}

.instagram-btn:hover {
    background-color: #fbcdb2;
    transform: scale(0.95);
}

.instagram-btn span {
    margin-right: 10px;
    font-family: 'Inter', sans-serif;
    color: #866152;
}

.instagram-btn .fab {
     /* Ajustando o tamanho do ícone */
    color: #ffffff;
}

.circle {
    width: 54px; /* Ajustando o tamanho do círculo */
    height: 54px;
    background-color: #B6966E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0px;
    margin-right: -18px !important;
}

.circle .fab {
    font-size: 35px; /* Ajustando o tamanho do ícone dentro do círculo */
}

.logo-container {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.logo-container img {
    width: 212px;
}


/* Estilo para dispositivos móveis */
@media screen and (max-width: 768px) {
    body {
        margin: 0;
        padding: 0;
        overflow: hidden;
        background-color: #FEBE98;
        background-image: url("../../img/linhas-background-studio-titta.png");
        background-size: 775px;
        background-repeat: unset;
        font-family: 'Inter', sans-serif;
    }

    .container {
        position: relative;
        width: 100%;
        height: 100vh; /* Alterado para ocupar a altura total da tela */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .main-text {
        font-size: 30px; /* Reduzindo o tamanho da fonte */
        position: absolute;
        top: 100px; /* Ajustando a posição mais para cima */
        left: 30px;
        right: 30px;
    }

    .secondary-text {
        max-width: 100%;
        font-size: 21px; /* Reduzindo o tamanho da fonte */
        position: absolute;
        top: 175px; /* Posicionando abaixo do main-text */
        left: 30px;
        text-align: left; /* Centralizando o texto */
    }

    .instagram-btn {
        position: relative; /* Alterado para permitir centralização */
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #ffffff;
        border-radius: 50px;
        padding: 4px 23px; /* Aumentando o padding para melhorar a usabilidade */
        text-decoration: none;
        color: #866152;
        box-shadow: 10px 10px 34px rgba(0, 0, 0, 0.6);
        transition: background-color 0.3s, transform 0.3s;
        font-size: 21px;
        font-weight: 700;
        font-family: 'Inter', sans-serif;
        margin: 0 auto; /* Espaço entre o secondary-text e o botão */
        top: 0%;
        left: 0%;
    }

    .circle {
        width: 54px;
        height: 54px;
        background-color: #B6966E;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .circle .fab {
        font-size: 35px;
        color: #ffffff;
    }

    .logo-container {
        position: absolute;
        bottom: 20px;
        right: 20px;
    }

    .logo-container img {
        width: 212px;
    }
}