@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;800&display=swap');

/* Cores */
:root {
    --color-background: #dede00;
    --color-branco: #ffffff;
    --color-preto: #000000;
}

/* Regras Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--color-background);
    margin-left: 120px;
}

/* Layout Principal */
.quadro1 {
    width: 1400px;
    height: 900px;
}

/* Cabeçalho */
.topo {
    margin-top: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    color: var(--color-preto);
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
}

.links-bar {
    display: flex;
    gap: 38px;
    /* Espaçamento entre links */
}

.link {
    color: var(--color-preto);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

/* Corpo */
.corpo {
    display: flex;
    align-items: center;
    gap: 38px;
    /* Espaçamento entre descrição e imagem */
}

h1 {
    color: var(--color-preto);
    font-size: 40px;
    font-weight: 800;
    margin-top: 236px;
}

.descricao p {
    color: var(--color-preto);
    font-size: 24px;
    font-weight: 400;
    margin-top: 26px;
    max-width: 560px;
}

/* Botão Agendar */
.agendar {
    color: var(--color-branco);
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 259px;
    /* Largura do botão */
    height: 84px;
    /* Altura do botão */
    padding: 0;
    /* Remove o padding padrão para evitar distorções */
    border-radius: 30px;
    background: var(--color-preto);
    margin-top: 27px;
}

/* Responsividade */
@media screen and (max-width: 900px) {
    .quadro1 {
        width: 375px;
        height: 667px;
    }

    body {
        margin-left: 20px;
    }

    .topo {
        margin-top: 0;
        width: 375px;
    }

    .logo-text {
        margin-right: 30px;
    }

    .links-bar {
        margin-top: 28px;
        gap: 12px;
        /* Ajusta o espaçamento entre links em dispositivos menores */
    }

    .corpo {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    h1 {
        margin-top: 100px;
        font-size: 32px;
        /* Ajusta o tamanho da fonte em dispositivos menores */
    }

    .descricao p {
        max-width: 360px;
        margin-top: 28px;
    }

    .agendar {
        width: 100%;
        /* O botão ocupa a largura total disponível */
        max-width: 259px;
        /* Largura máxima para manter a estética */
        height: 60px;
        /* Ajusta a altura em dispositivos menores */
        font-size: 20px;
        /* Ajusta o tamanho da fonte */
        padding: 0;
        /* Remove o padding para consistência */
        margin-top: 20px;
        /* Ajusta a margem superior */
    }

    img {
        display: none;
    }
}