1,100..900&display=swap');

html {
    scroll-behavior: smooth;
}

.ti-widget {
    scroll-margin-top: 1px;
    touch-action: manipulation;
}

:root {
    --azul: #0766AC;
    --preto: #373435;
    --branco: #D9DADB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
    letter-spacing: .04rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: always;
    background-color: #E7E7E7;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
a,
span {
    margin: 0;
    padding: 0;
    transition: color .3s;
    font-family: Arial, Helvetica, sans-serif;
}

.page-body p {
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    color: var(--preto);
}

a {
    text-decoration: none;
    transition: color .3s;
}

a:hover {
    color: var(--azul);
}

.icon {
    max-width: 100px;
}

.g-recaptcha {
    margin-top: 20px !important;
}

img.foto {
    object-fit: cover;
    border-radius: 10px;
}

@media (min-width: 1000px) {
    p, ul, ol, li, a, span {
        font-size: 14px;
    }
    h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 22px;
    }
}

/* Estilos para telas menores que 999px */
@media (max-width: 1200px) {
    p, ul, ol, li, a, span {
        font-size: 12px;
    }
    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 24px;
    }
    h3 {
        font-size: 20px;
    }
}

.obs {
    opacity: 0.5;
    margin-top: 5px;
    font-size: 10px;
}

/*------------------------------------------------------------------------------------------------------------------ */
/* HEADER RESPONSIVO */
/*------------------------------------------------------------------------------------------------------------------*/

header {
    color: var(--branco);
    background: #000;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    height: 70px;
    width: 100%;
    padding: 10px 8vw;
    display: flex;
    text-align: center;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    position: fixed;
    top: 0;
    opacity: 0.9;
}

header .site-branding img {
    max-height: 30px;
}

header .infos .button {
    background-color: #2b97e7;
}

header .infos .button:hover {
    opacity: 0.9;
}

header .infos .button img {
    margin: 0 0 2px 0;
}

nav #primary-menu ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 600;
}

header li {
    list-style: none;
}

@media (max-width:1200px) {
    nav #primary-menu ul {
        flex-direction: column;
    }
    
    header .infos {
        display: none;
    }
}

/*------------------------------------------------------------------------------------------------------------------ */
/* MENU RESPONSIVO - DESKTOP (MIN 1200px) */
/*------------------------------------------------------------------------------------------------------------------*/
@media (min-width: 1200px) {
    header .infos {
        display: flex;
        gap: 10px;
    }
    
    header li > a {
        color: var(--branco);
    }

    header li > a:hover {
        color: var(--azul);
    }

    nav .mobile-menu {
        display: none;
        transition: all 0.3s ease;
    }

    #primary-menu {
        display: flex;
    }

    .mobile-menu {
        display: none;
    }
}

/*------------------------------------------------------------------------------------------------------------------ */
/* MENU RESPONSIVO - MOBILE (MAX 1200px) */
/*------------------------------------------------------------------------------------------------------------------*/
@media (max-width: 1200px) {
    header {
        box-shadow: 1px 1px 5px #131313;
        opacity: 1;
    }

    /* MENU HAMBURGUER */
    .mobile-menu .lines {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .mobile-menu .lines div {
        width: 30px;
        height: 4px;
        background-color: var(--azul);
        transition: all 0.3s ease;
    }

    .mobile-menu .lines.active .line1 {
        transform: rotate(-45deg) translate(-8px, 8px);
    }

    .mobile-menu .lines.active .line2 {
        opacity: 0;
    }

    .mobile-menu .lines.active .line3 {
        transform: rotate(45deg) translate(-4px, -5px);
    }

    .menu-item .sub-menu {
        display: none;
    }

    .menu-item.active .sub-menu {
        display: block;
    }

    nav .mobile-menu {
        display: block;
        cursor: pointer;
        width: auto;
        min-width: 44px;
        min-height: 44px;
        padding: 7px;
        border: 0;
        border-radius: 6px;
        background: transparent;
        color: inherit;
    }

    nav .mobile-menu:hover,
    nav .mobile-menu:focus-visible {
        background: rgba(43, 151, 231, 0.12);
        outline: 2px solid transparent;
    }

    nav #primary-menu  {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background-color: var(--preto);
        box-shadow: 1px 1px 5px #131313;
        animation: fadeIn 0.5s ease-in-out;
        width: 100%;
        gap: 30px;
        padding: 50px 0;
        text-align: center;
        border-radius: 0 0 5px 5px;
    }

    nav #primary-menu a {
        color: var(--branco);
        text-transform: initial;
        text-align: left;
        font-weight: 400;
        text-decoration: none;
    }

    nav #primary-menu a:hover {
        font-weight: 600;
    }

    nav #primary-menu.active {
        display: flex;
        align-items: flex-start;
        padding: 50px;
        text-align: left;
        border-top: 1px solid var(--azul);
    }

    .mobile-menu {
        display: block;
    }

    .button, button {
        width: 100%;
    }

    nav .mobile-menu {
        width: auto;
    }

    #contact-form .button {
        width: 100%;
    }
}

/* MENU RESPONSIVO - MOBILE (MAX 500px) */
@media (max-width: 500px) {
    nav .nav-list {
        width: 90vw;
        left: 0;
    }
}

/*------------------------------------------------------------------------------------------------------------------ */
/* BUTTONS */
/*------------------------------------------------------------------------------------------------------------------*/

.button, button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    transition: 0.5s;
    border: none;

    background: var(--azul);
    color: #fff;

    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.button:hover , button:hover {
    background: #005b9a;
    color: #fff;
}

.button-simple {
    transition: 0.3s;
    border: none;
    font-weight: bold;
}

.button-simple:hover {
    color: var(--azul);
}

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

/*------------------------------------------------------------------------------------------------------------------*/
/* CONTEÚDO INTERNO */
/*------------------------------------------------------------------------------------------------------------------*/

h2 {
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

/*------------------------------------------------------------------------------------------------------------------*/
/* ACCORDION */
/*------------------------------------------------------------------------------------------------------------------*/

.accordion {
    padding-top: 30px;
    border: none;
    --bs-accordion-border-color: none;
    max-width: 800px;
    margin: auto;
}

.accordion-item {
    margin-bottom: 10px;
}

.accordion-button {
    background-color: var(--azul) !important;
    color: #fff !important;
    font-weight: bold !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--azul) !important;
    color: #fff !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-body {
    color: #fff !important;
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--azul);
    border-top: 1px solid var(--branco);
    text-align: left;
}

.accordion-body strong {
    color: #fff !important;
}

.accordion-body a {
    font-weight: 700 !important;
    color: #fff;
}

.accordion-body a:hover {
    color: #131313 !important;
}

.accordion h2.accordion-header {
    margin-bottom: 0;
}

/*------------------------------------------------------------------------------------------------------------------ */
/* FOOTER - RODAPÉ */
/*------------------------------------------------------------------------------------------------------------------*/

footer {
    width: 100%;
    background: linear-gradient(183.21deg, #373435 -20.29%, #252424 97.27%);
    color: var(--branco);
    padding-top: 80px;
    margin-top: 100px;
}

footer .content-footer {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

footer a {
    text-decoration: none;
    color: #62b8ff;
}

a.custom-logo-link img {
    width: 200px;
    height: auto;
}

footer .copyright {
    flex-direction: column;
}

footer .copyright span, .copyright a {
    margin-top: 15px;
}

footer a.dev {
    font-size: 12px;
    color: var(--branco);
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    border-top: 2px solid var(--preto);
    padding: 20px;
    opacity: 0.8;
}

footer .dev img {
    width: 80px;
}

footer .infos .contact-link .endereco {
    text-align: right;
}

footer .site-branding img {
    max-width: 200px;
}

footer .copyright, footer .infos {
    flex: 1;
}

span.rotulos {
    font-size: 1rem;
    font-weight: 700;
}

@media (max-width: 1200px) {
    a.custom-logo-link img {
        width: 150px;
        height: auto;
    }
}

/*------------------------------------------------------------------------------------------------------------------ */
/* CONTATO links infos */
/*------------------------------------------------------------------------------------------------------------------*/

.infos .contact-link {
    display: flex;
    gap: 10px;
    margin: 10px 0;
    cursor: pointer;
}

.infos .contact-link span {
    display: block;
    text-transform: uppercase;
    font-size: 12px;
}

.infos .contact-link a {
    font-weight: 700;
    color: var(--branco);
    text-decoration: none;
}

.infos .contact-link a:hover {
    color: #fff;
}

.infos .contact-link .icon {
    width: 20px;
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
}

.floating-whatsapp img {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 62px;
        height: 62px;
    }
}
