@font-face {
    font-family: 'fonte-Certillion';
    src: url('../fonts/AmpleSoft.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'fonte-Certillion';
    src: url('../fonts/AmpleSoft-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'fonte-Certillion';
    src: url('../fonts/AmpleSoft-ExtraLight.woff2') format('woff2');
    font-weight: 200; /* Peso extra leve */
    font-style: normal;
}

@font-face {
    font-family: 'fonte-Certillion';
    src: url('../fonts/AmpleSoft-Light.woff2') format('woff2');
    font-weight: 300; /* Peso leve */
    font-style: normal;
}

@font-face {
    font-family: 'fonte-Certillion';
    src: url('../fonts/AmpleSoft-Medium.woff2') format('woff2');
    font-weight: 500; /* Peso médio */
    font-style: normal;
}

@font-face {
    font-family: 'fonte-Certillion';
    src: url('../fonts/AmpleSoft-Thin.woff2') format('woff2');
    font-weight: 100; /* Peso fino */
    font-style: normal;
}



body {
    font-family: 'fonte-Certillion', sans-serif;
    background-image: url('../image/fundo\ certillion.jpeg');
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
    padding: 20px; /* Espaçamento para telas pequenas */
}

.container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.logo img {
    width: 200px;
    max-width: 100%; /* Evita que exceda a largura da tela */
    padding: 30px;
    margin-top: -50px;
}

h1 {
    font-size: 1.5rem; /* Tamanho relativo */
    margin-bottom: 20px;
    font-weight: normal;
}

h2 {
    font-size: 1.3rem; /* Tamanho relativo */
    margin-bottom: 20px;
    font-weight: normal;
}

.buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Permite reorganizar os botões em telas menores */
    gap: 10px;
    margin-bottom: 20px;
}

.btn {
    font-family: 'fonte-Certillion', sans-serif;
    background-color: #B1B7C5;
    color: #070707;
    border: none;
    padding: 10px 40px;
    border-radius: 15px;
    margin: 10px 10px; /* Ajuste para telas menores */
    cursor: pointer;
}

.btn:hover {
    background-color: #555;
}

@media (max-width: 1080px) {

    H1{
        font-size: 1.4rem;
    }
    h2 {
        font-size: 1.3rem;
    }
    .btn {
        width: 30%;
        padding: 1.0%; /* 10px para 0.52vw */
        font-size: 1.0rem;
    }
}

/* Media Queries para telas menores */
@media (max-width: 768px) {
    h1 {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    .btn {
        width: 30%;
        padding: 1.5%; /* 10px para 0.52vw */
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    body {
        flex-direction: column;
        padding: 0.52vw; /* 10px para 0.52vw */
    }

    h1, h2 {
        font-size: 1.2rem;
    }

    .btn {
        width: 40%;
        padding: 1.5%; /* 10px para 0.52vw */
        font-size: 0.8rem;
    }
}

