/* ============================================================
   OISHII — Modernização: Header, Footer, Animações
   ============================================================ */

/* ============ RESET / BODY ============ */
body { padding-top: 70px }

/* Margens laterais — reduz largura máxima do conteúdo + respiro lateral em telas pequenas */
.linha {
    max-width: 1100px !important;
    padding-left: 18px;
    padding-right: 18px;
}

/* Evita rolagem horizontal acidental em telas menores
   (não aplica no desktop p/ preservar position: sticky) */
@media screen and (max-width: 1023px) {
    html, body { max-width: 100%; overflow-x: hidden }
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: #0d0d0d;
    border-bottom: 2px solid transparent;
    transition: border-color 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
    border-bottom-color: #bf0703;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.navbar-container {
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    gap: 8px;
}

.navbar-logo { flex-shrink: 0 }

.navbar-logo img {
    height: 46px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s, opacity 0.3s;
}

.navbar-logo:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    gap: 0;
    flex-wrap: nowrap;
}

.navbar-nav li a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 8.8pt;
    font-weight: 600;
    padding: 7px 9px;
    border-radius: 5px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    display: block;
    position: relative;
    transition: color 0.3s, background 0.3s;
}

.navbar-nav li a::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 11px; right: 11px;
    height: 2px;
    background: #bf0703;
    transform: scaleX(0);
    transition: transform 0.3s;
    border-radius: 2px;
}

.navbar-nav li a:hover,
.navbar-nav li a.ativo { color: #ffdb00 }

.navbar-nav li a:hover::after,
.navbar-nav li a.ativo::after { transform: scaleX(1) }

.navbar-loja a {
    background: #bf0703 !important;
    color: #fff !important;
    border-radius: 25px !important;
    padding: 7px 16px !important;
}

.navbar-loja a::after { display: none !important }

.navbar-loja a:hover {
    background: #ffdb00 !important;
    color: #000 !important;
}

.navbar-social {
    display: flex;
    gap: 14px;
    padding-left: 12px;
    margin-left: 4px;
    flex-shrink: 0;
}

.navbar-social a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15pt;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    display: block;
}

.navbar-social a:hover {
    color: #ffdb00;
    transform: translateY(-2px);
}

/* ---- Hamburger ---- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 8px 9px;
    margin-left: 8px;
    flex-shrink: 0;
    transition: border-color 0.3s;
}

.hamburger:hover { border-color: #bf0703 }

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s, width 0.3s;
}

.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.hamburger.is-active span:nth-child(2) { opacity: 0; width: 0 }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }

/* ---- Botão de fechar do drawer (só no mobile) ---- */
.nav-close { display: none }

/* Deslize de entrada do menu mobile (só ao abrir; body já travado) */
@keyframes nav-slide-in {
    from { transform: translateX(100%) }
    to   { transform: translateX(0) }
}

/* ---- Mobile overlay ---- */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 998;
    backdrop-filter: blur(3px);
}

.nav-overlay.is-active { display: block }

/* ============ PAGE BANNER (páginas internas) ============ */
.page-banner {
    /* Mesma altura do banner da home (.home-hero): 300px fixos com cover,
       que preserva a proporção da imagem (não estica, apenas recorta). */
    min-height: 300px;
    background: linear-gradient(105deg, rgba(0,0,0,0.95) 35%, rgba(0,0,0,0.6) 100%), #0d0d0d;
    display: flex;
    align-items: center;
    padding: 70px 24px 56px;
    position: relative;
    overflow: hidden;
    /* Mesma transição de entrada do hero da home (fade + slide-up) */
    animation: pb-enter 0.75s ease both;
}

@keyframes pb-enter {
    from { opacity: 0; transform: translateY(35px) }
    to   { opacity: 1; transform: translateY(0) }
}

/* Imagem de fundo (quando a página define uma).
   cover = preenche todo o espaço, sem bordas (igual à home).
   A proporção é preservada; o excedente é recortado.
   center top prioriza o topo da imagem, garantindo que o título
   embutido apareça (o corte fica na base). */
.page-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

/* Escurecimento sobre a imagem para legibilidade (preto, igual à home) */
.page-banner.has-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(0,0,0,0.92) 35%, rgba(0,0,0,0.3) 100%),
        linear-gradient(0deg, rgba(0,0,0,0.55) 0%, transparent 60%);
}


.page-banner-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.page-banner-title {
    color: #fff;
    font-size: 40pt;
    margin: 14px 0 0;
    font-weight: 700;
    line-height: 1.05;
    text-transform: capitalize;
    letter-spacing: -0.5px;
}

.page-banner-sub {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12pt;
    line-height: 18pt;
    margin: 16px 0 0;
    max-width: 540px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 9.5pt;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb-nav a {
    color: #ffdb00;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb-nav a:hover { opacity: 0.75 }

.bc-sep { color: rgba(255, 255, 255, 0.3) }

/* Banner com arte CLARA: remove o filtro escuro para a imagem aparecer,
   e usa texto escuro para manter a legibilidade (mesmo layout dos demais). */
.page-banner--light { background: #f4f4f4; border-bottom: 1px solid #ececec }
.page-banner--light.has-bg::after { content: none }
.page-banner--light .page-banner-bg { background-position: center center }
.page-banner--light .page-banner-title { color: #1a1a1a }
.page-banner--light .page-banner-sub   { color: #555 }
.page-banner--light .breadcrumb-nav    { color: rgba(0, 0, 0, 0.5) }
.page-banner--light .breadcrumb-nav a  { color: #bf0703 }
.page-banner--light .bc-sep            { color: rgba(0, 0, 0, 0.25) }

/* ============ SCROLL REVEAL ============ */
/* Recorta o transbordo horizontal das animações de entrada (translateX)
   das seções. Feito no <main> (elemento normal) porque o overflow-x:hidden
   do body NÃO recorta esse transbordo de forma confiável no iOS Safari,
   o que causava rolagem lateral em telas menores. 'clip' não cria
   container de rolagem nem quebra position:sticky. */
main { overflow-x: clip }

main section {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

main section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-col {
    animation: footer-reveal 0.7s ease both;
}

.footer-col:nth-child(2) { animation-delay: 0.12s }
.footer-col:nth-child(3) { animation-delay: 0.24s }
.footer-col:nth-child(4) { animation-delay: 0.36s }

@keyframes footer-reveal {
    from { opacity: 0; transform: translateY(22px) }
    to   { opacity: 1; transform: translateY(0) }
}

/* ============ BTN RIPPLE ============ */
.btn-vejamais { overflow: hidden; position: relative }

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    transform: translate(-50%, -50%) scale(0);
    width: 180px; height: 180px;
    animation: ripple-anim 0.65s ease-out forwards;
    pointer-events: none;
}

@keyframes ripple-anim {
    to { transform: translate(-50%, -50%) scale(1); opacity: 0 }
}

/* ============ FOOTER ============ */
.site-footer {
    background: #111;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #bf0703 0%, #ffdb00 50%, #bf0703 100%);
}

.footer-main { padding: 70px 0 50px }

.footer-col { padding-bottom: 30px !important }

.footer-logo {
    height: 75px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 18px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 10.5pt !important;
    line-height: 16pt !important;
    margin-bottom: 22px !important;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.footer-social-icons a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13pt;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, transform 0.3s, border-color 0.3s;
}

.footer-social-icons a:hover {
    background: #bf0703;
    color: #fff;
    border-color: #bf0703;
    transform: translateY(-3px);
}

.footer-heading {
    color: #ffdb00 !important;
    font-size: 11pt;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 0 22px !important;
    padding: 0 0 12px !important;
    line-height: 1 !important;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 36px; height: 2px;
    background: #bf0703;
}

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

.footer-links li { margin-bottom: 9px }

.footer-links li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 10.5pt;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links li a::before {
    content: '›';
    color: #bf0703;
    font-size: 14pt;
    line-height: 0;
    transition: transform 0.3s;
}

.footer-links li a:hover {
    color: #ffdb00;
    padding-left: 4px;
}

.footer-links li a:hover::before { transform: translateX(3px) }

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

.footer-contact-list li {
    color: rgba(255, 255, 255, 0.55);
    font-size: 10.5pt;
    line-height: 15pt;
    margin-bottom: 13px;
    display: flex;
    gap: 9px;
}

.footer-contact-list li i {
    color: #bf0703;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-list li a:hover { color: #ffdb00 }

.footer-bottom {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 18px 0;
}

.footer-copy,
.footer-dev {
    color: rgba(255, 255, 255, 0.38) !important;
    font-size: 9.5pt !important;
    line-height: 14pt !important;
    margin: 0 !important;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
}

.footer-dev { text-align: right }

.footer-dev a {
    color: rgba(255, 219, 0, 0.65);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-dev a:hover { color: #ffdb00 }

/* ============ RESPONSIVE ============ */
@media screen and (max-width: 1100px) {
    .navbar-nav { gap: 0 }
    .navbar-nav li a { font-size: 8.5pt; padding: 6px 8px }
    .navbar-social { padding-left: 10px; gap: 10px }
    .navbar-social a { font-size: 13pt }
}

@media screen and (max-width: 900px) {
    .navbar-nav {
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: min(300px, 85vw);
        background: #111;
        z-index: 999;
        flex-direction: column;
        gap: 2px;
        padding: 85px 20px 30px;
        overflow-y: auto;
        /* Fechado: continua ancorado em right:0 (DENTRO da viewport), apenas
           oculto. Não desloca para fora da tela — evita rolagem lateral no
           celular, já que elementos position:fixed não são recortados pelo
           overflow-x:hidden do body. */
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        box-shadow: -6px 0 30px rgba(0, 0, 0, 0.5);
        margin: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.07);
    }

    .navbar-nav.is-open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        animation: nav-slide-in 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navbar-nav li a {
        font-size: 11pt;
        padding: 12px 16px;
        color: rgba(255, 255, 255, 0.85);
        border-radius: 8px;
        text-transform: none;
        font-weight: 600;
    }

    .navbar-nav li a::after { display: none }

    .navbar-nav li a:hover,
    .navbar-nav li a.ativo {
        background: rgba(191, 7, 3, 0.2);
        color: #ffdb00;
    }

    .navbar-loja {
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-loja a {
        border-radius: 8px !important;
        text-align: center;
        width: 100%;
    }

    .navbar-social { display: none }
    .hamburger { display: flex; margin-left: auto }   /* fixa no canto direito */

    /* Botão de fechar (X) no canto superior-esquerdo do painel */
    .nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 20px;
        left: 20px;
        width: 42px;
        height: 42px;
        background: none;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 8px;
        color: #fff;
        font-size: 17pt;
        line-height: 1;
        cursor: pointer;
        z-index: 2;
        transition: border-color 0.3s, color 0.3s;
    }
    .nav-close:hover { border-color: #bf0703; color: #ffdb00 }

    .footer-dev { text-align: left; margin-top: 4px !important }

    .footer-main { padding: 50px 0 30px }
}

@media screen and (max-width: 640px) {
    body { padding-top: 64px }

    .navbar-container { height: 64px; padding: 0 16px }

    .navbar-logo img { height: 38px }

    .page-banner { min-height: 220px; padding: 50px 16px 40px }

    .page-banner-title { font-size: 27pt }

    .page-banner-sub { font-size: 10.5pt; line-height: 16pt }

    .footer-col { padding-left: 16px !important; padding-right: 16px !important }
}

/* ============================================================
   HOME PAGE — SEÇÕES
   ============================================================ */

/* Labels de seção */
.sec-label {
    display: inline-block;
    background: rgba(191, 7, 3, 0.08);
    color: #bf0703;
    font-size: 8pt;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(191, 7, 3, 0.22);
    margin-bottom: 14px;
}

.sec-label-light {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
}

.home-h2 {
    color: #1a1a1a;
    font-size: 30pt;
    line-height: 34pt;
    margin: 6px 0 16px;
}

.home-h2 span { color: #bf0703 }

.home-h2-light { color: #fff }

/* ---- Hero ---- */
.home-hero {
    min-height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(0,0,0,0.92) 35%, rgba(0,0,0,0.3) 100%);
}

.home-hero-content {
    position: relative;
    z-index: 2;
    padding: 30px 0 30px 8%;
    max-width: 600px;
}

.home-hero-titulo {
    color: #fff;
    font-size: 34pt;
    line-height: 38pt;
    margin: 0 0 14px;
    font-weight: 700;
}

.home-hero-titulo strong { color: #ffdb00 }

.home-hero-content > p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 12pt;
    line-height: 19pt;
    margin-bottom: 32px !important;
    max-width: 480px;
}

.home-hero-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-link {
    color: rgba(255,255,255,0.8);
    font-size: 11pt;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s, gap 0.3s;
}

.btn-hero-link:hover { color: #ffdb00; gap: 12px }

.home-hero-produto {
    position: absolute;
    right: 5%;
    bottom: 0;
    height: 88%;
    max-height: 520px;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.5));
}

.home-hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 8pt;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    pointer-events: none;
}

.home-hero-scroll i {
    display: block;
    margin-top: 6px;
    animation: hero-bounce 1.6s ease-in-out infinite;
}

@keyframes hero-bounce {
    0%, 100% { transform: translateY(0) }
    50%       { transform: translateY(7px) }
}

/* ---- Destaques (cards + texto) ---- */
.home-pllx { padding: 80px 0; background: #fff }

.home-pllx-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* segundo card: imagem à direita */
.home-pllx-grid-rev { flex-direction: row-reverse }

.home-pllx-grid + .home-pllx-grid { margin-top: 60px }

.home-pllx-card {
    flex: 0 0 50%;
    height: 400px;                /* altura fixa: os dois cards ficam idênticos */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
    line-height: 0;
}

/* imagem preenche o card (recorta o excesso) — normaliza tamanhos diferentes */
.home-pllx-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

/* zoom suave da imagem no hover */
.home-pllx-card:hover .home-pllx-img { transform: scale(1.06) }

/* ---- Animação de entrada (desliza dos lados ao aparecer) ---- */
.home-pllx-card,
.home-pllx-txt {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.home-pllx-grid     .home-pllx-card { transform: translateX(-45px) }
.home-pllx-grid     .home-pllx-txt  { transform: translateX(45px) }
.home-pllx-grid-rev .home-pllx-card { transform: translateX(45px) }
.home-pllx-grid-rev .home-pllx-txt  { transform: translateX(-45px) }

.home-pllx.is-visible .home-pllx-card,
.home-pllx.is-visible .home-pllx-txt {
    opacity: 1;
    transform: translateX(0);
}

/* leve atraso no texto p/ a imagem entrar primeiro */
.home-pllx.is-visible .home-pllx-txt { transition-delay: 0.15s }

.home-pllx-txt { flex: 1 }

.home-pllx-txt p {
    color: #555;
    font-size: 11pt;
    line-height: 18pt;
    margin: 0 0 24px;
}

@media screen and (max-width: 900px) {
    .home-pllx { padding: 60px 0 }
    .home-pllx-grid,
    .home-pllx-grid-rev { flex-direction: column; gap: 30px }
    .home-pllx-card { flex-basis: auto; width: 100%; height: 300px }
}

/* ---- Separador entre seções ---- */
.sec-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 560px;
    margin: 0 auto;
    padding: 40px 24px;
}

.sec-divider::before,
.sec-divider::after {
    content: '';
    flex: 1;
    height: 2px;
    border-radius: 2px;
}

.sec-divider::before { background: linear-gradient(90deg, transparent, #e3e3e3) }
.sec-divider::after  { background: linear-gradient(90deg, #e3e3e3, transparent) }
.sec-divider i { color: #bf0703; font-size: 14pt }

@media screen and (max-width: 900px) {
    .sec-divider { padding: 28px 24px }
}

/* ---- Nossa História com vídeo ---- */
.home-historia {
    padding: 80px 0;
    background: #fff;
}

.home-historia-texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 32px !important;
}

.home-linha-vermelha {
    width: 52px;
    height: 4px;
    background: #bf0703;
    border-radius: 2px;
    margin-bottom: 20px;
}

.home-historia-texto p {
    color: #555;
    font-size: 11pt;
    line-height: 18pt;
    margin-bottom: 14px !important;
}

.home-stats {
    display: flex;
    gap: 20px;
    margin: 24px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.home-stat { text-align: center; flex: 1 }

.home-stat strong {
    display: block;
    font-size: 24pt;
    line-height: 26pt;
    font-weight: 700;
    color: #bf0703;
}

.home-stat span {
    font-size: 7.5pt;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.home-historia-btns {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 2px solid #bf0703;
    color: #bf0703;
    font-size: 10.5pt;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.btn-outline:hover { background: #bf0703; color: #fff }

.home-historia-video-col {
    display: flex;
    align-items: center;
    padding-left: 16px !important;
}

.home-historia-video {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.15);
}

.home-historia-video::before {
    content: '';
    display: block;
    padding-bottom: 56.25%;
}

.home-historia-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ---- Certificados (linhas alternadas) ---- */
.home-certificados {
    padding: 90px 0;
    background: #f8f8f8;
    text-align: center;
}

.home-cert-head { margin-bottom: 56px }
.home-certificados .home-h2 { margin: 8px 0 14px }

.home-cert-sub {
    color: #666;
    font-size: 11pt;
    line-height: 18pt;
    max-width: 600px;
    margin: 0 auto !important;
}

.home-cert-row {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 920px;
    margin: 0 auto 40px;
    padding: 0 24px;
}

.home-cert-row:last-child { margin-bottom: 0 }

/* Imagem no lado oposto na segunda linha */
.home-cert-row-rev { flex-direction: row-reverse }

.home-cert-badge {
    flex: 0 0 240px;
    height: 240px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-cert-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
}

.home-cert-badge img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.home-cert-txt { flex: 1; text-align: left }

.home-cert-tag {
    display: inline-block;
    background: rgba(191, 7, 3, 0.08);
    color: #bf0703;
    font-size: 8pt;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(191, 7, 3, 0.2);
    margin-bottom: 12px;
}

.home-cert-txt h3 {
    color: #1a1a1a;
    font-size: 18pt;
    font-weight: 700;
    margin: 0 0 12px;
}

.home-cert-txt p {
    color: #555;
    font-size: 10.5pt;
    line-height: 17.5pt;
    margin: 0;
    border-left: 3px solid #bf0703;
    padding-left: 18px;
}

/* ---- Vídeo ---- */
.home-video {
    padding: 80px 0;
    background: #111;
    text-align: center;
}

.home-video-header { margin-bottom: 36px }

.home-video-wrap {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
}

.home-video-wrap img {
    width: 100%;
    display: block;
    transition: transform 0.4s, filter 0.4s;
    filter: brightness(0.55);
}

.home-video-wrap:hover img {
    transform: scale(1.03);
    filter: brightness(0.35);
}

.home-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.home-video-play i {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(191, 7, 3, 0.92);
    color: #fff;
    font-size: 20pt;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    box-shadow: 0 0 0 14px rgba(191, 7, 3, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.home-video-wrap:hover .home-video-play i {
    transform: scale(1.12);
    box-shadow: 0 0 0 20px rgba(191, 7, 3, 0.15);
}

.home-video-wrap #video {
    width: 100%;
    display: block;
    border: none;
}

/* ---- Parceiros ---- */
.home-parceiros {
    background: #ffdb00;
    padding: 70px 0 40px;
    text-align: center;
}

.home-parceiros .home-h2 { color: #1a1a1a }

/* Carrossel ocupa toda a largura da tela (sem o limite do .linha) */
#galeria {
    width: 100% !important;
    max-width: 100% !important;
    position: relative;
    padding: 0;
    box-sizing: border-box;
}

/* estilo.css força height: 200px no .owl-carousel */
.home-parceiros .owl-carousel { height: auto !important }

/* Sem setas */
.home-parceiros .owl-nav { display: none !important }

/* Movimento contínuo e linear (loop infinito) */
.home-parceiros .owl-carousel .owl-stage { transition-timing-function: linear !important }

.carousel-fotos {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 170px !important;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    padding: 18px;
}

.carousel-fotos img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
}

/* ---- Linha de Produtos (3 colunas: img | texto | img) ---- */
.home-linha-produtos { background: #111 }

.hlp-header {
    text-align: center;
    padding: 70px 20px 40px;
}

.hlp-header .home-h2 { color: #fff; margin-bottom: 0 }

/* Banner contínuo: duas imagens lado a lado parecendo uma só */
.hlp-grid {
    position: relative;
    display: flex;
    gap: 32px;
    min-height: 500px;
    overflow: hidden;
}

.hlp-img-half {
    flex: 1;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

/* Cada metade cresce para fora (âncora no lado da emenda), evitando sobreposição */
.hlp-grid > .hlp-img-half:nth-of-type(1) { transform-origin: right center }
.hlp-grid > .hlp-img-half:nth-of-type(2) { transform-origin: left center }

.hlp-grid:hover .hlp-img-half { transform: scale(1.06) }

/* Overlay único cobrindo as duas imagens — unifica a iluminação */
.hlp-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 28%, rgba(0,0,0,0.15) 72%, rgba(0,0,0,0.55) 100%),
        linear-gradient(0deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.05) 60%);
    pointer-events: none;
}

/* Card flutuando no centro, cobrindo a emenda entre as duas imagens */
.hlp-centro {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    max-width: 88%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.62);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 44px 32px;
    text-align: center;
    gap: 18px;
}

.hlp-icon {
    color: #ffdb00;
    font-size: 26pt;
}

.hlp-centro > p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 10.5pt;
    line-height: 17pt;
    margin: 0 !important;
}

.hlp-centro-sep {
    width: 36px;
    height: 3px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 2px;
}

.hlp-catalogo {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 219, 0, 0.1);
    border: 1px solid rgba(255, 219, 0, 0.32);
    color: #ffdb00;
    font-size: 9.5pt;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    width: 100%;
    justify-content: center;
}

.hlp-catalogo:hover {
    background: #ffdb00;
    color: #000;
    transform: translateY(-2px);
}


/* ---- Ações Sociais ---- */
.home-acoes {
    padding: 90px 0;
    background: #fff;
    text-align: center;
}

.home-acoes-sub {
    color: #888;
    font-size: 11pt;
    line-height: 17pt;
    max-width: 580px;
    margin: 0 auto 48px !important;
}

.home-acao-card {
    display: block;
    text-decoration: none;
    padding: 36px 20px;
    border: 2px solid #eee;
    border-radius: 18px;
    margin-bottom: 24px;
    background: #fff;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.home-acao-card:hover {
    border-color: #bf0703;
    box-shadow: 0 10px 34px rgba(191, 7, 3, 0.1);
    transform: translateY(-5px);
}

.home-acao-card img {
    width: 100%;
    height: 90px;
    object-fit: contain;
    display: block;
    margin: 0 auto 14px;
    transition: transform 0.3s;
}

.home-acao-card:hover img { transform: scale(1.06) }

.home-acao-card span {
    display: block;
    color: #555;
    font-size: 10pt;
    font-weight: 600;
}

.home-acoes-btn {
    margin-top: 36px;
    text-align: center;
}

.home-acoes-btn .btn-vejamais { margin: 0 auto }

/* ============ RESPONSIVE HOME ============ */
@media screen and (max-width: 1100px) {
    .hlp-grid { min-height: 440px }
    .hlp-centro { width: 330px; padding: 38px 26px }
}

@media screen and (max-width: 1023px) {
    /* Hero */
    .home-hero-titulo { font-size: 34pt; line-height: 38pt }
    .home-hero-produto { height: 50%; right: 0 }

    /* Historia */
    .home-historia { padding: 60px 0 }
    .home-historia-texto { padding-right: 16px !important }
    .home-historia-video-col { padding-left: 0 !important; margin-top: 36px }

    /* Cert */
    .home-cert-row,
    .home-cert-row-rev { flex-direction: column; text-align: center; gap: 24px }
    .home-cert-txt { text-align: center }
    .home-cert-txt p { border-left: none; padding-left: 0 }
    .home-cert-badge { flex-basis: auto; width: 200px; height: 200px }

    /* Linha produtos */
    .hlp-grid { min-height: 400px }
    .hlp-centro { width: 88%; padding: 36px 26px }
}

@media screen and (max-width: 640px) {
    /* Hero */
    .home-hero { min-height: 220px }
    .home-hero-content { padding: 40px 16px 60px }
    .home-hero-titulo { font-size: 24pt; line-height: 28pt }
    .home-hero-content > p { font-size: 10.5pt }
    .home-hero-produto { display: none }
    .home-hero-btns { flex-direction: column; gap: 12px }
    .home-hero-btns .btn-vejamais,
    .home-hero-btns .btn-hero-link { width: 100%; justify-content: center; text-align: center }

    /* H2 */
    .home-h2 { font-size: 21pt; line-height: 25pt }

    /* Historia */
    .home-historia { padding: 50px 0 }
    .home-stats { gap: 10px }
    .home-stat strong { font-size: 20pt; line-height: 22pt }
    .home-historia-btns { flex-direction: column; gap: 10px }
    .home-historia-btns .btn-vejamais,
    .home-historia-btns .btn-outline { width: 100%; justify-content: center }

    /* Certificados */
    .home-certificados { padding: 50px 0 }

    /* Parceiros */
    .home-parceiros { padding: 50px 0 30px }

    /* Linha produtos */
    .hlp-header { padding: 50px 16px 28px }
    .hlp-grid { min-height: 360px }
    .hlp-centro { padding: 30px 22px; gap: 14px }

    /* Ações */
    .home-acoes { padding: 50px 0 }
}
