﻿:root {
    --azul-01: #3D4367;
    --azul-02: #162044;
    --azul-03: #111B3A;
    --orange: #F5A623;
    --orange-dark: #E8921A;
    --green-wa: #25D366;
    --green-wa-hv: #1ebb57;
    --red-logo: #E8391E;
    --border: #E2E8F0;
    --cinza-02: #F6F8FB;
    --cinza-01: #EDEDED;
    --azul-04: #181D3D;
    --cinza-03: #4A5565;
    --radius-card: 12px;
    --radius-btn: 15px;
}

/* base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    color: var(--azul-04);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

h1 {
    font-size: 36px;
    font-family: "Lato", sans-serif;
}

h2 {
    font-family: "Inter", sans-serif;

}

p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: var(--cinza-03);
}

.img-placeholder {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: .8rem;
    letter-spacing: .03em;
}



/* navbar */
.navbar {
    background: linear-gradient(to right, var(--azul-01), var(--azul-02)) !important;
    padding: 0;
    min-height: 64px;
}

.navbar .container {
    min-height: 64px;
    align-items: center;
}

.navbar-brand img {
    height: auto;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, .4);
    padding: 4px 8px;
}

.navbar-toggler-icon {
    filter: invert(1);
}

.navbar-nav {
    gap: 0 32px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 600;
    font-size: .9375rem;
    padding: 0 !important;
    white-space: nowrap;
    transition: opacity .15s;
}

.navbar-nav .nav-link:hover {
    opacity: .75;
}

/* Fale conosco button */
.btn-navbar {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border: 1.5px solid rgba(255, 255, 255, .55);
    color: #fff;
    background: var(--azul-01);
    font-weight: 600;
    font-size: .875rem;
    padding: 7px 16px;
    border-radius: 10px;
    white-space: nowrap;
    transition: background .2s, border-color .2s;
}

.btn-navbar:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff;
    color: #fff;
}

/* decorador gradiente*/
.gradient-divider {
    height: 5px;
    background: linear-gradient(to right,
            #EA4438 0%,
            #F8B134 50%,
            #F08B37 100%);
    flex-shrink: 0;
}

/* botões */
.btn-outline-rc {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    font-weight: 600;
    font-size: .9375rem;
    padding: 11px 24px;
    border-radius: var(--radius-btn);
    transition: background .2s;
}

.btn-outline-rc:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: var(--green-wa);
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: .9375rem;
    padding: 11px 24px;
    border-radius: var(--radius-btn);
    transition: background .2s;
}

.btn-whatsapp:hover {
    background: var(--green-wa-hv);
    color: #fff;
}

.btn-navy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: var(--azul-01);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 28px;
    border-radius: var(--radius-btn);
    transition: filter .2s;
}

.btn-navy:hover {
    filter: brightness(1.2);
    color: #fff;
}

.btn-orange {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: var(--orange);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: .9375rem;
    padding: 11px 24px;
    border-radius: var(--radius-btn);
    transition: background .2s;
}

.btn-orange:hover {
    background: var(--orange-dark);
    color: #fff;
}

/* card de parceiro */
.partner-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 0px 24px 0px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(30,45,90,.07);
  transition: box-shadow .25s, transform .25s;
}
.partner-card:hover {
  box-shadow: 0 6px 24px rgba(30,45,90,.11);
  transform: translateY(-3px);
}
.partner-logo-wrap {
  height: 180px;
  display: flex;
  align-items: center;
  background-color: #fff;
}
.partner-logo-wrap img {
  max-width: 100%;
  margin: auto;
}
.partner-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--azul-01);
  margin-bottom: 8px;
}
.partner-card p {
  font-size: .875rem;
  color: var(--cinza-03);
  line-height: 1.6;
  margin-bottom: 14px;
}
.partner-card .products-label {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--azul-01);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.partner-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.partner-card ul li {
  font-size: .875rem;
  color: var(--cinza-03);
  padding: 2px 0;
}
.partner-card ul li::before {
  content: '•';
  color: var(--azul-01);
  margin-right: 6px;
}
.partner-card .btn-catalog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border: 1.5px solid var(--azul-01);
  color: var(--cinza-02);
  background: var(--azul-02);
  font-weight: 600;
  font-size: .875rem;
  padding: 9px 18px;
  margin-bottom: 28px;
  border-radius: var(--radius-btn);
  margin-top: auto;
  transition: background .2s, color .2s;
}
.partner-card .btn-catalog:hover {
  background: var(--azul-01);
  color: #fff;
}
.btn-ver-mais {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--cinza-02);
  font-weight: 600;
  font-size: .9375rem;
  border: 1.5px solid var(--azul-01);
  padding: 10px 28px;
  border-radius: var(--radius-btn);
  transition: background .2s, color .2s;
  background: var(--azul-02);
}
.btn-ver-mais:hover { background: var(--azul-01); color: #fff; }



/* footer */

/* separador */
.footer-wave {
    position: absolute;
    top: -29px;
    left: 0;
    width: 100%;
    line-height: 0;
    font-size: 0;
    z-index: 1;
    pointer-events: none;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 100px;
}

/* footer conteudo */
.site-footer {
    position: relative;
    background: linear-gradient(to right, var(--azul-01), var(--azul-02));
    padding: 0;
    color: var(--cinza-01);
}

.footer-body {
    position: relative;
    z-index: 2;
    padding: 52px 0 0;
}

.site-footer .footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 18px;
}

.site-footer p {
    font-size: .875rem;
    line-height: 1.7;
    color: var(--cinza-01);
    margin: 0;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-top: 10px;
}

.footer-links a {
    font-family: "Inter", sans-serif;
    color: var(--cinza-01);
    font-size: .875rem;
    transition: color .15s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 18px;
    color: var(--cinza-01);
    margin-bottom: 12px;
}

.footer-contact-item i {
    font-size: 1.05rem;
}

.footer-contact-item span {
    font-size: .875rem;
}

.footer-contact-item a {
    color: var(--cinza-01);
    font-size: .875rem;
    transition: color .15s;
    word-break: break-all;
}

.footer-contact-item a:hover {
    color: #fff;
}


.footer-bottom {
    border-top: 1px solid rgba(237, 237, 237, .1);
    margin-top: 48px;
    padding: 16px 0;
}

.footer-bottom small {
    font-size: .8125rem;
    color: var(--cinza-01);
}

.footer-bottom small a{
    color: var(--cinza-01);
    transition: color .15s;
}

.footer-gareh-logo {
    height: 28px;
    width: auto;
    opacity: .7;
    transition: opacity .15s;
}

.footer-gareh-logo:hover {
    opacity: 1;
}



/* navbar responsiva */
@media (max-width: 991.98px) {
    .navbar-brand img {
        width: 120px;
    }

    .navbar-collapse {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav {
        gap: 0;
        flex-direction: column;
        padding: .75rem 0;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding: .45rem 0 !important;
    }

    .btn-navbar.d-lg-none {
        margin: .75rem auto 8px;
        width: fit-content;
    }
}

/* Mobile: coluna do footer*/
@media (max-width: 767.98px) {
    .site-footer .footer-body .row>[class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }

    .site-footer .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-bottom .d-flex {
        flex-direction: column;
        align-items: center;
        gap: .5rem;
        text-align: center;
    }
}

/* whats flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: #25D366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  line-height: 1;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}