:root {
    --brand-blue: #073b6c;
    --brand-blue-dark: #032d55;
    --brand-blue-light: #0b4e86;
    --brand-green: #00b82e;
    --brand-green-dark: #009b27;
    --light-blue: #eef7fc;
    --text: #173c61;
    --gray: #707070;
}


/* =========================
   BASE
========================= */

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    color: var(--text);
    background: #fff;
}

a {
    text-decoration: none;
}

.placeholder-image {
    background:
        linear-gradient(
            135deg,
            #dce8f1,
            #b8cad8
        );

    display: flex;
    align-items: center;
    justify-content: center;

    color: #527087;
}

.placeholder-image > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

    font-size: 14px;
    text-align: center;
}

.placeholder-image i {
    font-size: 45px;
}


/* =========================
   HERO
========================= */

.hero {
       background: linear-gradient(to bottom, var(--brand-blue-dark), var(--brand-blue));
    color: #fff;
}

@media (min-width: 1900px) {
    .hero {max-height: 750px; overflow: hidden; }
    .hero-image {display: flex; align-items: center; max-height: 750px;}
}

.hero-image {width: 57vw;}

.hero-content {
    min-height: 485px;

    /* padding: 25px 60px 45px; */

    display: flex;
    flex-direction: column;
    justify-content: center;

    position: relative;
    z-index: 2;


}

.logo-placeholder {
    width: 180px;
    height: 65px;

    border: 1px dashed rgba(255,255,255,.6);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;

    margin-bottom: 12px;
}

.hero-label span {
    display: inline-block;
    width: 25px;
    height: 2px;
    background: #fff;
}

.hero-title {
    font-size: clamp(40px, 3.3vw, 62px);
    line-height: 1.1;
    font-weight: 800;

    margin-bottom: 20px;
}

.hero-title strong {
    color: #5cc6ff;
}

.hero-text {
    max-width: 430px;

    font-size: 17px;
    line-height: 1.45;

    margin-bottom: 16px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    background: var(--brand-green);
    border: 0;

    color: #fff;

    font-size: 14px;
    font-weight: 700;

    padding: 13px 20px;

    transition: .2s ease;
    width: fit-content;
}

.btn-whatsapp:hover {
    background: var(--brand-green-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-whatsapp i:first-child {
    font-size: 24px;
}

.btn-whatsapp i:last-child {
    font-size: 18px;
}

.hero-small {
    display: block;
    margin-top: 7px;

    font-size: 12px;
}

.hero-image {
    min-height: 485px;
    height: 100%;
    
}


@media (min-width: 992px) {
    .hero-image {
    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        100px 100%
    );
    }
}




/* =========================
   MINI FEATURES
========================= */

.mini-feature {
    min-height: 95px;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 15px 25px;

    border-right: 1px solid #d2dce4;
}

.col-lg-4:last-child .mini-feature {
    border-right: 0;
}

.mini-feature-icon {
    width: 62px;
    height: 62px;

    flex: 0 0 62px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--brand-blue-dark);

    color: #fff;

    font-size: 30px;
}

.mini-feature h3 {
    margin: 0 0 4px;

    font-size: 16px;
    line-height: 1.15;

    font-weight: 800;
}

.mini-feature p {
    margin: 0;

    color: #737373;

    font-size: 13px;
    line-height: 1.3;
}


/* =========================
   STOCK
========================= */

.stock-section {
    background: var(--light-blue);
}

.section-label {
    color: var(--brand-blue);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 6px;
}

.section-title {
    color: var(--brand-blue);

    font-size: clamp(30px, 3vw, 42px);
    line-height: 1;

    font-weight: 800;
}

.section-description {
    font-size: 15px;
}

.btn-outline-brand {
    border: 1px solid var(--brand-blue);

    color: var(--brand-blue);

    background: #fff;

    font-size: 12px;
    font-weight: 700;

    padding: 10px 16px;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    transition: .2s ease;
}

.btn-outline-brand:hover {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: #fff;
}

.truck-card {
    background: #fff;

    border-radius: 8px;

    padding: 8px;

    display: flex;
    gap: 15px;

    box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

.truck-image {
    width: 52%;
    min-height: 210px;

    border-radius: 4px;

    flex-shrink: 0;
}

.truck-info {
    padding: 8px 10px 8px 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.truck-info h3 {
    color: var(--brand-blue);

    /* font-size: 18px; */
    line-height: 1.1;

    font-weight: 800;

    margin-bottom: 6px;
}

.truck-info p {
    margin-bottom: 8px;

    color: #737373;

    font-size: 13px;
    line-height: 1.3;
}

.truck-model {
    margin-bottom: 8px !important;
}

.price-label {
    color: #777;

    font-size: 12px;

    margin-top: auto;
}

.price {
    color: var(--brand-blue);

    font-size: 20px;
    font-weight: 800;
}


/* =========================
   BENEFITS
========================= */

.benefits-section {
    background: var(--brand-blue);
    color: #fff;
}

.benefit {
    min-height: 155px;

    padding: 5px 25px;

    text-align: center;

    border-right: 1px solid rgba(255,255,255,.3);
}

.col-lg-3:last-child .benefit {
    border-right: 0;
}

.benefit-icon {
    width: 52px;
    height: 52px;

    margin: 0 auto 8px;

    border: 2px solid #42c9ff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 25px;
}

.benefit h3 {
    margin: 0 0 5px;

    font-size: 18px;
    font-weight: 800;
}

.benefit p {
    max-width: 210px;

    margin: auto;

    font-size: 12px;
    line-height: 1.35;

    opacity: .95;
}


/* =========================
   CTA
========================= */

.cta-section {
    background: #f7fbfe;
}

.cta-title {
    color: var(--brand-blue);

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1;

    font-weight: 800;

    margin-bottom: 6px;
}

.cta-description {
    color: var(--brand-blue);

    font-size: 15px;

    margin-bottom: 0;
}

.input-group-text {
    background: #fff;
    border-color: #ccd8e1;

    color: #30475c;
}

.form-control {
    min-height: 45px;

    border-color: #ccd8e1;

    font-size: 13px;
}

.form-control:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 .15rem rgba(7,59,108,.1);
}

.cta-section .btn-whatsapp {
    min-height: 45px;
    width: fit-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.form-note {
    margin-top: 8px;

    color: #222;

    font-size: 12px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991.98px) {

    .hero-content {
        min-height: auto;

        padding: 40px 30px;
    }

    .hero-image {
        min-height: 400px;
    }

    .mini-feature {
        border-right: 0;
        border-bottom: 1px solid #d2dce4;
    }

    .col-lg-4:last-child .mini-feature {
        border-bottom: 0;
    }

    .benefit {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.25);

        padding-top: 20px;
        padding-bottom: 20px;
    }

    .col-lg-3:last-child .benefit {
        border-bottom: 0;
    }

}


@media (max-width: 575.98px) {

    .hero-content {
        padding: 30px 20px;
    }

    .logo-placeholder {
        width: 150px;
        height: 55px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-image {
        min-height: 280px;
    }

    .mini-feature {
        padding-left: 10px;
        padding-right: 10px;
    }

    .stock-section {
        padding-top: 40px !important;
    }

    .section-title {
        font-size: 32px;
    }

    .truck-card {
        flex-direction: column;
    }

    .truck-image {
        width: 100%;
        min-height: 220px;
    }

    .truck-info {
        padding: 8px 10px 15px;
    }

    .price-label {
        margin-top: 10px;
    }

    .btn-outline-brand {
        width: 100%;
        justify-content: center;
    }

}



/* =========================
   FOOTER
========================= */

.site-footer {
    position: relative;

    overflow: hidden;

    padding: 32px 0 8px;

    background: #063b69;

    color: #fff;
}


/* detalhe decorativo superior */

/* .site-footer::before {
    content: "";

    position: absolute;

    top: -55px;
    right: 15%;

    width: 150px;
    height: 65px;

    background: rgba(0, 105, 170, .45);

    border-radius: 0 0 50% 50%;
} */


/* =========================
   LINKS PRINCIPAIS
========================= */

.footer-links {
    display: grid;

    grid-template-columns: 1fr 1.8fr 1fr;

    align-items: end;

    gap: 40px;

    position: relative;
    z-index: 1;
}

.footer-column {
    text-align: center;
}

.footer-column h3 {
    margin: 0 0 12px;

    font-size: 17px;
    font-weight: 500;

    color: #fff;
}


/* =========================
   BOTÕES
========================= */

.footer-button {
    height: 54px;

    display: flex;
    align-items: center;

    color: #fff;

    font-size: 15px;
    font-weight: 500;

    letter-spacing: .3px;

    transition: .2s ease;

    overflow: hidden;
}

.footer-button:hover {
    color: #fff;
    transform: translateY(-2px);
}

.footer-icon {
    width: 67px;
    height: 54px;

    flex: 0 0 67px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    font-size: 27px;
}


/*
    Pequeno efeito diagonal
    entre o ícone e o texto
*/

.footer-icon::after {
    content: "";

    position: absolute;

    right: -11px;
    top: 0;

    width: 22px;
    height: 100%;

    transform: skewX(23deg);

    background: inherit;

    z-index: 1;
}

.footer-button > span:last-child {
    flex: 1;

    text-align: center;

    padding: 0 20px;
}


/* =========================
   WHATSAPP
========================= */

.footer-whatsapp {
    background: #00ad16;
}

.footer-whatsapp .footer-icon {
    background: #00c51c;
}


/* =========================
   FACEBOOK
========================= */

.footer-facebook {
    background: linear-gradient(
        90deg,
        #0877ed,
        #075ec2
    );
}

.footer-facebook .footer-icon {
    background: color-mix(in srgb, #086ee0 90%, white 10%);
}


/* =========================
   INSTAGRAM
========================= */

.footer-instagram {
    background: linear-gradient(
        90deg,
        #ed4a8a,
        #b92798
    );
}

.footer-instagram .footer-icon {
    background: color-mix(in srgb, #df3b84 90%, white 10%);

}


/* =========================
   LINKEDIN
========================= */

.footer-linkedin {
    background: linear-gradient(
        90deg,
        #12a8e5,
        #0788c7
    );
}

.footer-linkedin .footer-icon {
    background: color-mix(in srgb, #0c99d5 90%, white 10%);
}


/* =========================
   SITE
========================= */

.footer-website {
    background: linear-gradient(
        90deg,
        #074e83,
        #04345f
    );
}

.footer-website .footer-icon {
    background: color-mix(in srgb, #084778 90%, white 10%);

}


/* =========================
   REDES SOCIAIS
========================= */

.footer-socials {
    display: flex;

    justify-content: center;

    gap: 6px;
}

.footer-socials .footer-button {
    flex: 1;

    min-width: 0;
}

.footer-socials .footer-icon {
    flex: 0 0 60px;
    width: 60px;
}


/* =========================
   LOGO
========================= */

.footer-brand {
    display: flex;

    align-items: center;

    gap: 35px;

    margin-top: 50px;
}

.footer-line {
    height: 1px;

    flex: 1;

    background: rgba(255,255,255,.8);
}

.footer-logo {
    width: 190px;
    height: 70px;

    flex: 0 0 190px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px dashed rgba(255,255,255,.65);

    color: #fff;

    text-align: center;

    font-size: 25px;
    font-weight: 700;
}

.footer-logo small {
    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 400;
}


/* =========================
   COPYRIGHT
========================= */

.footer-bottom {
    text-align: center;

    padding-top: 12px;
}

.footer-bottom p {
    margin: 0;

    color: #fff;

    font-size: 13px;
}

.footer-bottom a {
    color: #fff;
}

.footer-bottom a:hover {
    text-decoration: underline;
}


/* =========================
   WHATSAPP FLUTUANTE
========================= */

.footer-floating-whatsapp {
    position: fixed;

    right: 25px;
    bottom: 20px;

    width: 55px;
    height: 55px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25d366;

    border: 3px solid rgba(255,255,255,.7);

    color: #fff;

    font-size: 30px;

    box-shadow: 0 4px 12px rgba(0,0,0,.2);

    transition: .2s ease;
}

.footer-floating-whatsapp:hover {
    color: #fff;

    transform: scale(1.08);
}


/* =========================
   RESPONSIVO
========================= */

@media (max-width: 991.98px) {

    .footer-links {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .footer-socials {
        max-width: 650px;

        margin: auto;
    }

    .footer-brand {
        margin-top: 40px;
    }

}


@media (max-width: 767.98px) {

    .site-footer {
        padding-bottom: 80px;
    }

    .footer-socials {
        flex-direction: column;

        max-width: 400px;
    }

    .footer-socials .footer-button {
        width: 100%;
    }

    .footer-brand {
        gap: 15px;
    }

    .footer-logo {
        width: 150px;
        flex-basis: 150px;
    }

    .footer-floating-whatsapp {
        right: 20px;
        bottom: 20px;
    }

}


@media (max-width: 575.98px) {

    .footer-brand {
        gap: 10px;
    }

    .footer-logo {
        width: 120px;
        flex-basis: 120px;

        height: 60px;

        font-size: 19px;
    }

    .footer-bottom p {
        font-size: 11px;

        line-height: 1.5;
    }

}


/* galeria */

.carousel-indicators [data-bs-target] {width: auto; height: 70px;}

.carousel-thumbs {
	position: static;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	gap: 5px;

	width: 100%;
	margin: 0;
	padding: 0;
}

.carousel-thumbs button {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	border: 0;

	background: transparent;

	opacity: 0.5;
	text-indent: 0;
}

.carousel-thumbs button.active {
	opacity: 1;
}

.carousel-thumbs button img {
	display: block;

	width: 100%;
	height: 70px;

	object-fit: cover;
}

.carousel-thumbs button.active img {
	border: 2px solid #000;
}


/* IMAGEM PRINCIPAL */
.carousel-main {
	position: relative;
	width: 100%;
}


/* ARROWS SOBRE A IMAGEM */
.carousel-main .carousel-control-prev,
.carousel-main .carousel-control-next {
	position: absolute;

	top: 50%;
	bottom: auto;

	width: 40px;
	height: 40px;

	transform: translateY(-50%);

	border-radius: 50%;

	background: var(--brand-blue-dark);

	opacity: 1;
}


/* POSIÇÃO DOS ARROWS */
.carousel-main .carousel-control-prev {
	left: 15px;
}

.carousel-main .carousel-control-next {
	right: 15px;
}


/* ÍCONES */
.carousel-main .carousel-control-prev-icon,
.carousel-main .carousel-control-next-icon {
	width: 12px;
	height: 12px;

	background-size: 100% 100%;
}


/* HOVER */
.carousel-main .carousel-control-prev:hover,
.carousel-main .carousel-control-next:hover {
	background: var(--brand-blue-light);
}

