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

body {
    font-family: var(--font-primary);
    background-color: var(--white);
    color: var(--dark-grey);
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
}

/* == COLORS == */
:root {
    --primary-green: #34AE69;
    --secondary-green: #5ECA8E;
    --light-green: #90E5BD;
    --white-green: #f5fbf7;
    --black: #000000;
    --dark-grey: #343A46;
    --secondary-grey: #6D717A;
    --secondary-grey-alpha: #6d717ae7;
    --light-grey: #D9D9D9;
    --white-grey: #F8F9FA;
    --white-grey-alpha: #f8f9faa3;
    --white: #FFFFFF;
    --white-alpha: #ffffffa1;
    --light-grey-alpha: #ececec;
    --font-primary: 'Montserrat', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}

/* BACKGROUNDS */
.bg-primary-green {
    background-color: var(--primary-green);
}

.bg-secondary-green {
    background-color: var(--secondary-green);
}

.bg-light-green {
    background-color: var(--light-green);
}

.bg-white-green {
    background-color: var(--white-green);
}

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

.bg-dark-grey {
    background-color: var(--dark-grey);
}

.bg-secondary-grey {
    background-color: var(--secondary-grey);
}

.bg-light-grey {
    background-color: var(--light-grey);
}

.bg-white-grey {
    background-color: var(--white-grey);
}

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

/* TEXT */
.text-primary-green {
    color: var(--primary-green);
}

.text-secondary-green {
    color: var(--secondary-green);
}

.text-light-green {
    color: var(--light-green);
}

.text-white-green {
    color: var(--white-green);
}

.text-black {
    color: var(--black);
}

.text-dark-grey {
    color: var(--dark-grey);
}

.text-secondary-grey {
    color: var(--secondary-grey);
}

.text-secondary-grey-alpha {
    color: var(--secondary-grey-alpha);
}

.text-light-grey {
    color: var(--light-grey);
}

.text-white-grey {
    color: var(--white-grey);
}

.text-white {
    color: var(--white);
}

/* BORDERS */
.border-primary-green {
    border: 1px solid var(--primary-green);
}

.border-secondary-green {
    border: 1px solid var(--secondary-green);
}

.border-light-grey {
    border: 1px solid var(--light-grey);
}

.border-dark-grey {
    border: 1px solid var(--dark-grey);
}


/* == FONT FACE == */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

/* == FONT CLASSES */
.font-light {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-light);
}

.font-regular {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
}

.font-medium {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-medium);
}

.font-semibold {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
}

.font-bold {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-bold);
}


/* == TEXT == */
p {
    line-height: 1.4;
    font-weight: 400;
    color: var(--dark-grey);
    margin-bottom: 5px;
    font-size: 14px;
}


h1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
}

.slogan {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

h1 span {
    font-weight: 400;
}

h2 {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.1;
}

h2 span {
    font-weight: 400;
    color: var(--secondary-grey);
}

h3 {
    font-size: 20px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--dark-grey);
    margin-top: 20px;
    margin-bottom: 10px;
}

h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--dark-grey);
    line-height: 1.1;
}

ul {
    list-style: none;
}

a {
    color: var(--secondary-green);
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-primary);
    transition: opacity 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

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

    .newsletter-input {
        font-size: 12px !important;
    }

    .newsletter-submit {
        font-size: 14px !important;
    }

    .newsletter-input::placeholder {
        font-size: 14px !important;
    }

    .newsletter-input:focus {
        font-size: 14px !important;
    }

    .newsletter-input:focus::placeholder {
        font-size: 14px !important;
    }

    .footer-copy {
        font-size: 12px !important;
    }
}

/* == BANNERS E CONTEÚDO PRODUTOS == */
.banner-title h1 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.banner-error {
    position: relative;
    height: 220px;
    background: url('../webp/banners/modulo-60-banner-error.webp') no-repeat center;
    background-size: cover;
    background-position: 50% 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-account {
    position: relative;
    height: 220px;
    background: url('../webp/banners/modulo-60-banner-account.webp') no-repeat center;
    background-size: cover;
    background-position: 50% 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-edges {
    position: relative;
    height: 220px;
    background: url('../webp/banners/modulo-60-edges-banner.webp') no-repeat center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-surfaces {
    position: relative;
    height: 220px;
    background: url('../webp/banners/modulo-60-surfaces-banner.webp') no-repeat center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-products {
    position: relative;
    height: 220px;
    background: url('../webp/banners/modulo-60-products.webp') no-repeat center;
    background-size: cover;
    background-position: 50% 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-marcas-placa {
    position: relative;
    height: 220px;
    background: url('../webp/banners/modulo-60-edges-banner.webp') no-repeat center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-tapa-parafusos {
    position: relative;
    height: 220px;
    background: url('../webp/banners/modulo-60-tapa-parafusos-banner.webp') no-repeat center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.banner-title {
    color: var(--white);
}

.banner-title p {
    color: var(--white);
}

/* Header and Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 20px 20px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: var(--secondary-green);
    height: 65px;
    opacity: 0.9;
}

.logo img {
    height: 35px;
}

.main-menu {
    flex: 1;
    margin: 0 40px;
}

.main-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.main-menu ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.main-menu ul li a:hover {
    opacity: 0.8;
}

/* Estilo para o link ativo do menu */
.main-menu ul li.active a,
#fp-nav ul li a.active+.fp-tooltip {
    font-weight: 700;
    color: var(--white);
}

.icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icons span {
    position: relative;
    cursor: pointer;
}

.icons img {
    height: 20px;
    width: auto;
}

.icons sup {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: red;
    color: var(--white);
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: 600;
    font-family: var(--font-primary);
}

/* Social Sidebar */
.social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    background-color: transparent;
    padding: 20px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-links a {
    color: var(--white);
    font-size: 20px;
    transition: opacity 0.3s ease;
}

.social-links a img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.social-links a:hover {
    opacity: 0.6;
}

.financial-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    text-align: left;
    opacity: 1;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.financial-info p {
    color: var(--white);
    font-size: 12px;
    margin: 0 0 10px 0;
    font-weight: 300;
    cursor: default;
}

.financial-info a img {
    width: 305px;
    height: auto;
    filter: brightness(0) invert(1);
}

.financial-info a img:hover {
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-menu ul {
        gap: 20px;
    }

    .main-menu ul li a {
        font-size: 12px;
    }
}

@media (max-width: 992px) {
    .main-menu {
        display: none;
    }

    header {
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    .hide-on-mobile {
        display: none;
    }

    .social-sidebar {
        display: none;
    }
}

/* Media */
@media (max-width: 768px) {
    .swiper-pagination {
        right: 10px;
    }

    .favorites-sidebar,
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

.chat-fab-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    pointer-events: none;
}

.chat-fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--secondary-green);
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    outline: none;
    pointer-events: auto;
    transition: opacity 0.2s;
}

.chat-fab:hover {
    opacity: 0.9;
}

.chat-fab svg {
    display: block;
}

.chat-fab-options {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 0;
    margin-right: 0;
    pointer-events: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    position: relative;
    z-index: 1;
}

.chat-fab-options.open {
    opacity: 1;
    visibility: visible;
    margin-bottom: 12px;
}

.chat-fab-option {
    margin-bottom: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    background: var(--secondary-green);
    color: var(--white);
    border: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.13);
    cursor: pointer;
    font-size: 14px;
    min-width: 200px;
    text-align: right;
    transition: background 0.2s;
    font-weight: 500;
    outline: none;
    display: block;
    transition: opacity 0.2s;
}

.chat-fab-option:last-child {
    margin-bottom: 0;
}

.chat-fab-option:hover {
    opacity: 0.9;
}

@media (max-width: 600px) {
    .chat-fab-container {
        right: 12px;
        bottom: 12px;
    }

    .chat-fab-option {
        min-width: 140px;
        font-size: 15px;
        padding: 12px 14px;
    }
}

/* Drilldown menu mobile */
@media (max-width: 769px) {
    .menu-panel {
        display: none;
        width: 100%;
        background: #232323;
        min-height: 150px;
        box-sizing: border-box;
        position: relative;
        z-index: 2;
        padding-bottom: 40px;
    }

    .menu-panel.active {
        display: block;
    }

    .menu-panel.animate-in {
        animation: slideInLeft 0.3s;
    }

    .back-btn {
        display: block;
        background: none;
        border: none;
        color: #fff;
        font-size: 1.1em;
        margin: 50px 0 10px 40px;
        cursor: pointer;
        outline: none;
        text-align: left;
        padding: 10px 30px 10px 0px
    }

    .menu-panel ul {
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
        padding-bottom: 10px !important;
    }

    .dropdown-content li {
        padding-bottom: 0 !important;
    }

    .menu-main ul {
        padding: 50px 30px;
    }

    .menu-panel li {
        margin: 10px 0;
    }

    .menu-drill-anchor {
        background: none;
        border: none;
        color: #fff;
        font-family: inherit;
        font-size: 16px;
        font-weight: 400;
        cursor: pointer;
        padding: 0;
        margin: 0;
        outline: none;
        transition: color 0.2s;
        text-align: center;
        display: inline-block;
    }

    .menu-drill-anchor:focus {
        outline: none;
    }

    .menu-drill-anchor:hover {
        opacity: 0.9;
    }

    .menu-panel h4,
    .menu-panel li {
        padding-left: 40px;
    }

    .slogan {
        font-size: 22px;
    }

    .container {
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 10px;
    }
}

@media (min-width: 770px) {
    .menu-panel {
        display: block !important;
        background: none;
        padding: 0;
        min-height: unset;
        animation: none !important;
    }

    .back-btn {
        display: none !important;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Header padrão (sem barra de informação) */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s ease;
}

/* Header quando a barra de informação está presente */
.info-bar~header,
header.has-info-bar {
    top: 36px !important;
    /* 30px da barra + 6px de padding */
}

/* Quando o header está scrolled, volta ao top: 0 */
header.scrolled {
    top: 0px !important;
}

/* Responsivo para o header */
@media (max-width: 768px) {

    .info-bar~header,
    header.has-info-bar {
        top: 30px !important;
        /* 24px da barra + 6px de padding */
    }

    header.scrolled {
        top: 0px !important;
    }
}

input[type="checkbox"] {
    accent-color: var(--light-green);
}

/* Barra de informação em loop */
.info-bar {
    background: var(--secondary-green);
    color: var(--white);
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    z-index: 1000;
}

.info-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 20px;
}

.info-message {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
}

.info-message.active {
    opacity: 1;
}

.info-message span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .info-bar {
        padding: 6px 0;
    }

    .info-message {
        font-size: 12px;
    }

    .info-bar-content {
        height: 18px;
    }
}


/* Autofill */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--white) inset !important;
    -webkit-text-fill-color: var(--secondary-grey) !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Para Firefox */
input:-moz-autofill,
input:-moz-autofill:focus,
select:-moz-autofill,
select:-moz-autofill:focus,
textarea:-moz-autofill,
textarea:-moz-autofill:focus {
    background-color: var(--white) !important;
    color: var(--secondary-grey) !important;
}

/* Para campos específicos com fundo verde claro */
.floating-label-group .form-input:-webkit-autofill,
.floating-label-group .form-input:-webkit-autofill:hover,
.floating-label-group .form-input:-webkit-autofill:focus,
.floating-label-group .form-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--white-green) inset !important;
    -webkit-text-fill-color: var(--secondary-grey) !important;
}

.search-suggestions-list {
    margin-top: 15px;
}

.search-suggestion-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.search-suggestion-wrapper img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.search-sugg-title {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    color: var(--secondary-grey);
    padding-bottom: 10px;
    padding-top: 20px
}

.search-suggestion-text {
    display: flex;
    flex-direction: column;

}

.search-suggestion-code {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-grey);
    text-transform: uppercase;
}

.search-suggestion-name {
    font-size: 12px;
    color: var(--secondary-grey);
    text-transform: uppercase;
}

.ver-mais-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.ver-mais-btn {
    padding: 5px 20px;
    color: var(--secondary-green);
    border: 2px solid var(--secondary-green);
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
    opacity: 1;
}

.ver-mais-btn:hover {
    opacity: 0.8;
}

/* Responsivo */
@media (max-width: 900px) {
    .banner-title {
        display: none;
    }
}


/*FAQS/POLICIES*/
.banner-policy {
    position: relative;
    height: 220px;
    background: url('../webp/banners/modulo-60-banner-terms-conditions.webp') no-repeat center;
    background-size: cover;
    background-position: 50% 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-policy {
    opacity: 0;
    transition: opacity 1.2s ease;
}

.banner-policy.animate {
    opacity: 1;
}

.banner-faqs-product {
    margin-top: 40px;
    background-image: url('../webp/banners/modulo-60-banner-faqs-products.webp');
    background-size: cover;
    background-position: 50% 75%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-faqs-product h1 {
    color: white;
    font-size: 22px;
}

.accordion-content ul {
    padding: 0 35px 30px;
    font-size: 14px;
}

.padd-p {
    padding: 0 25px 0 !important;
}

.title-content {
    margin-top: 60px;
    text-align: center;
}

/*banner-jobs*/

.banner-job {
    position: relative;
    height: 220px;
    background: url('../webp/banners/modulo-60-banner-about-us.webp') no-repeat center;
    background-size: cover;
    background-position: 50% 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-job {
    opacity: 0;
    transition: opacity 1.2s ease;
}

.banner-job.animate {
    opacity: 1;
}

.banner-others {
    position: relative;
    height: 220px;
    background: url('../webp/banners-home/modulo-60-slider-others-03.webp') no-repeat center;
    background-size: cover;
    background-position: 50% 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-others {
    opacity: 0;
    transition: opacity 1.2s ease;
}

.banner-others.animate {
    opacity: 1;
}

@media (max-width: 1200px) {
    .banner-policy {
        height: 180px;
    }

    .banner-others {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .banner-policy {
        height: 80px;
    }

    .banner-others {
        height: 80px;
    }
}


/*back to*/
.back-button {
    margin-bottom: 15px;
}

.back-button a img{
    width: 10px; 
    height: 10px;
}

.back-to {
    color: var(--light-green);
    font-size: 14px;
}

.way{
    padding-top: 15px;
}

.way a{
    color: var(--white);
    font-weight: 400;
    font-size: 12px;
}

.way img{
    width: 8px; 
    height: 8px;
}

.active-way{
    font-weight: 700;
}

.way a:hover{
    opacity: 1;
}