@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Raleway:wght@500;600;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3rem;

    /*========== Colors ==========*/
    /* Change favorite color to match images */
    /*Green dark 190 - Green 171 - Grren Blue 200*/

    /* HSL color mode */
    --first-color: #000;
    --first-color-second: rgb(238, 185, 43);
    --first-color-alt: rgb(183, 145, 40);
    --title-color: #444;
    --text-color: #1f2729;
    --cyan: rgb(216, 216, 220);


    --input-color: hsl(190, 24%, 97%);
    --body-color: hsl(190, 100%, 99%);
    --white-color: #FFF;
    --gray-850: #1f2729;
    --scroll-bar-color: hsl(190, 12%, 90%);
    --scroll-thumb-color: hsl(190, 12%, 75%);

    /*========== Font and typography ==========*/
    --body-font: 'Montserrat', sans-serif;
    --title-font: 'Raleway', sans-serif;

    --biggest-font-size: 3.2rem;
    --h1-font-size: 2.4rem;
    --h2-font-size: 2.2rem;
    --h3-font-size: 1.8rem;
    --h4-font-size: 1.4rem;
    --normal-font-size: 1rem;
    --small-font-size: .75rem;
    --smaller-font-size: .613rem;

    /*========== Font weight ==========*/
    --font-light: 100;
    --font-medium: 400;
    --font-semi-bold: 600;
    /*========== Margenes Bottom ==========*/
    --mb-0-25: .25rem;
    --mb-0-5: .5rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-25: 1.25rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;

    /*========== Hover overlay ==========*/
    --transition: .3s;
    --img-hidden: hidden;
}

@media screen and (max-width: 600px) {
    :root {
        --biggest-font-size: 2rem;
        --h1-font-size: 1.6rem;
        --h2-font-size: 1.25rem;
        --h3-font-size: 1rem;
        --h4-font-size: .95rem;
        --normal-font-size: .875rem;
        --small-font-size: .75rem;
        --smaller-font-size: .613rem;
    }
}

body,
input,
textarea,
button,
label,
h1,
h2,
p {
    font-family: var(--body-font);
    font-weight: 400;
}

body {
    background-color: var(--white-color);
}

.navbar-collapse {
    flex-grow: 0 !important;
}

.btn {
    border-radius: 20px !important;
}

.bg-guerra {
    background-color: var(--first-color);
}


header section {
    background: rgb(0, 0, 0);
    background: linear-gradient(90deg, rgb(24, 25, 25) 53%, rgba(0, 0, 0, .8) 97%);
    padding: .8rem 0 .4rem;
}


.header__social {
    display: flex;
    column-gap: 1.5rem;
    right: 20px;
}

header p,
.header__social-link {
    text-decoration: none;
    font-size: 1.25rem !important;
    color: var(--first-color-second) !important;
}


.nav-link {
    font-family: var(--title-font) !important;
    font-weight: var(--font-semi-bold) !important;
    font-size: var(--normal-font-size) !important;
    color: var(--first-color) !important;
    padding-left: var(--mb-1-25) !important;
    padding-right: var(--mb-1-25) !important;
    transition: all 0.25s ease 0s;
    position: relative;
}

.nav-link:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: 0;
    left: 0;
    background-color: var(--first-color);
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.nav-link:hover:after {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.btn-first-buy {
    background-color: var(--first-color-second) !important;
    padding: .4rem 1.2rem !important;
    border-radius: 20px !important;
    color: #eeecec !important;
    font-size: var(--normal-font-size) !important;
    font-weight: var(--font-semi-bold) !important;
    transition: all 0.25s ease 0s;
}

.btn-first-buy:hover {
    background-color: var(--first-color) !important;
    transform: scaleX(1);
}

.section {
    padding: 2.5rem 0;
    height: auto;
}

h1 {
    font-family: var(--title-font) !important;
    font-weight: var(--font-semi-bold) !important;
    font-size: var(--biggest-font-size) !important;
    color: var(--first-color) !important;
}

h2 {
    font-family: var(--title-font) !important;
    font-weight: var(--font-semi-bold) !important;
    font-size: var(--h1-font-size) !important;
    color: var(--first-color) !important;
}

h3 {
    font-family: var(--title-font) !important;
    font-weight: var(--font-semi-bold) !important;
    font-size: var(--h3-font-size) !important;
    color: var(--first-color) !important;
}

p {
    font-family: var(--body-font) !important;
    font-weight: var(--font-light) !important;
    font-size: var(--normal-font-size) !important;
    color: var(--gray-850) !important;
}

.hr_text {
    width: 20%;
    border: 2px solid var(--first-color-second);
    margin: .5rem 0 1rem;
    opacity: 1 !important;
}

.gd-guerra {
    background: rgb(255, 255, 255);
    background: linear-gradient(172deg, rgba(255, 255, 255, 1) 69%, rgba(3, 0, 94, 1) 94%);
}

.card__content {
    background-color: var(--body-color);
    padding: var(--mb-0-5);
    margin-bottom: var(--mb-0-25);
    box-shadow: 0px 8px 6px hsla(230, 100%, 15%, 0.15);
    transition: 8ms ease-in;
}

.card__content img {
    height: 46px;
    width: auto;
}

.card__content:hover {
    box-shadow: 0px 8px 6px hsla(230, 100%, 15%, 0.4);
}

.icon {
    font-size: var(--h2-font-size);
    border-radius: 100%;
    height: 80px;
    width: 80px;
    background-color: var(--first-color-second);
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.title__page {
    background-color: var(--first-color);
    padding: 2rem 0;
}

.title__page h1 {
    color: #f1f1f1 !important;
    font-size: 2.8rem;
    text-align: center;
    font-family: var(--title-font);
}

.card__service {
    float: right;
    background-color: #fff;
    box-shadow: 4px 4px 45px 0 rgba(0, 0, 0, .11);
    margin-top: -40px;
    padding: 20px 20px;
    position: relative;
    z-index: 999;
    transition: .3s ease;
    width: 100%;
}

.card__service p {
    height: 180px;
}

.card__service:hover {
    box-shadow: 4px 4px 50px 0 rgba(50, 47, 47, 0.6);
}

.card__service a {
    float: right;
    position: relative;
    bottom: 0;
}

.number {
    border: 2px solid #FFF;
    font-size: 2.8rem;
    font-family: var(--title-font);
    color: #FFF;
    border-radius: 6px;
    padding: 10px 22px;
    margin-bottom: 8px;
}

.contact p {
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    color: var(--first-color);
}

.contact h4 {
    font-size: var(--h4-font-size);
    font-weight: var(--font-medium);
    color: var(--first-color);
}

@media (max-width: 601px) {
    .card__service p {
        height: auto !important;
    }

    .contact h4 {
        font-size: .8rem;
    }
}

.content__contato {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: -1;
    margin-top: -560px;

}

.container__contato {
    display: flex;
    flex-direction: row;
    row-gap: 1.5rem;
    width: 100%;
}

.data__contato {
    background-color: #FFF;
    flex: 0 0 auto;
    width: 50%;
    height: 560px;

}

.data__contato:nth-child(2) {
    background-color: #ffab00 !important;
}

#contact {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

#associacao,
#about {
    background-color: var(--first-color);
}

#tel__assistencia h2,
#about h1,
#about p,
#associacao h1,
#associacao p {
    color: var(--body-color) !important;
}

.home__title {
    margin-bottom: .75rem;
    color: var(--first-color);
    font-family: var(--title-font);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.guerraCotacao {
    background: var(--first-color-second);
    border-radius: 36px;
    padding: 100px 100px;
    position: relative;
    margin: 100px 0 0 0;
}

.img__cotacao {
    position: absolute;
    bottom: 0;
    right: 20px;
}

.img__contato {
    position: relative;
    bottom: 0;
    background-color: #ffab00;
}

@media screen and (max-width: 600px) {
    .guerraCotacao {
        padding: 40px 14px 100px;
        position: relative;
        margin: 23px 0 0 0;
    }

    .img__cotacao {
        right: -15px;
    }

    .content__contato {
        padding: 10px;
    }

    .content__depoimento {
        margin: 6px 0;
    }

    .content__contato {
        display: none;
    }
}

#tel__assistencia {
    background-color: #03005E;
}

.content__depoimento {
    background-color: var(--first-color-second);
    box-shadow: 0px 2px 6px hsla(230, 100%, 15%, 0.15);
    padding: 1rem;
    border-radius: 1rem;
    margin: 4px;
    height: 420px;
}

.content__depoimento p {
    color: #FFF;
    font-size: .75rem;
}

.img__depoimento {
    width: 96px;
    height: 96px;
    border-radius: 100% !important;
    border: 1px solid #03005E;
    float: right;
}

footer {
    padding: 6rem 0 2rem;
    background-color: #212529;
    font-family: var(--body-font);
}

footer ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

footer ul li a {
    text-decoration: none;
    font-size: var(--normal-font-size) !important;
    font-family: var(--body-font) !important;
    color: var(--cyan) !important;
    transition: all 0.25s ease 0s;
}

footer ul li a:hover {
    color: var(--first-color-alt) !important;
}

footer p {
    font-size: var(--normal-font-size) !important;
    font-family: var(--body-font) !important;
    color: var(--cyan) !important;
}

footer a {
    font-size: var(--normal-font-size) !important;
    font-family: var(--body-font) !important;
    color: var(--cyan) !important;
}

footer h2 {
    color: var(--first-color-second) !important;
    font-size: 24px;
    font-weight: 700;
}


.footer__social {
    display: flex;
    column-gap: 1.5rem;
}

.footer__social-link {
    font-size: 1.25rem;
    color: var(--white-color);
}

ul.footer__ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

ul.footer__ul li {
    padding: 10px 0;

}

.footer__link {
    text-decoration: none;
    font-size: 16px;
    color: #444;
    font-weight: 300;
    cursor: pointer;
}

.footer__table {
    font-size: 16px;
    color: #444;
    font-weight: 300;
    cursor: pointer;
    padding: 10px 8px;
}

i.icons {
    position: relative;
    font-size: 26px;
    top: 0;
    font-weight: 300;
    color: rgb(95, 95, 95);
    padding-right: 8px;
}

a:hover {
    color: rgb(95, 95, 95) !important;
}

.footer__social {
    margin-right: 8px;
}

/* lp cotacao */

.lp__logo {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: .5rem;
}

#cotacao {
    background-image: url('/assets/images/top_background.png');
}

.card__beneficios {
    position: relative;
    z-index: 1000;
    box-shadow: 0px 2px 6px hsla(230, 100%, 15%, 0.15);
    background-color: #FFF;
    padding: 2rem 1rem;
    border-radius: 1rem;
}

.card__beneficios h5 {
    font-size: 1.2rem;
    font-weight: 300;
    color: #101111;
    text-align: center;
}

.card__horizontal {
    box-shadow: 0px 2px 6px hsla(230, 100%, 15%, 0.15);
    border-radius: 1rem;
    background-color: #FFF;
    color: var(--gray-850);
    padding: 1rem 1rem;
    margin: 1rem auto;
}

.card__horizontal h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #03005E;
    text-align: center;
}


.swiper-wrapper {
    padding: 2rem 1rem;
}

.swiper-slide {
    background-color: #fff;
    border-radius: 20px;
}

.swiper-slide img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.image-text {
    padding: 12px 0;
    width: 100%;
    background: rgb(0, 0, 0);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.swiper-slide h3,
.image-text h3 {
    text-align: center;
    font-size: var(--h4-font-size);
    font-weight: var(--font-light);
    font-family: var(--title-font);
    color: var(--first-color-second) !important;
}

.swiper-slide p {
    font-size: var(--normal-font-size);
    font-weight: var(--font-light);
    color: var(--gray-850);
    height: 80px;
    padding: 0 1rem;
}

.input__group {
    position: relative;
}

textarea,
select,
input {
    border: 1px solid #272727;
    border-radius: 20px;
    margin-bottom: 6px !important;
    background-color: none;
    padding: 1rem;
    font-size: 1rem;
    width: 100%;
    color: var(--gray-850);
    transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

label {
    color: var(--first-color-second);
    font-size: 1rem;
}

select:focus,
input:focus {
    outline: none;
    border: 1.5px solid var(--first-color);
}

.card-body {
    margin: 4rem 0;
    padding: 4rem;
    border: 1.5px solid var(--first-color);
    border-radius: 1rem;
    box-shadow: 4px 4px 45px 0 rgba(0, 0, 0, .11);
}

input.form-control,
textarea.form-control {
    border: 1px solid #272727;
    border-radius: 20px;
    background-color: #fff;
}

.parallax_home {
    background-image: url('/src/images/soft-evening-light-captures_mb.jpeg');
    min-height: 360px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax_home h1 {
    font-size: var(--biggest-font-size) !important;
}

.parallax_home h1 span {
    background: rgb(76, 29, 99);
    background: linear-gradient(90deg, rgba(76, 29, 99, 1) 53%, rgba(234, 84, 85, 1) 97%);
    color: #FFF;
    padding: 0 .6rem;
}

.parent {
    bottom: 5vh;
    position: fixed;
    left: 8vw;
    z-index: 999;
}

.heart {
    background: #c0c0c0;
    border-radius: 50%;
    cursor: pointer;
    height: 54px;
    line-height: 54px;
    position: relative;
    text-align: center;
    width: 54px;
}

.heart a {
    text-decoration: none;
}

.heart i {
    color: #444;
    font-size: 22px !important;
    padding: 10px;
}

.mobile {
    display: none;
}

section.social-media {
    position: fixed;
    bottom: 0;
    right: 0;
    background-color: transparent;
    z-index: 1;
}

a.rede-social {
    color: var(--first-color);
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, .1);
    display: block;
    padding: 12px 12px 8px 16px;
    text-transform: uppercase;
}

i {
    font-size: var(--h4-font-size);
}

#simple-cookie-consent {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    resize: vertical;
    overflow: auto;
    z-index: 999999999;
    background: rgba(0, 0, 0, 0.7);
}

#simple-cookie-consent .cookie-consent-container {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    margin: -100px auto 0;
    background: #fff;
    padding: 20px;
    max-width: 500px;
}

#simple-cookie-consent .cookie-consent-selection {
    text-align: right;
}

#simple-cookie-consent button {
    border: none;
    padding: 10px 20px;
    margin: 10px 0 0 10px;
    background: none;
    font-size: 1.1em;
}

#simple-cookie-consent button.cookie-consent-allow {
    background-color: #101111;
    color: #fff;
}

#simple-cookie-consent button.cookie-consent-allow:focus,
#simple-cookie-consent button.cookie-consent-allow:hover {
    background-color: #101111;
    cursor: pointer;
}

#simple-cookie-consent button.cookie-consent-deny {
    padding: 5px 0;
    font-size: 0.9em;
    opacity: 0.8;
}

#simple-cookie-consent button.cookie-consent-deny:focus,
button.cookie-consent-deny:hover {
    opacity: 1;
    cursor: pointer;
}

#simple-cookie-consent hr {
    margin: 15px 0;
}


@media screen and (max-width: 600px) {
    .computador {
        display: none;
    }

    .mobile {
        display: block;
    }
}