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

html {
    scroll-behavior: smooth;
}

:root {
  --header-h: 150px;
}

[id] {
  scroll-margin-top: var(--header-h);
}

#page-top {
    overflow-x: hidden;
    font-family: 'Afacad', sans-serif;
    background-color: #f1f1f1;
}

.header {
    background: #0B1C48;
    color: white;
}

.header .nav-link {
    color: white;
    font-weight: 500;
}

.hero {
    background: url('') no-repeat center center/cover;
    height: 400px;
    position: relative;
    color: white;
}

.hero-overlay {
    background: rgba(11, 28, 72, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 4rem;
}


.aviso-producao {
    position: fixed;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1d1d1d;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s ease-in-out;
    z-index: 9999;
    font-size: 15px;
}

.aviso-producao.visivel {
    opacity: 1;
    bottom: 60px;
}


.search-box {
    background: #0B1C48;
    color: white;
    padding: 1rem;
    margin-top: -2rem !important;
    position: relative;
    z-index: 2;
}

.product-card {
    border: 1px solid #ddd;
    padding: 1rem;
    text-align: center;
}

.services-section {
    background: #0B1C48;
    color: white;
    padding: 3rem 0;
}

.form-section {
    background: #f8f9fa;
    padding: 3rem 0;
}

.btn-yellow {
    background: #FFD700;
    color: black;
    font-weight: bold;
}


.initial-page {
    font-family: 'Afacad', sans-serif;
    background-color: #F6F6F6;
}

.initial-page h1 {
    text-transform: uppercase;
}

.container-persona {
    width: 100%;
    max-width: 1520px;
    margin: auto;
}


:root {
    --bar-height: 44px;
    --page-gutter: 24px;
    --radius: 18px;
    --red: #D94B4B;
    --white: #F1F3F6;
    --text: #ffffff;
    --muted: #1e2c54;
    --sep: rgba(255, 255, 255, .55);
    --angle-width: 28px;
    --angle-deg: -18deg;
}

.header-sticky{
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.section-email{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    border-radius: 15px;
    height: 80vh;
    margin: 3vh auto;
    padding: 5vh;
}

.topbar-outer {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    width: 100%;
    background: linear-gradient(to bottom, transparent calc(var(--bar-height) - 6px), var(--muted) 0);
    /* faixa azul embaixo */
}

.topbar {
    height: var(--bar-height);
    /* padding-inline: var(--page-gutter); */
    display: flex;
    align-items: stretch;
    /* gap: 12px; */
    /* max-width: 1280px; */
    /* opcional: limite de largura */
    margin: 0 auto;
}

/* área vermelha (esquerda) */
.bar-red {
    flex: 1 1 auto;
    background: var(--red);
    color: var(--text);
    /* border-radius: 0 var(--radius) var(--radius) 0; */
    /* canto direito arredondado */
    display: flex;
    align-items: center;
    padding: 0 18px;
    overflow: hidden;
}

.red-items {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    font-size: 14px;
}

.red-items .sep {
    width: 1px;
    height: 1.2em;
    background: var(--sep);
    opacity: .9;
}

/* área branca (direita) */
.bar-white {
    flex: 0 0 auto;
    background: var(--white);
    color: #111;
    /* border-radius: var(--radius) 0 0 var(--radius); */
    /* canto esquerdo arredondado */
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 12px;
}

.socials {
    display: flex;
    gap: 10px;
    align-items: center;
    transform: translateY(1px);
    /* ajuste fino para parecer com a imagem */
}

.socials a {
    display: inline-flex;
    width: 22px;
    height: 22px;
}

.socials svg {
    width: 100%;
    height: 100%;
    fill: #111;
}

/* responsivo: quebra em 2 linhas quando apertado */
@media (max-width: 820px) {
    .topbar {
        display: none;
    }

    /* .bar-red, .bar-white {
        border-radius: var(--radius);
        height: 20px;
        width: 100%;
    }

    .bar-red {
        order: 1;
    }

    .bar-white {
        order: 2;
        margin-bottom: 0;
    } */
}





.logo-nav {
    height: 95px;
    transition: height 0.3s ease;
}

.logo-small {
    height: 75px !important;
    /* ou outro valor menor */
}

.nav-background-p {
    background-color: transparent;
    height: 100px;
    width: 100%;
    transition: height 0.3s ease;
}

.nav-persona {
    display: flex;
    justify-content: space-around;
    background-color: transparent;
    align-items: center;
    color: #fff;
}

.nav-scrolled {
    background-color: #0B1C48 !important;
    /* ou #d33b3b se quiser o vermelho */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    height: 80px;
}

.nav-persona ul {
    display: flex;
    padding: 0;
    margin: 0;
}

.nav-persona ul li {
    text-transform: capitalize;
    list-style-type: none;
    padding: 0 10px;
    font-size: 20px;
}

.nav-persona a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.nav-persona a:hover{
    text-decoration: underline;

}

.login-options {
    color: #fff;
}

.login-options a {
    font-weight: 500;
    color: #fff;
}

.login-options a:hover {
    color: #becef4;
}

.user-options-p {
    line-height: 15px;
}

.user-options-p i {
    font-size: 25px;
}

.divisor {
    height: auto;
    width: 2px;
    background-color: #fff;
}

.hero-carousel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 0 6rem; */
    height: 80vh;
    background-image: url('/img/front/bk.png');
    background-size: cover;
    background-repeat: no-repeat;
}

#mainCarousel {
    /* position: relative; */
    /* height: 80vh; */
}




.carousel-item {
    height: 50vh;
    background-size: cover;
    background-position: center;
    /* position: relative; */
}

.carousel-content {
    color: #fff;
    padding: 0 6rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 100%;
    z-index: 2;
}

.carousel-content.left {
    left: 0;
}

.carousel-content.center {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.carousel-content.right {
    right: 0;
    text-align: right;
}

.overlay-img {
    position: absolute;
    right: 6rem;
    top: 2rem;
    z-index: 1;
    max-width: 250px;
    opacity: 0.8;
}

/* Estilizando indicadores */
.carousel-indicators.custom-indicators {
    bottom: 1rem;
    justify-content: center;
    gap: 0.5rem;
}

.carousel-indicators.custom-indicators button {
    width: 40px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 0;
}

.carousel-indicators.custom-indicators button.active {
    background-color: #fff;
}


.welcome-p {
    color: #fff;
}

.welcome-p h1,
.welcome-p button {
    text-transform: uppercase;
    font-weight: 600;
}

.welcome-p p {
    text-transform: capitalize;
}

.welcome-p button {
    background-color: #fff;
    border: none;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
}


/* Produtos */

.product-section-p {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin: 50px 0;
}

.product-section-p h5 {
    font-size: 1.2rem;
}

.product-section-p .product-card-p {
    display: flex;
    background-color: #ffffff;
    height: 400px;
    width: 235px;
    padding: 15px;
    border-radius: 5px;
    border: none;
    transition: all 0.3s ease-in-out;
    flex-direction: column;
    justify-content: space-between;
}

.img-product-card{
    height: 200px;
    display: flex;
    align-items: center;
}

.product-card-p .badge {
    position: absolute;
    top: 10px;
    right: 10px;
}

.btn-add-cart-p {
    background-color: #0F3282;
    outline: none;
    border: none;
    border-radius: 50px;
    padding: 10px 14px;
    color: #fff;
}

.pre-text {
    color: #DB3D46;
}

/* Paginação */
.pagination .page-link {
    color: #0F3282;
    border: 1px solid #0F3282;
    margin: 0 4px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.pagination .page-link:hover {
    background-color: #0F3282;
    color: #fff;
}

.pagination .active .page-link {
    background-color: #0F3282;
    border-color: #0F3282;
    color: #fff;
}

.pagination .disabled .page-link {
    opacity: 0.4;
}


/* Serviços */
.services-menu {
    width: 31%;
    height: 300px;
}

.services-cards {
    width: auto;
    max-height: 500px;
}

.services-details {
    width: 100%;
}


.list-group-item {
  border-radius: 8px;
  border: none;
  font-weight: 500;
}

/* só o realmente ativo */
.list-group-item.active {
  background-color: #ffc107 !important;
  color: #000 !important;
  font-weight: bold;
}


.services-cards .midea-services {
    width: 450px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}

.services-details h4 {
    font-size: 1.4rem;
}










/* Loja Fisica e Orçamentos */

.bk-section-b-a-p {
    background-image: url('/img/front/textura-orcamento.png');
    background-size: cover;
    height: 70vh;
}

.section-b-a-p {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.form-map-section{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.adress-section-p {
    position: relative;
    display: block;
    width: 60%;
}

.adress-card-p{
    display: flex;
    justify-content: start;
    gap: 1rem;
}
.card-adress {
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 15px;
}

.budget-section-p {
    position: relative;
    display: block;
}

.card-budget-p {
    background-color: #0B1C48;
    border-radius: 0.5rem;
    height: 480px;
    width: 420px;
    padding: 30px;
    color: #fff;
}

.pin-map-p {
    color: #0F3282;
    font-size: 28px;
}


.google-review .stars i {
    color: #FFD700;
    /* dourado estilo Google */
    font-size: 1.2rem;
}


/* Produto */
.planos {
    background: #f8f9fa;
    padding: 3rem 0;
}

.plans-section-p {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.plans-section-p .plan-card-p {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* width: 350px; */
}

.name-price-p {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: 0;
    background-color: #ddd;
    border-radius: 0.5rem 0.5rem 0 0;
    height: auto;
    width: 230px;
    padding: 10px 0;
}

.name-price-highlight-p {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: 0;
    color: #fff;
    background-color: #00204D;
    border-radius: 0.5rem 0.5rem 0 0;
    height: auto;
    width: 230px;
    padding: 10px 0;
}

.plan-card-p h4,
.plan-card-p h3 {
    margin: 0px;
}

.plan-body-p {
    background-color: #fff;
    padding: 20px;
    border-radius: 0.5rem;
    width: 300px;
    box-shadow: #414141aa 2px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list .check {
    color: #404040;
    font-weight: 500;
}

.service-list .check i {
    color: #0F3282;
    /* azul escuro */
    font-size: 20px;
}

.service-list .uncheck {
    color: #999;
    text-decoration: line-through;
}

.service-list .uncheck i {
    color: #ccc;
    font-size: 18px;
}

.btn-plan-p {
    background-color: #0F3282;
    color: #fff;
    border-radius: 8px;
    padding: 5px 9px;
    outline: none;
    border: none;
}

/* Marcas */
.marcas {
    background-color: #fff;
    /* height: 30vh; */
    display: flex;
    align-items: center;
}

/* grade responsiva (quebra linha) */
.brand-logos{
  display:flex;
  flex-wrap:wrap;
  gap:18px 24px; /* row/column gap */
  justify-content:flex-end; /* fica do lado direito do título */
  max-width: 100%;
}

/* cada logo dentro de um “box” igual */
.brand-logo{
  width: 130px;
  height: 60px;
  display:grid;
  place-items:center;
  padding:8px 10px;
  background:#0f2550;
  border-radius:10px;
}

/* evita distorção; preenche no máximo o box */
.brand-logo img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;/* mantém proporção da logo */
  display:block;
  filter: grayscale(30%);
  transition: filter .2s, transform .2s;
}
.brand-logo:hover img{
  filter:none;
  transform: translateY(-1px);
}


/* Rodape / Footer */

.footer {
    background: url('/img/front/background-footer.png') no-repeat center center;
    background-size: cover;
    background-color: #001630;
    /* fallback */
    position: relative;
}

.footer-logo {
    height: 100px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 2px solid #DB3D46;
    display: inline-block;
    padding-bottom: 4px;
    margin-bottom: 15px;
}

.footer ul li a {
    display: inline-block;
    font-size: 0.95rem;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer ul li a:hover {
    transform: translateX(8px);
}

.footer ul li i {
    color: #DB3D46;
    margin-right: 6px;
}

.social-icon {
    background: #DB3D46;
    color: white;
    font-size: 20px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Específicos no hover */
.social-icon.facebook:hover {
    background-color: #1877F2;
    color: white;
}

.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
}

.social-icon.whatsapp:hover {
    background-color: #25D366;
    color: white;
}

.year-card-p {
    position: relative;
    bottom: 0;
    background: #DB3D46;
    padding: 15px 0;
    border-radius: 16px 16px 0 0;
    margin-top: 15px;
}

/* Busca */

.search-wrapper {
    position: relative;
}

.search-form {
    position: absolute;
    top: 100%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    width: 250px;
    padding-top: 0.5rem;
}

.search-form input {
    border-radius: 25px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border: 1px solid #ccc;
    background-color: #fff;
    width: 300px;
}

/* Classe que ativa a busca */
.search-form.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-seach-p {
    background-color: #DB3D46;
    height: 100%;
    color: #fff;
    border-radius: 5px;
    padding: 5px 9px;
    outline: none;
    border: none;
}


/* Carrinho */
.btn-add-cart-p.added i {
    color: green;
    transform: scale(1.2);
    transition: all 0.9s ease;
}

.btn-add-cart-p.added {
    animation: pulse 0.9s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        background-color: #d4edda;
    }

    50% {
        transform: scale(1.1);
        background-color: #c3e6cb;
    }

    100% {
        transform: scale(1);
        background-color: #d4edda;
    }
}

.cart-item.fade-out {
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s ease;
}

.cart-offcanvas {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    transition: right 0.3s ease-in-out;
    padding: 1.5rem;
    overflow-y: auto;
}

.cart-offcanvas.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1049;
    display: none;
}

.cart-overlay.active {
    display: block;
}

.cart-header {
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}


.cart-icon-wrapper {
    position: relative;
    display: inline-block;
}

.cart-count-badge {
    position: absolute;
    top: -11px;
    right: -13px;
    background-color: #DB3D46;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 3px 6px;
    border-radius: 999px;
    line-height: 1;
    min-width: 18px;
    text-align: center;
}


.cart-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 0.75rem;
}

.cart-item-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ddd;
}


/* Header Fixo Pagina de Busca */

.result-section-p {
    width: auto;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    /* margin: 0 20px; */
}

.nav-background-fixed-p {
    background-color: #00204D;
    height: 100px;
    width: 100%;
    transition: height 0.3s ease;
}

/* ---------- SIDEBAR ---------- */

.dk-filters {
    display: block;
}

.shop-wrap {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 20px;
    margin: 0 20px;
}

.facet-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px;
}

.facet-card h3 {
    text-decoration: underline;
    text-decoration-color: #0F3282;

}

.facet-title {
    font-weight: 600;
    margin-bottom: 8px;
}

.facet-list {
    height: auto;
    overflow: auto;
    padding-right: 4px;
}

.facet-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}

.facet-item label {
    flex: 1;
    margin: 0;
    cursor: pointer;
    font-size: 18px;

}

.facet-count {
    color: #545454;
    font-size: 18px;
    font-weight: 600;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.range-wrap {
    position: relative;
    height: 36px;
}

/* faixa cinza (base) */
.range-bg {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 6px;
    background: #ddd;
    border-radius: 3px;
    z-index: 1;
}

/* faixa azul (preenchimento entre os dois controles) */
.range-fill {
    position: absolute;
    top: 15px;
    height: 6px;
    background: #0F3282;
    border-radius: 3px;
    z-index: 2;
}

/* inputs (ranges) */
.range-wrap input[type=range] {
    position: absolute;
    left: 0;
    right: 0;
    top: 10px;
    width: 100%;
    pointer-events: none;
    -webkit-appearance: none;
    background: none;
    z-index: 3;
    /* fica acima das barras */
}

/* removemos track nativo */
.range-wrap input[type=range]::-webkit-slider-runnable-track {
    background: transparent;
}

.range-wrap input[type=range]::-moz-range-track {
    background: transparent;
}

/* bolinhas */
.range-wrap input[type=range]::-webkit-slider-thumb {
    pointer-events: auto;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0F3282;
    cursor: pointer;
    margin-top: -5px;
    position: relative;
    z-index: 4;
    /* bolinhas por cima de tudo */
}

.range-wrap input[type=range]::-moz-range-thumb {
    pointer-events: auto;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0F3282;
    cursor: pointer;
    position: relative;
    z-index: 4;
}



.btn-apply {
    background: #111827;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    font-weight: 600;
}

.btn-apply:hover {
    opacity: .9;
}

.recent-item {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.recent-item:last-child {
    border-bottom: none;
}

.recent-thumb {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
    background: #f8fafc;
}

/* ---------- RESULT GRID ---------- */
.results-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}



.price-wrap {
    display: flex;
    align-items: baseline;
    flex-direction: column;
    flex-wrap: wrap
}

.old-price {
    color: #6b7280;
    text-decoration: line-through;
    font-size: .95rem
}

.current-price {
    font-weight: 800;
    font-size: 21px;
}

.discount-pill {
    background: #0b3080;
    color: #fff;
    border-radius: 8px;
    padding: 2px 6px;
    font-size: .75rem
}


.product-card-p h3 {
    font-size: 1rem;
    line-height: 1.3;
    margin: .5rem 0;
    min-height: 2.6em;
}

.price {
    font-weight: 700;
    font-size: 1.05rem;
}

.brand-muted {
    color: #6b7280;
    font-size: .85rem;
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 1200px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .dk-filters {
        display: none;
    }

    .shop-wrap {
        grid-template-columns: 1fr;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bk-section-b-a-p{
        height: auto;
    }

    .adress-section-p{
        width: 100%;
    }
    .form-map-section{
        gap: 1.5rem;
    }

}

@media (max-width: 576px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .search-form input {
        width: 280px;
        transform: translateX(30%);
    }

    .plans-section-p .plan-card-p{
        width: 200px;
    }
}

@media (min-width: 0px) and (max-width: 570px) {
    .product-section-p .product-card-p{
        width: 180px;
    }

    .product-section-p h5{
        font-size: 1rem;
    }

    .product-card-p img{
        width: 100%;
    }

    .services-cards .midea-services{
        width: 300px;
    }
}

/* Filtros no topo */

.filter-btn-p{
    background-color: #0F3282;
    border-radius: 8px;
    padding: 10px 14px;
    outline: none;
    border: none;
    color: #fff;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f3f4f6;
    color: #111827;
    border-radius: 10px;
    padding: 8px 12px;
    cursor: pointer;
    user-select: none;
}

.pill input {
    display: none;
}

.pill.active {
    background: #0b3080;
    color: #fff;
}

/* azul escuro como no print */
.dropdown-like {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f3f4f6;
    padding: 6px 10px;
    border-radius: 10px;
}

/* Tags de sinalização Produtos */
.badges {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 6px;
    z-index: 2;
}

.badge-offer {
    background: #0b3080;
    color: #fff;
    padding: 4px 8px;
    font-size: 16px;
    border-radius: 8px;
    font-weight: 600;
}

.badge-low {
    background: #dc2626;
    color: #fff;
    padding: 4px 8px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
}


/* Menu hamburger Header-Fixed */
.hv-mm-panel{
    font-size: 16px;
}

.hv-mm-panel ul li {
    list-style: none;
}

.hv-mm-panel ul li a {
    text-decoration: none;
    color: #fff;
    text-transform: capitalize;
    transition: 0.3s;
}

.hv-mm-panel ul li a:hover{
    padding-left: 20px;
}



/* Paginas Detalhes dos Produtos */

.product-info {
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
}
.share-sec{
    position: relative;
}
.share-btn-p{
    background-color: #0F3282;
    border-radius: 8px;
    padding: 10px 14px;
    outline: none;
    border: none;
    color: #fff;
    height: fit-content;
}

.btn-edit-p{
    background-color: #0F3282;
    border-radius: 50px;
    padding: 10px 14px;
    outline: none;
    border: none;
    color: #fff;
    text-decoration: none;
}

.container-product-details {
    display: flex;
    justify-content: space-between;
    margin-top: 160px;
    gap: 20px;
}

.product-details {
    width: 50%;
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
}

.product-options {
    width: 50%;
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
}

.carousel-inner-p {
    display: flex;
    align-items: center;
    /* alinha vertical */
    justify-content: center;
    background-color: #fff;
    /* alinha horizontal */
    /* opcional: dá um fundo pra quando a imagem não ocupa tudo */
    /* border-radius: 15px; */
    height: 400px;
    /* altura fixa pra todas as imagens ficarem alinhadas */
}

.carousel-item img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    /* não distorce */
}

.hv-carousel {
    position: relative
}

.hv-carousel .hv-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: #0b3080;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
    color: #fff;
    font-size: 16px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hv-carousel .hv-btn:disabled {
    opacity: .35;
    cursor: not-allowed
}

.hv-carousel .hv-prev {
    left: -6px
}

.hv-carousel .hv-next {
    right: -6px
}

.hv-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 4px 6px 10px;
}

.hv-track::-webkit-scrollbar {
    display: none
}

.hv-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: min(92vw, 520px)
}


@media (min-width:992px) {
    .hv-item {
        width: 520px
    }
}

@media (max-width: 1000px) {
    .container-product-details {
        flex-wrap: wrap;
        margin-top: 120px;
    }

    .product-details {
        width: 100%;
    }

    .product-options {
        width: 100%;
    }
}


/* Quem somos */

.fachada{
    max-height: 300px;
}
