/* Oculta o badge do reCAPTCHA */
.g-recaptcha {
    margin-bottom: 20px;
	margin-top: 20px;
}

.page-body {
    min-height: 50vh;
}

/* Variáveis de Cores */
:root {
    --texto: #101F36;
    --preto: #000000;
    --cinza: #C5D0D4;
    --cinza-claro: #E5EDF0;
    --cinza-escuro: #373737;
    --branco: #FFFFFF;
    --whatsapp: #04B400;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Corpo */
body {
    background: var(--branco);
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
    font-size: 16px;
    letter-spacing: .04rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: always;
}

/* Títulos */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: var(--texto);
}

/* Títulos com exceções */
h2:not(#banner-home h2) {
    font-weight: 700;
    text-transform: uppercase;
}

/* Responsividade dos títulos */
@media (max-width: 768px) {
    h2:not(#banner-home h2) {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    h2:not(#banner-home h2) {
        font-size: 1.5rem;
    }

    .button img.icon, button img.icon {
        width: 20px;
        margin: 0 5px 0 0;
    }
}

/* Textos */
h4, h5, h6, p, ul, ol, li, span {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

p {
    color: var(--texto);
    line-height: 1.6;
    letter-spacing: 0.02em;
    font-size: 16px;
}

@media (max-width: 768px) {
    p {
        font-size: 14px;
    }
}

/* Links */
a {
    font-family: 'Open Sans', sans-serif;
    text-decoration: none !important;
    transition: .3s;
    font-weight: 500;
    color: var(--cinza);
}

/* Botões */
.button, button {
    padding: 15px 25px;
    border-radius: 50px;
    transition: background 0.5s ease, color 0.5s ease;
    border: none;
    background: var(--whatsapp);
    color: var(--branco);
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    display: inline-block;
    text-align: center;
}

.button:hover:not(:btn-close), button:hover:not(:btn-close) {
    background: #2ad427;
}

.button img.icon, button img.icon {
    width: 20px;
    margin: -2px 3px 0 0;
}

/* Imagens */
img.picture {
    max-width: 500px;
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    img.picture {
        max-height: 300px;
    }
}

img.icon {
    max-width: 30px;
}

/* Espaçamento geral */
main > section:not(#banner-home, #page-header) {
    margin-top: 7vh;
    margin-bottom: 7vh;
    padding-top: 7vh;
    padding-bottom: 7vh;
}

.container-text {
    margin-bottom: 40px;
}

.container-text p {
    margin-bottom: 1rem;
}

.infos .contact-link:not(.header-secundario .contact-link) {
    display: block;
    margin-bottom: 1rem;
}

.infos .contact-link img {
    margin-right: 5px;
	max-height: 20px;
}

.infos .contact-link a {
    color: #8C8C8C;
}

.infos .contact-link strong {
    color: var(--cinza-escuro);
}

/* Caixa de produto */

.produto {
    background-color: #C5D0D4;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 10px;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.produto-content {
    display: flex;
    align-items: center;
}

.produto-image {
    flex-shrink: 0;
    margin-right: 20px;
}

.produto-image, .produto-image img {
    width: 230px;
    height: 230px;
    object-fit: cover;
    border-radius: 10px;
}

.produto-details {
    flex-grow: 1;
}

.produto .produto-details h2, .produto .produto-details p {
    color: var(--texto);
}

.produto .produto-content .produto-details h2 {
    font-size: 1.3rem;
    padding-bottom: 0px !important;
    margin-bottom: 1rem !important;
}

.button.ver-produto {
    background-color: var(--branco);
    color: var(--texto);
    padding: 10px 40px;
    text-align: center;
    text-decoration: none;
    border-radius: 20px;
    display: inline-block;
    margin-top: 10px;
}

.produto .produto-content a.button {
    margin-bottom: 0;
}

.button.ver-produto:hover {
    background-color: #dddddd;
}

@media (max-width: 768px) {
    .produto .produto-content .produto-details h2 {
        font-size: 1.1rem;
    }

    .produto-content {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    .produto-image, .produto-image img, .produto-content .produto-link {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}