/**
* Tigrão Autopeças
* Responsável pelo template: Guilherme Martins Viégas
* Proprieda intelectual de Nova Tigrão Comercio de Autopeças LTDA
*/

/*--------------------------------------------------------------
# Geral
--------------------------------------------------------------*/
body {
    background: #fff;
    color: #666666;
    font-family: "Kanit", sans-serif;
    cursor: default;
}

a {
    color: currentColor;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    color: #ea722a;
    outline: none;
    text-decoration: none;
}

button {
    color: currentColor;
    text-decoration: none;
}

button:hover,
button:active,
button:focus {
    color: #ea722a;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Kanit", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #383737;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #ea722a;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.whatsapp-button {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 35px;
    z-index: 996;
    background: #078025;
    width: 60px;
    height: 60px;
    border-radius: 90px;
    transition: all 0.4s;
    box-shadow: rgba(0, 0, 0, 0.6) 0px 5px 15px;
}

.whatsapp-button i {
    font-size: 30px;
    color: #fff;
    line-height: 0;
}

.whatsapp-button:hover {
    background: #25d366;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.6) 5px 10px 10px;
    transform: translate(-2px, -4px);
}

.whatsapp-button.active {
    visibility: visible;
    opacity: 1;
}

.whatsapp-button-loja {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 35px;
    z-index: 996;
    background: #078025;
    width: 60px;
    height: 60px;
    border-radius: 90px;
    transition: all 0.4s;
    box-shadow: rgba(0, 0, 0, 0.6) 0px 5px 15px;
}

.whatsapp-button-loja i {
    font-size: 30px;
    color: #fff;
    line-height: 0;
}

.whatsapp-button-loja:hover {
    background: #25d366;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.6) 5px 10px 10px;
    transform: translate(-2px, -4px);
}

.whatsapp-button-loja.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 90px;
    transition: all 0.5s;
    z-index: 997;
    background: #ea722a;
}

#header #logo h1 {
    font-size: 32px;
    margin: 0;
    line-height: 1;
    font-family: "Kanit", sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
    color: #fff;
}

#header #logo img {
    padding: 0;
    margin: 0;
}

#header.header-transparent {
    background: transparent;
}

#header.header-black {
    background: rgba(10, 10, 10, 0.9);
}

#header.header-scrolled {
    background: rgba(10, 10, 10, 0.9);
    height: 70px;
    transition: all 0.5s;
}

.scrolled-offset {
    margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar > ul > li {
    white-space: nowrap;
    padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Kanit", sans-serif;
    color: #fff;
    font-size: 14px;
    padding: 0 4px;
    white-space: nowrap;
    transition: 0.3s;
    letter-spacing: 0.4px;
    position: relative;
    text-transform: uppercase;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: rgb(255, 255, 255);
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
    visibility: visible;
    transform: scaleX(1);
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #fff;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 24px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: rgb(2, 2, 2);
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #666666;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(239, 121, 20, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile > ul > li {
    padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
    visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #666666;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #ea722a;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: #ea722a;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 100vh;
    background: url(../img/hero-section/logo-3.png) top center;
    background-size: cover;
    position: relative;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

#hero:before {
    content: "";
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .hero-container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

#hero .linha-separadora h1::after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 2px;
    background: #ffffff;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform: translateY(
        20px
    ); /*tem que ser metade da margin bottom do h1 pra centralizar*/
}

#hero h1 {
    font-family: "Kanit", sans-serif;
    margin: 0 0 40px 0; /*margin bottom*/
    font-size: 40px;
    font-weight: 600;
    line-height: 56px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
}

#hero h2 {
    color: #eee;
    margin-bottom: 50px;
    font-size: 24px;
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

#hero .btn-get-started {
    font-family: "Kanit", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
    background: #00000000;
}

#hero .btn-get-started:hover {
    background: #ea722a;
    border: 2px solid #ea722a;
}

#hero .btn-get-started-2 {
    font-family: "Kanit", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
}

#hero .btn-get-started-2:hover {
    background: #ea722a;
    border: 2px solid #ea722a;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-item::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.432);
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 50px;
    right: 50px;
}

#hero .container {
    text-align: center;
}

#hero p {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin: 0 auto 5px auto;
    color: #fff;
    font-size: 18px;
}

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

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgba(126, 125, 124, 0.2);
    border-radius: 50px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
    background: rgba(165, 155, 146, 0.5);
    color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0;
    transition: 0.3s;
}

#hero .carousel-indicators li.active {
    opacity: 0;
    background: #ea722a;
}

@media (max-width: 1024px) {
    #hero {
        height: 100vh;
    }

    #hero .carousel-container {
        top: 66px;
    }
}

@media (min-width: 1024px) {
    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

#hero .destaque-bg {
    background-color: rgba(0, 0, 0, 0.685);
    padding: 0 0.2em;
    border-radius: 10px;
}

#hero .letra-laranja {
    color: #ea722a;
}

#hero .letra-preta {
    color: #000000;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
    overflow: hidden;
}

/* Estilos específicos para a seção de atendimento Tigrão Autopeças */
/* === Animações para os textos === */

/* Animação para entrada da esquerda (para h2) */
@keyframes left-in {
    from {
        transform: translateX(-250px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animação para entrada da direita (para p) */
@keyframes right-in {
    from {
        transform: translateX(250px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Estado inicial para os elementos de texto */
.animate-left,
.animate-right {
    opacity: 0;
}

/* Quando em view, aplica a animação */
.animate-left.in-view {
    animation: left-in 0.6s ease-in-out forwards;
}

.animate-right.in-view {
    animation: right-in 0.6s ease-in-out forwards;
}

/* === Ajustes nos Cards (mantendo sua animação flip) === */

.tgrao-card {
    background: #fff;
    color: #333;
    width: 300px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    text-align: center;
    font-family: inherit;
    display: block;
    transform-style: preserve-3d;
    backface-visibility: hidden;

    /* Inicialmente, os cards ficam ocultos */
    transform: rotateY(0deg) scale(1);
    opacity: 0;

    /* A transição de hover */
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

/* Quando o card entra na tela, adicionamos a classe in-view para disparar o flip */
.tgrao-card.in-view {
    animation: flipIn 0.8s forwards;
    opacity: 1;
}

/* Animação de flip – mantém sua definição original */
@keyframes flipIn {
    0% {
        transform: rotateY(90deg) scale(0.95);
        opacity: 0;
    }
    60% {
        transform: rotateY(-10deg) scale(1.02);
        opacity: 1;
    }
    80% {
        transform: rotateY(5deg) scale(0.98);
    }
    100% {
        transform: rotateY(0deg) scale(1);
        opacity: 1;
    }
}

/* Delays para o efeito dominó */
.flip-150ms {
    animation-delay: 150ms;
}

.flip-250ms {
    animation-delay: 250ms;
}

.flip-350ms {
    animation-delay: 350ms;
}

/* Hover nos cards */
.tgrao-card:hover {
    transform: rotateY(0deg) scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.8);
}

/* Os demais estilos permanecem os mesmos */
.tgrao-atendimento {
    background: linear-gradient(135deg, #ff7b00, #ff5100);
    color: #fff;
    padding: 50px 20px;
    text-align: center;
    font-family: inherit;
}

.tgrao-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    perspective: 1000px;
}

.tgrao-atendimento h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.tgrao-atendimento p {
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: 400;
}

#tgrao-atendimento .linha-separadora {
    position: relative;
}

#tgrao-atendimento .linha-separadora::after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 2px;
    background: #f0eeee;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform: translateY(13px);
}

@media (min-width: 768px) {
    #tgrao-atendimento .wrapper-hub {
        margin-top: 5%;
    }
}

@media (max-width: 767px) {
    #tgrao-atendimento .wrapper-hub {
        margin-top: 15%;
    }
}

.tgrao-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.tgrao-icon {
    font-size: 50px;
    margin-bottom: 15px;
    color: #ff5e00;
    transition: transform 0.3s ease;
}

.tgrao-icon:hover {
    transform: scale(1.1);
}

.tgrao-card h3 {
    font-size: 1.75em;
    margin-bottom: 10px;
    font-weight: 600;
}

.tgrao-card p {
    font-size: 1em;
    font-weight: 500;
    color: #414141;
}

/* Sections Header
--------------------------------*/
.section-header .section-title {
    font-size: 32px;
    color: #161616;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    margin-bottom: 25px;
}

.section-header .section-description {
    font-size: 16px;
    text-align: center;
    padding-bottom: 40px;
    color: #414141;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0;
    background-color: whitesmoke;
    min-height: 40px;
    margin-top: 92px;
}

.breadcrumbs h2 {
    font-family: "Kanit", sans-serif;
    font-weight: 700;
    font-size: 40px;
    margin: 0;
    color: #161616;
}

#breadcrumbs .description-hub {
    font-family: "Kanit", sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin: 0;
    color: #161616;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/* About Us Section
--------------------------------*/
#sobre {
    background: #fff;
    padding: 70px 0 30px 0;
}
#sobre .linha-separadora h2 {
    position: relative;
}

#sobre .linha-separadora h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 2px;
    background: #161616;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform: translateY(13px);
}

#sobre h2 {
    font-size: 32px;
    color: #161616;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    margin-bottom: 25px;
}

#sobre .about-container .background {
    min-height: 400px;
    background: url(../img/Sobre-Nós-02.png) center top no-repeat;
    margin: auto;
}

#sobre .about-container .content {
    background: #fff;
}

#sobre .about-container .title {
    color: #161616;
    font-weight: 700;
    font-size: 32px;
}

@media (max-width: 768px) {
    #sobre .about-container .title {
        padding-top: 15px;
    }
}

#sobre .about-container p {
    line-height: 26px;
}

#sobre .about-container p:last-child {
    margin-bottom: 0;
}

#sobre .about-container .icon-box {
    background: #fff;
    background-size: cover;
    padding: 0 0 30px 0;
}

#sobre .about-container .icon-box .icon {
    float: left;
    background: #fff;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    border-radius: 50%;
    border: 2px solid #ea722a;
}

#sobre .about-container .icon-box .icon i {
    color: #ea722a;
    font-size: 32px;
    line-height: 0;
}

#sobre .about-container .icon-box .title {
    margin-left: 80px;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 18px;
    text-transform: uppercase;
}

#sobre .about-container .icon-box .title a {
    color: #111;
}

#sobre .about-container .icon-box .description {
    margin-left: 80px;
    line-height: 24px;
    font-size: 14px;
}

/* Nossa historia Section
--------------------------------*/
#historia {
    background: #fff;
    padding: 80px 0;
}

#historia .about-container .background {
    min-height: 430px;
    background: url(../img/Tigrão-Campeã1.png) center top no-repeat;
    margin-bottom: 10px;
}

#historia .about-container .content {
    background: #fff;
}

#historia .about-container .title {
    color: #333;
    font-weight: 700;
    font-size: 32px;
}

@media (max-width: 768px) {
    #historia .about-container .title {
        padding-top: 15px;
    }
}

#historia .about-container p {
    line-height: 26px;
}

#historia .about-container p:last-child {
    margin-bottom: 0;
}

#historia .about-container .icon-box {
    background: #fff;
    background-size: cover;
    padding: 0 0 30px 0;
}

#historia .about-container .icon-box .icon {
    float: left;
    background: #fff;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    border-radius: 50%;
    border: 2px solid #ea722a;
}

#historia .about-container .icon-box .icon i {
    color: #ea722a;
    font-size: 24px;
    line-height: 0;
}

#historia .about-container .icon-box .title {
    margin-left: 80px;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 18px;
    text-transform: uppercase;
}

#historia .about-container .icon-box .title a {
    color: #111;
}

#historia .about-container .icon-box .description {
    margin-left: 80px;
    line-height: 24px;
    font-size: 14px;
}

/* Itens Sazonais
--------------------------------*/
/* Slider */
#promo-sazonal {
    margin: auto;
}

#promo-sazonal .slick-slide {
    margin: 50px 20px;
}

#promo-sazonal .slick-slide img {
    width: 100%;
    border-radius: 15px;
    transition: all 0.4s;
}

#promo-sazonal .slick-slide img:hover {
    transform: scale(1.2);
}

#promo-sazonal .slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

#promo-sazonal .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

#promo-sazonal .slick-list:focus {
    outline: none;
}

#promo-sazonal .slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

#promo-sazonal .slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

#promo-sazonal .slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

#promo-sazonal .slick-track:before,
.slick-track:after {
    display: table;
    content: "";
}

#promo-sazonal .slick-track:after {
    clear: both;
}

#promo-sazonal .slick-loading .slick-track {
    visibility: hidden;
}

#promo-sazonal .slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir="rtl"] .slick-slide {
    float: right;
}

#promo-sazonal .slick-slide img {
    display: block;
}

#promo-sazonal .slick-slide.slick-loading img {
    display: none;
}

#promo-sazonal .slick-slide.dragging img {
    pointer-events: none;
}

#promo-sazonal .slick-initialized .slick-slide {
    display: block;
}

#promo-sazonal .slick-loading .slick-slide {
    visibility: hidden;
}

#promo-sazonal .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

#promo-sazonal .slick-arrow.slick-hidden {
    display: none;
}

/* Parceiros
--------------------------------*/
/* Slider */
#parceiros {
    margin: auto;
}

#parceiros .slick-slide {
    margin: 0px 20px;
}

#parceiros .slick-slide img {
    width: 100%;
}

#parceiros .slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

#parceiros .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

#parceiros .slick-list:focus {
    outline: none;
}

#parceiros .slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

#parceiros .slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

#parceiros .slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

#parceiros .slick-track:before,
.slick-track:after {
    display: table;
    content: "";
}

#parceiros .slick-track:after {
    clear: both;
}

#parceiros .slick-loading .slick-track {
    visibility: hidden;
}

#parceiros .slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir="rtl"] .slick-slide {
    float: right;
}

#parceiros .slick-slide img {
    display: block;
}

#parceiros .slick-slide.slick-loading img {
    display: none;
}

#parceiros .slick-slide.dragging img {
    pointer-events: none;
}

#parceiros .slick-initialized .slick-slide {
    display: block;
}

#parceiros .slick-loading .slick-slide {
    visibility: hidden;
}

#parceiros .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

#parceiros .slick-arrow.slick-hidden {
    display: none;
}

/* Facts Section
--------------------------------*/
#fatos {
    background: #f7f7f7;
    padding: 10px 0 10px 0;
}

#fatos .counters {
    margin-top: -30px;
}

#fatos .counters span {
    font-size: 48px;
    display: block;
    color: #ea722a;
}

#fatos .section-header {
    margin: 60px 0 0 0;
}

#fatos .counters p {
    padding: 0;
    margin: 0 0 60px 0;
    font-family: "Kanit", sans-serif;
    font-size: 14px;
}

#fatos .linha-separadora h2 {
    position: relative;
}

#fatos .linha-separadora h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 2px;
    background: #161616;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform: translateY(13px);
}

#fatos h2 {
    font-size: 32px;
    color: #161616;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Services Section
--------------------------------*/
#mvv {
    background: #f7f7f7;
    background-size: cover;
    padding: 80px 0 60px 0;
}

#mvv .box {
    padding: 50px 20px;
    margin-bottom: 50px;
    text-align: center;
    border: 1px solid #e6e6e6;
    height: 250px;
    position: relative;
    background: #fafafa;
}

#mvv .box-ultima {
    /*criada para a ultima box da sessão, evitando atrapalhar a margem inferior da sessão*/

    padding: 50px 20px;
    text-align: center;
    border: 1px solid #e6e6e6;
    height: 250px;
    position: relative;
    background: #fafafa;
}

#mvv .icon {
    position: absolute;
    top: -36px;
    left: calc(50% - 36px);
    transition: 0.2s;
    border-radius: 50%;
    border: 6px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 72px;
    height: 72px;
    background: #ea722a;
}

#mvv .icon a {
    display: inline-block;
}

#mvv .icon i {
    color: #fff;
    font-size: 32px;
    line-height: 0;
}

#mvv .box:hover .icon {
    background: #fff;
    border: 2px solid #ea722a;
}

#mvv .box:hover .icon i {
    color: #ea722a;
}

#mvv .box:hover .icon a {
    color: #ea722a;
}

#mvv .box-ultima:hover .icon {
    background: #fff;
    border: 2px solid #ea722a;
}

#mvv .box-ultima:hover .icon i {
    color: #ea722a;
}

#mvv .box-ultima:hover .icon a {
    color: #ea722a;
}

#mvv .title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

#mvv .title a {
    color: #111;
}

#mvv .description {
    font-size: 16px;
    line-height: 24px;
}

#mvv .linha-separadora h2 {
    position: relative;
}

#mvv .linha-separadora h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 2px;
    background: #161616;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform: translateY(13px);
}

#mvv h2 {
    font-size: 32px;
    color: #161616;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(255, 158, 31, 0.664)),
        url(../img/venda-video-chamada.png) fixed center center;
    background-size: cover;
    padding: 80px 0;
}

@media (max-width: 1024px) {
    #call-to-action {
        background-attachment: scroll;
    }
}

#call-to-action .cta-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
}

#call-to-action .destaque-cta {
    background-color: rgba(0, 0, 0, 0.733);
    padding: 0 0.2em;
    border-radius: 10px;
    color: #ea722a;
}

#call-to-action .cta-text {
    color: #fff;
}

@media (min-width: 769px) {
    #call-to-action .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

#call-to-action .cta-btn {
    font-family: "Kanit", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
    background: #00000000;
}

#call-to-action .cta-btn:hover {
    background: #ea722a;
    border: 2px solid #eb8730;
}

/* Call To Action 2 Section
--------------------------------*/
#call-to-action2 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(255, 158, 31, 0.664)),
        url(../img/imagem-de-whatsapp.png) fixed center center;
    background-size: cover;
    padding: 80px 0;
}

@media (max-width: 1024px) {
    #call-to-action2 {
        background-attachment: scroll;
    }
}

#call-to-action2 .cta-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
}

#call-to-action2 .destaque-cta {
    background-color: rgba(0, 0, 0, 0.733);
    padding: 0 0.2em;
    border-radius: 10px;
    color: #ea722a;
}

#call-to-action2 .cta-text {
    color: #fff;
}

@media (min-width: 769px) {
    #call-to-action2 .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

#call-to-action2 .cta-btn {
    font-family: "Kanit", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
}

#call-to-action2 .cta-btn:hover {
    background: #ea722a;
    border: 2px solid #eb8730;
}

/* lojas Section
--------------------------------*/
#lojas {
    background: #f7f7f7;
    padding: 70px 0 70px;
}

#lojas #portfolio-flters {
    padding: 30px 0 0 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
}

#lojas #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 12px 18px 14px 18px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #161616;
    margin: 0 5px 10px 5px;
    transition: all ease-in-out 0.3s;
    background: white;
    border-radius: 4px;
}

#lojas #portfolio-flters li:hover,
#lojas #portfolio-flters li.filter-active {
    color: #fff;
    background: #ea722a;
    box-shadow: rgba(0, 0, 0, 0.6) 0px 10px 15px;
    transform: translateY(-2px);
}

#lojas #portfolio-flters li:last-child {
    margin-right: 0;
}

#lojas .portfolio-item {
    margin-bottom: 30px;
}

#lojas .portfolio-item img {
    position: relative;
    top: 0;
    transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    border-radius: 15px;
}

#lojas .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -50px;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    background: #ea722a;
    padding: 15px 20px;
    border-radius: 15px;
}

#lojas .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

#lojas .portfolio-item .portfolio-info p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
}

#lojas .portfolio-item .portfolio-info .preview-link,
#lojas .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 50px;
    font-size: 20px;
    top: calc(50% - 18px);
    color: white;
    transition: ease-in-out 0.3s;
}

#lojas .portfolio-item .portfolio-info .preview-link:hover,
#lojas .portfolio-item .portfolio-info .details-link:hover {
    color: #575656;
}

#lojas .portfolio-item .portfolio-info .details-link {
    right: 15px;
}

#lojas .portfolio-item:hover img {
    top: -15px;
}

#lojas .portfolio-item:hover .portfolio-info {
    opacity: 1;
    bottom: 0;
}

#lojas .linha-separadora h2 {
    position: relative;
}

#lojas .linha-separadora h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 2px;
    background: #161616;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform: translateY(13px);
}

#lojas h2 {
    font-size: 32px;
    color: #161616;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    margin-bottom: 25px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
    padding: 80px 0;
    background: url("../img/hero-section/tigrao-melhor-autopecas.png") no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.testimonials::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(8, 10, 11, 0.7);
}

.testimonials .section-header {
    margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    text-align: center;
    color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.15);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #fff;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #ddd;
    margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: rgba(255, 255, 255, 0.4);
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
    color: #eee;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #ea722a;
}

@media (min-width: 1024px) {
    .testimonials {
        background-attachment: fixed;
    }
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.lojas-detalhes {
    padding-top: 40px;
}

.lojas-detalhes .portfolio-details-slider img {
    width: 100%;
}

.lojas-detalhes .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.lojas-detalhes
    .portfolio-details-slider
    .swiper-pagination
    .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #ea722a;
}

.lojas-detalhes
    .portfolio-details-slider
    .swiper-pagination
    .swiper-pagination-bullet-active {
    background-color: #ea722a;
}

.lojas-detalhes .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(102, 102, 102, 0.08);
}

.lojas-detalhes .portfolio-info h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #161616;
}

.lojas-detalhes .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.lojas-detalhes .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
    color: #161616;
}

.lojas-detalhes .portfolio-info ul li + li {
    margin-top: 10px;
}

.lojas-detalhes .portfolio-description {
    padding-top: 30px;
}

.lojas-detalhes .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #161616;
}

.lojas-detalhes .portfolio-description p {
    padding: 0;
    color: #272727;
}

/* Team Section
--------------------------------*/
#team {
    background: #fff;
    padding: 80px 0 60px 0;
}

#team .member {
    text-align: center;
    margin-bottom: 20px;
}

#team .member .pic {
    margin-bottom: 15px;
    overflow: hidden;
    height: 260px;
}

#team .member .pic img {
    max-width: 100%;
}

#team .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
}

#team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
}

#team .member .social {
    margin-top: 15px;
}

#team .member .social a {
    color: #b3b3b3;
}

#team .member .social a:hover {
    color: #2dc997;
}

#team .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

/* Contact2 Section
--------------------------------*/
#contact2 {
    background: #f7f7f7;
}

#contact2 .container-texto {
    margin-top: 50px;
}

#contact2 .container-icone {
    margin-bottom: 70px;
    margin-top: -20px;
}

#contact2 p {
    margin: auto;
}

#contact2 .linha-separadora h2 {
    position: relative;
}

#contact2 .linha-separadora h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 2px;
    background: #161616;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform: translateY(13px);
}

#contact2 h2 {
    font-size: 32px;
    color: #161616;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    margin-bottom: 25px;
}

#contact2 .social-links a {
    font-size: 26px;
    background: #ea722a;
    color: #fff;
    line-height: 0;
    border-radius: 50%;
    text-align: center;
    width: 52px;
    height: 52px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#contact2 .social-links a i {
    line-height: 0;
}

#contact2 .social-links a:hover {
    background: #333;
    color: #fff;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #ea722a;
    padding: 0 0 10px 0;
    color: #fff;
    font-size: 14px;
}

#footer .footer-newsletter {
    padding: 50px 0;
    background: black;
}

#footer .footer-newsletter h4 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    color: #a2cce3;
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
}

#footer .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px;
    width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    margin: 3px;
    background: #68a4c4;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
}

#footer .footer-newsletter form input[type="submit"]:hover {
    background: #468db3;
}

#footer .footer-top {
    background: #000000;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    font-size: 18px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    color: #ffffff;
    font-weight: 600;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Kanit", sans-serif;
    color: #fff;
}

#footer .footer-top .social-links-footer a {
    font-size: 18px;
    display: inline-block;
    background: #ff5e00;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links-footer a:hover {
    background: #f17e12;
    color: #fff;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #ffc170;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
    line-height: 26px;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

#footer .credits a {
    color: #ffffff;
}

@keyframes fadeUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Estado inicial do footer */
.footer-fade-up {
    opacity: 0;
}

/* Quando o footer entrar na tela, a classe in-view dispara a animação */
.footer-fade-up.in-view {
    animation: fadeUp 1s ease-out forwards;
}
