/* Banner */
body.single-calculadoras header.topo {
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
}

body.single-calculadoras .banner-calculadoras {
    height: auto;
    background: black;
    padding-top: 150px;
    padding-bottom: 48px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-bottom: 40px;
}

body.single-calculadoras .banner-calculadoras::before {
    content: "";
    opacity: 0.64;
    background: #000;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 9;
}

body.single-calculadoras .banner-calculadoras .base {
    width: 100%;
    display: flex;
    margin: 0;
    z-index: 99;
}

body.single-calculadoras .banner-calculadoras .banner-calculadoras__background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

body.single-calculadoras .banner-calculadoras .banner-calculadoras__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.single-calculadoras .banner-calculadoras .banner-calculadoras__title {
    margin: 0;
    max-width: 750px;
}

body.single-calculadoras .banner-calculadoras .banner-calculadoras__title span {
    color: #fff;
    font-family: "Futura Medium" !important;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; /* 166.667% */
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

body.single-calculadoras .banner-calculadoras .banner-calculadoras__title h1 {
    color: #EE8744;
    font-family: "Futura Medium" !important;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    text-align: left;
}

body.single-calculadoras .banner-calculadoras .banner-calculadoras__title img {
    max-width: 24px;
    height: auto;
}

body.single-calculadoras .banner-calculadoras .banner-calculadoras__description {
    max-width: 500px;
    color: #FFF;
    font-family: "Futura Medium" !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
}

@media screen and (max-width: 765px) {
    body.single-calculadoras .banner-calculadoras .banner-calculadoras__title span {
        margin-bottom: 12px;
    }

    body.single-calculadoras .banner-calculadoras .banner-calculadoras__description {
        font-size: 14px;
    }

    body.single-calculadoras .banner-calculadoras  .banner-calculadoras__background img {
        height: 100%;
    }
}

#calculadora.container .entry-text {
    margin-bottom: 32px;
    color: #000;
    font-family: Open Sans;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
}

#calculadora.container .options-grid {
    display: grid;
    gap: 30px;
}

@media screen and (max-width: 765px) {
    #calculadora.container .entry-text {
        font-size: 18px;
        line-height: 27px;
    }

    #calculadora.container .options-grid {
        gap: 24px;
    }
}

/* Espécies */
.radio-label {
    opacity: 0.5;
    display: flex;
    align-items: end;
    border-radius: 16px;
    padding: 32px 24px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 240px;
    margin-bottom: 0;
}

.radio-label.active {
    opacity: 1;
    border: 2px solid #EE8744;
    font-weight: 700;
}

.radio-label__container {
    display: flex;
    align-items: center;
}

.radio-label__container input {
    width: 20px;
    height: 20px;
}

.radio-label__container__name {
    color: #000;
    font-family: 'Futura Medium';
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
}

.block-form {
    position: relative;
    width: 100%;
    max-width: 810px;
    margin: 0 auto;
    margin-bottom: 64px;
}

.block-form .content {
    background: #F1F5F8;
    padding: 28px 24px;
    border-radius: 16px;
}

.block-form {
    position: relative;
    padding: 32px 24px;
    width: 100%;
    max-width: 810px;
    border-radius: 16px;
    background: #F1F5F8;
    margin: 0 auto;
    margin-bottom: 24px;
}

.block-form::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #F1F5F8;
    border-radius: 16px;
    opacity: 0.5;
    z-index: 10;
}

.block-form.active::before {
    display: none;
}

.block-form select {
    background-color: #fff;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #D6DADD;
    width: 100%;
}

/* Botao submit e reset */
.button-calculadora-submit {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    position: relative;
}

.button-calculadora-submit button {
    padding: 16px 32px;
    border: 0;
    color: #FFF;
    font-family: Open Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    border-radius: 8px;
    background: #EE8744;
    min-width: 200px;
}

.reset {
    display: none;
    outline: 0;
    border: 0;
    background: none;
    color: #032D53;
    font-family: Open Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.block-form.active .reset {
    display: block;
}

@media screen and (max-width: 765px) {
    .button-calculadora-submit {
        flex-direction: column;
        gap: 32px;
    }

    .reset {
        position: relative;
        transform: translate(0)
    }
}

/* Botao compartilhar */
.container-envio-email {
    display: none;
    align-items: center;
}

.container-envio-email.visible {
    display: flex;
}

.container-envio-email form  {
    display: flex;
    gap: 8px;
}

.container-envio-email input {
    padding: 7px 10px;
    width: 100%;
    border-radius: 8px !important;
    border: 1px solid #D6DADD !important;
    background: #FFF;
    font-size: 14px !important;
}

.container-envio-email button {
    padding: 6px 20px;
    border: 0;
    color: #FFF;
    font-family: Open Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    border-radius: 8px;
    background: #EE8744;
}

.container-envio-email .retorno-envio > div {
    font-size: 14px;
    position: absolute;
    bottom: -36px;
    margin: 0;
    padding: 10px 16px;
    width: max-content;
    left: 150px;
}

@media screen and (max-width: 765px) {
    .container-envio-email  > div {
        flex-direction: column;
        width: auto;
        margin-top: 16px;
    }
}

/* Tooltip */
.block-form__tooltip {
    position: relative;
    display: flex;
}

.block-form__tooltip_content {
    display: none;
    position: absolute;
    left: 38px;
    top: calc(-50% + 24px);
    transform: translateY(-50%);
    padding: 12px 16px;
    background-color: #032D53;
    color: #fff;
    border-radius: 8px;
    flex-direction: column;
    width: max-content;
    max-width: 310px;
    z-index: 1;
}

.block-form__tooltip::after {
    opacity: 0;
    content: "";
    left: 30px;
    position: absolute;
    width: 21px;
    height: 21px;
    background-color: #032D53;
    border-radius: 4px;
    transform: rotate(45deg);
}

.block-form__tooltip_content p {
    font-weight: 700;
    font-size: 14px;
    margin: 0;
}

.block-form__tooltip_content span {
    color: #B6D0E8;
    font-weight: 400;
    font-size: 12px;
}

.block-form__tooltip_content.visible,
.block-form__tooltip.visible::after {
    display: flex;
    opacity: 1;
}

/* Duvidas de como utilizar */
.duvidas-calculadoras {
    width: 100%;
    max-width: 810px;
    margin: 0 auto;
    display: flex;
    gap: 8px;
    background-color: #FFF4ED;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    justify-content: center;
    padding: 20px 24px;
}

.duvidas-calculadoras a {
    color: #EE8744;
    transition: all ease-in-out 0.2s;
}

.duvidas-calculadoras a:hover {
    transform: translateX(3px);
}

@media screen and (max-width: 765px) {
    .duvidas-calculadoras {
        flex-direction: column;
        align-items: center;
    }
}

/* Resultados */
.result {
    margin-top: 32px;
    display: none;
    width: 100%;
    max-width: 810px;
    margin: 0 auto;
}

.result h2 {
    color: #000;
    text-align: center;
    font-family: 'Futura Medium';
    font-size: 48px;
    font-style: normal;
    line-height: 58px;
    margin-bottom: 32px;
}

.result h3 {
    color: #000;
    font-family: 'Futura Medium';
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
}

.result hr {
    border: 2px solid #F1F5F8;
    margin: 32px 0;
}

.result p,
.result ul li {
    color: #000;
    font-family: Open Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.result ul {
    margin: 0;
}

.result .tabela-especie #tablepress-1 {
    margin-top: 32px;
}

@media screen and (max-width: 765px) {
    .result ul {
        padding: 16px;
    }
}

/* Tabela */
.tablepress {
    color: #000;
    font-family: Open Sans;
    font-style: normal;
    line-height: 24px;
    background-color: #F1F5F8;
    border-radius: 16px;
    padding: 24px;
    border-left: 8px solid #032D53;
    display: block;
}

.tablepress .thead {
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.tablepress th {
    color: #032D53;
    font-weight: 700;
    letter-spacing: 0.2px;
    padding: 0;
    padding-block-end: 16px;
    background-color: transparent;
    border: none;
    font-size: 14px;
}

.tablepress tbody {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.tablepress tbody tr {
    background-color: #fff !important;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.tablepress tbody:has(tr:only-child) {
    display: block;
}

.tablepress tbody tr td {
    font-size: 12px !important;
    padding: 0;
    border-top: none !important;
    min-width: auto;
    background-color: #fff !important;
}

.tablepress tbody tr td:last-child {
    display: flex;
    gap: 2px;
}

.tablepress tbody tr td:last-child span,
.tablepress tbody tr td:last-child {
    font-weight: 400 !important;
}

.tablepress caption {
    display: none !important;
}

@media screen and (max-width: 765px) {
    .tablepress tbody {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Footer container */
.footer-container {
    margin: 32px 0 48px 0;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.footer-container__printShare {
    display: flex;
    gap: 14px;
}

.footer-container__printShare--print,
.footer-container__printShare--share {
    border: none;
    background: transparent;
    max-width: 56px;
    height: auto;
    padding: 0;
    transition: all ease-in-out 0.2s;
}

.footer-container__printShare--print:hover,
.footer-container__printShare--share:hover {
    scale: 1.1;
    opacity: 1 !important;
}

.footer-container__recalc {
    display: flex;
    gap: 8px;
    padding: 16px 40px;
    border: 0;
    color: #FFF;
    font-family: Open Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    border-radius: 8px;
    background: #EE8744;
}

.footer-container button:hover {
    opacity: 0.7;
}

@media screen and (max-width: 765px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
}

/* Disclaimer */
.disclaimer {
    background-color: #F1F5F8;
    padding: 53px 0;
}

.disclaimer .content {
    font-size: 12px;
    line-height: 20px;
}

.disclaimer .content p {
    margin-bottom: 5px;
}

@media screen and (max-width: 765px) {
    .disclaimer {
        padding: 32px;
        padding-block-end: 53px;
    }

    .disclaimer .container{
        padding: 0;
    }
}

/*Grid Fields*/
.grid-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media screen and (max-width: 765px) {
    .grid-fields {
        display: grid;
        grid-template-columns: 1fr;
    }

    .grid-fields input {
        max-width: 100% !important;
    }
}
