@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('header.css');
@import url('home.css');
@import url('menu.css');
@import url('testimonials.css');
@import url('footer.css');

:root {
    --color-primary-1: #fff9ea;
    --color-primary-2: #f28705;
    --color-primary-3: #f8d477;
    --color-primary-4: #f28705;
    --color-primary-5: #ffcb45;
    --color-primary-6: #f22222;
    --color-primary-7: #54abcede;

    --color-neutral-0: #ffffff;
    --color-neutral-1: #1d1d1d;
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

buttons {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-primary-1);
}

section {
    padding: 28px 8%;
}

/* Estilos do botão .btn-default */
.btn-default {
    border: none;
    display: flex;
    align-items: center;
    font-size: 1rem;
    justify-content: center;
    background-color: var(--color-primary-5);
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 500;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color .3s ease;
}

.btn-default #sobre {
    padding: 10px 24px;
}

.btn-default a {
    text-decoration: none;
    color: var(--color-neutral-0);
}

.btn-default:hover {
    background-color: var(--color-primary-3);
}

/* Estilos dos botões de mídia social */
.social-media-buttons {
    display: flex;
    gap: 18px;
}

.social-media-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 45px;
    height: 40px;
    background-color: var(--color-neutral-0);
    font-size: 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--color-neutral-1);
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow .3s ease;
}

.social-media-buttons a:hover {
    box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.1);
}

/* Estilos dos títulos e subtítulos */
.section-title {
    color: var(--color-primary-6);
    font-size: 1.563rem;
}

.section-subtitle {
    font-size: 2.1875rem;
}

/* Estilos do botão de contato */
#contato {
    background-color: var(--color-primary-5);
    color: var(--color-neutral-0);
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.buttons {
    display: inline-flex;
    height: 30%;
    justify-content: space-around;
    gap: 15px;
}

.buttons #JM {
    color: #fff;
}

#contato a:hover {
    background-color: #3797d600;
}

#contato a {
    text-decoration: none;
    color: var(--color-neutral-0);
}

#JM button {
    color: #fff;
}

#JM {
    background-color: var(--color-primary-7);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

#JM a {
    text-decoration: none;
    color: #fff;
}

#JM a:hover {
    background-color: #3797d600;
}

/* Media Queries para Responsividade */

/* Tablets */
@media (max-width: 768px) {
    section {
        padding: 20px 5%;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 1.8rem;
    }

    .btn-default {
        padding: 8px 7px;
        font-size: 7px;
        display: flex; /* Garante que o botão seja exibido */
    }

    .social-media-buttons {
        gap: 12px;
    }

    .social-media-buttons a {
        width: 40px;
        height: 35px;
        font-size: 1.1rem;
    }

    .buttons {
        flex-direction: column;
        gap: 10px;

    }

    #contato,
    #JM, #sobre {
        font-size: 5px;
        padding: 7px 7px;
    }
}

/* Celulares */
@media (max-width: 480px) {
    section {
        padding: 15px 3%;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .section-subtitle {
        font-size: 1.5rem;
    }

    .btn-default {
        padding: 7px 20px;
        font-size: 5px;
        height: 20%;
        display: flex; /* Garante que o botão seja exibido */
    }

    .social-media-buttons {
        gap: 8px;
    }

    .social-media-buttons a {
        width: 35px;
        height: 30px;
        font-size: 1rem;
    }

    .buttons {
        flex-direction: row;
        gap: 8px;
        width: 75%;
    }

    #contato,
    #JM, #sobre {
        font-size: 6px;
        padding: 4px 14px;
    }
}

/* Telas muito pequenas (ex: smartphones pequenos) */
@media (max-width: 360px) {
    .section-title {
        font-size: 1rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
    }

    .btn-default {
        padding: 7px 7px;
        font-size: 7px;
        display: flex; /* Garante que o botão seja exibido */
    }

    .social-media-buttons a {
        width: 30px;
        height: 25px;
        font-size: 0.9rem;
    }

    .buttons {
        display: flex;
        flex-direction: row;
        gap: 5px;
        width: 20%;
    }

    #contato,
    #JM, #sobre {
        font-size: 7px;
        padding: 9px 9px;
    }
}