  /* =============================================
     CSS CUSTOM PROPERTIES
  ============================================= */
  :root {
    --vermelho-base: #b01a16;
    --vermelho-escuro: #8a1412;
    --vermelho-claro: #fe0908;
    --cinza-claro: #f7f7f7;
    --branco: #FFFFFF;
    --off-white: #fdf5f5;
    --cinza: #6d6d6d;
    --texto-escuro: #1A1A1A;
    --sombra: 0 8px 40px rgba(176, 26, 22, 0.12);
    --sombra-hover: 0 20px 60px rgba(176, 26, 22, 0.22);
    --font-titulo: 'Playfair Display', Georgia, serif;
    --font-corpo: 'Montserrat', sans-serif;
    --border-radius: 4px;
    --transicao: 0.3s ease;
  }

  /* =============================================
     RESET & BASE
  ============================================= */
  *, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
  }

  ::-webkit-scrollbar {
    width: 10px;
  }

  ::-webkit-scrollbar-track {
    background: var(--off-white);
  }

  ::-webkit-scrollbar-thumb {
    background: var(--vermelho-base);
    border-radius: 999px;
    border: 2px solid var(--off-white);
  }

  ::-webkit-scrollbar-thumb:hover {
    background: var(--vermelho-escuro);
  }

  /* Scrollbar - Firefox */
  html {
    scrollbar-width: thin;
    scrollbar-color: var(--vermelho-base) var(--off-white);
  }


  body {
    font-family: var(--font-corpo);
    color: var(--texto-escuro);
    background: var(--branco);
    overflow-x: hidden;
  }

  img { display: block; max-width: 100%; }

  a { text-decoration: none; color: inherit; }

  /* =============================================
     ANIMAÇÕES DE SCROLL (IntersectionObserver)
  ============================================= */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* =============================================
     UTILITÁRIOS
  ============================================= */
  .btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-corpo);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: background var(--transicao), transform var(--transicao), box-shadow var(--transicao);
  }

  .btn-ouro {
    width: fit-content;
    background: var(--vermelho-escuro);
    color: var(--branco);
  }
  .btn-ouro:hover {
    background: var(--vermelho-claro);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(176, 26, 22, 0.4);
  }

  .btn-outline-branco {
    background: var(--vermelho-base);
    color: var(--branco);
    border: 1.5px solid var(--vermelho-base);
    box-shadow: 0 12px 28px rgba(176, 26, 22, 0.22);
  }
  .btn-outline-branco:hover {
    background: var(--vermelho-claro);
    border-color: var(--vermelho-claro);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(176, 26, 22, 0.28);
  }

  .secao-titulo {
    font-family: var(--font-titulo);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--vermelho-base);
  }

  .secao-subtitulo {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--vermelho-claro);
    margin-bottom: 12px;
  }

  .secao-texto {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.85;
    color: var(--cinza);
  }

  /* =============================================
     TOP BAR
  ============================================= */
  .top-bar {
    background: var(--vermelho-base);
    padding: 10px 20px;
    text-align: center;
  }

  .top-bar p {
    color: var(--branco);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.04em;
  }

  .top-bar strong {
    color: var(--vermelho-claro);
    font-weight: 600;
  }

  /* =============================================
     HEADER
  ============================================= */
  .header {
    background: var(--branco);
    padding: 18px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(176, 26, 22, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(176, 26, 22, 0.09);
  }

  .logo {
    display: flex;
    cursor: pointer;
    align-items: center;
    gap: 12px;
  }

  .header-mascote {
    display: none;
  }

  .footer-logo img{
    cursor: pointer;
  }

  .logo-icone {
    width: 44px;
    height: 44px;
    background: var(--vermelho-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo-icone svg { width: 24px; height: 24px; fill: var(--vermelho-claro); }

  .logo-texto {
    display: flex;
    flex-direction: column;
  }

  .logo-nome {
    font-family: var(--font-titulo);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--vermelho-base);
    letter-spacing: 0.02em;
  }

  .logo-slogan {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--vermelho-claro);
  }

  .header-contatos {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .contato-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .contato-icone {
    width: 36px;
    height: 36px;
    background: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contato-icone svg { width: 20px; height: 20px; fill: var(--vermelho-base); }

  .contato-info { display: flex; flex-direction: column; }

  .contato-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cinza);
  }

  .contato-valor {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--vermelho-base);
  }

  /* =============================================
     HERO BANNER
  ============================================= */
  .hero {
    position: relative;
    height: 600px;
    display: grid;
    grid-template-columns: minmax(520px, 760px) minmax(500px, 640px);
    justify-content: center;
    align-items: center;
    gap: 0;
    overflow: hidden;
    background: var(--branco);
    border-bottom: 1px solid rgba(176,26,22,0.16);
    min-height: 690px;
    padding: 0px 28px 55px 60px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: var(--branco);
  }

  .hero-bg::after {
    content: none;
  }

  .hero-decorativo {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    width: calc(100% + 120px);
    min-height: 560px;
    z-index: 4;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 12px 0 0;
    margin-left: -150px;
    pointer-events: none;
  }

  .hero-decorativo::before {
    content: none;
  }

  .hero-decorativo::after {
    content: none;
  }

  .hero-mascote {
    position: relative;
    z-index: 3;
    width: clamp(660px, 55vw, 880px);
    height: auto;
    max-height: 760px;
    object-fit: contain;
    object-position: bottom center;
    transform: translateX(0px) translateY(15px);
    filter: drop-shadow(0 26px 32px rgba(80, 10, 8, 0.16));
  }

  .hero-decorativo picture {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .hero-decorativo picture::before {
    content: '';
    position: absolute;
    z-index: -1;
    left: 0;
    top: 22%;
    width: 72%;
    height: 66%;
    background:
      radial-gradient(ellipse at 54% 58%, rgba(254,9,8,0.2) 0%, rgba(254,9,8,0.11) 34%, rgba(176,26,22,0.045) 58%, transparent 76%);
    filter: blur(22px);
    pointer-events: none;
  }

  .hero-premio {
    position: absolute;
    z-index: 5;
    right: 10px;
    top: 130px;
    width: 170px;
    height: auto;
    filter: drop-shadow(0 14px 20px rgba(80, 10, 8, 0.12));
    pointer-events: none;
  }

  .hero-premio-box {
    position: absolute;
    z-index: 5;
    right: 10px;
    top: 130px;
    width: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
  }

  .hero-premio-box .hero-premio {
    position: static;
    width: 170px;
  }

  .hero-premio-linha {
    width: 170px;
    height: 1px;
    margin: 20px 0 20px;
    background: rgba(138,20,18,0.38);
  }

  .hero-premio-texto {
    max-width: 170px;
    font-size: 0.66rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
    color: var(--vermelho-escuro);
  }

  .hero-conteudo {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    z-index: 3;
    max-width: 760px;
    padding: 0;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(254,9,8,0.08);
    border: 1px solid rgba(176,26,22,0.13);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
    box-shadow: 0 8px 22px rgba(176,26,22,0.08);
  }

  .hero-badge span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--vermelho-base);
  }

  .hero-titulo {
    font-family: var(--font-titulo);
    font-size: clamp(3.45rem, 5vw, 4.6rem);
    font-weight: 700;
    line-height: 0.98;
    color: var(--vermelho-base);
    margin-bottom: 20px;
  }

  .hero-titulo em {
    color: var(--vermelho-claro);
    font-style: italic;
  }

  .hero-subtitulo {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.72;
    color: var(--cinza);
    margin-bottom: 22px;
    max-width: 540px;
  }

  .hero-acoes {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 18px;
  }

  .hero-botoes {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-selos {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    z-index: 2;
    margin-top: 0;
  }

  .selo {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(176,26,22,0.1);
    padding: 12px 16px;
    border-radius: var(--border-radius);
    box-shadow: 0 12px 30px rgba(176,26,22,0.1);
  }

  .selo-num {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--vermelho-base);
  }

  .selo-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--vermelho-base);
    stroke: var(--vermelho-base);
  }

  .selo-txt {
    font-size: 0.75rem;
    font-weight: 500;
    color: #555;
    line-height: 1.4;
    max-width: 120px;
  }

  .hero-microcopy {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    margin-bottom: 0;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--cinza);
  }

  .hero-microcopy::before {
    content: none;
  }

  .hero-microcopy svg {
    width: 24px;
    height: 24px;
    stroke: var(--vermelho-escuro);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
  }


  /* =============================================
     FAIXA DE DIFERENCIAIS
  ============================================= */
  .diferenciais-faixa {
    background: var(--branco);
    border-bottom: 1px solid rgba(176,26,22,0.1);
    box-shadow: 0 2px 16px rgba(176,26,22,0.06);
  }

  .diferenciais-faixa-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .diferencial-bloco {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 36px;
    flex: 1;
    justify-content: center;
    transition: background var(--transicao);
  }

  .diferencial-bloco svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    fill: var(--vermelho-base);
  }

  .diferencial-bloco-texto {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .diferencial-bloco-texto strong {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--vermelho-base);
  }

  .diferencial-bloco-texto span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--cinza);
  }

  .diferencial-faixa-divisor {
    width: 1px;
    height: 40px;
    background: rgba(176,26,22,0.12);
    flex-shrink: 0;
  }

  /* =============================================
     CATEGORIAS / PRODUTOS
  ============================================= */
  .categorias {
    padding: 100px 60px;
    background: var(--branco);
  }

  .categorias-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .categorias-header .secao-titulo { margin-bottom: 16px; }

  .categorias-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .card-produto {
    position: relative;
    height: 420px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transicao), box-shadow var(--transicao);
  }

  .card-produto:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra-hover);
  }

  .card-produto-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
  }

  .card-produto:hover .card-produto-bg {
    transform: scale(1.06);
  }

  .card-produto-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(80,10,8,0.9) 0%, rgba(80,10,8,0.3) 55%, transparent 100%);
  }

  .card-produto-conteudo {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 30px;
    z-index: 2;
  }

  .card-produto-marca {
    font-size: 0.68rem;
    font-weight: bold;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cinza-claro);
    margin-bottom: 8px;
  }

  .card-produto-nome {
    font-family: var(--font-titulo);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .card-produto-desc {
    font-size: 0.86rem;
    line-height: 1.4em;
    font-weight: bold;
    color: var(--cinza-claro);
    margin-bottom: 20px;
  }

  .card-produto-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--vermelho-escuro);
    color: var(--branco);
    padding: 10px 22px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    transition: background var(--transicao), transform var(--transicao);
  }

  .card-produto-btn:hover {
    background: var(--vermelho-claro);
    transform: translateX(4px);
  }

  /* =============================================
     INSTITUCIONAL 1 — A LOJA
  ============================================= */
  .institucional-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
  }

  .inst-imagem {
    position: relative;
    overflow: hidden;
    min-height: 400px;
  }

  .inst-imagem img,
  .inst-imagem-bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
  }

  .inst-imagem:hover .inst-imagem-bg {
    transform: scale(1.04);
  }

  .inst-imagem.castor {
    position: relative;
    overflow: hidden;
    min-height: 535px;
    background-color: #fff7e8;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .inst-imagem-bg.imagem-castor {
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 2;
    transition: transform 0.8s ease;
  }

  .inst-imagem.castor::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.08);
    opacity: 0.50;
    z-index: 1;
  }

  .inst-texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 70px;
    background: var(--branco);
  }

  .inst-texto .secao-titulo { margin-bottom: 20px; }
  .inst-texto .secao-texto { margin-bottom: 32px; }

  .inst-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
  }

  .inst-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--texto-escuro);
  }

  .inst-feature-dot {
    width: 8px;
    height: 8px;
    background: var(--vermelho-claro);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* =============================================
     INSTITUCIONAL 2 — DIFERENCIAIS
  ============================================= */
  .institucional-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
  }

.logo-img {
  width: 130px;
  height: auto;
}

  .header {
    height: 100px; /* antes devia estar ~70/80 */
  }

  .selo.reveal svg{
    fill: var(--vermelho-escuro);
    width: 24px;
    height: 24px;
  }

  .inst-dark {
    background: var(--vermelho-escuro);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 70px;
    position: relative;
    overflow: hidden;
  }

  .inst-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(254,9,8,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .inst-dark .secao-subtitulo { color: var(--cinza-claro); }
  .inst-dark .secao-titulo { color: var(--branco); margin-bottom: 20px; }
  .inst-dark .secao-texto { color: var(--cinza-claro); margin-bottom: 36px; }

  .inst-dark-lista {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  .diferencial-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .diferencial-num {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--branco);
    line-height: 1;
  }

  .btn.btn-ouro.reveal.reveal-delay-3.visible.conhecer-modelos {
    background: var(--cinza-claro);
    color: var(--vermelho-escuro);
  }

  .btn.btn-ouro.reveal.reveal-delay-3.visible.conhecer-modelos:hover {
    background: var(--vermelho-claro);
    color: var(--branco);
  }

  .diferencial-txt {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
  }

  /* =============================================
     SEÇÃO DE VÍDEO
  ============================================= */
  .video-secao {
    background: var(--cinza-claro);
    padding: 100px 60px;
  }

  .video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
  }

  .video-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    box-shadow: var(--sombra);
  }

  .video-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1585412727339-54e4bae3bbf9?w=800&q=80') center/cover;
    transition: transform 0.5s ease;
  }

  .video-placeholder:hover .video-bg { transform: scale(1.04); }

  .video-overlay-dark {
    position: absolute;
    inset: 0;
    background: rgba(80,10,8,0.45);
  }

  .video-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 72px; height: 72px;
    background: rgba(255,255,255,0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transicao), background var(--transicao);
  }

  .video-placeholder:hover .video-play {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--vermelho-claro);
  }

  .video-play svg { width: 28px; height: 28px; fill: var(--vermelho-base); margin-left: 4px; fill: var(--vermelho-base); }
  .video-placeholder:hover .video-play svg { fill: var(--branco); }

  .video-texto .secao-titulo { margin-bottom: 20px; }
  .video-texto .secao-texto { margin-bottom: 32px; }

  .video-stats {
    display: flex;
    gap: 32px;
    padding-top: 28px;
  }

  .video-stat-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vermelho-base);
  }

  .video-stat-txt {
    font-size: 0.75rem;
    color: var(--cinza);
    font-weight: 500;
    margin-top: 2px;
  }

  /* =============================================
     MARCAS
  ============================================= */
  .marcas {
    padding: 80px 60px;
    background: var(--branco);
    text-align: center;
  }

  .marcas .secao-titulo { margin-bottom: 50px; }

  .marcas-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    align-items: center;
  }

  .marca-item {
    padding: 22px 16px;
    border: 1px solid rgba(176,26,22,0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transicao), box-shadow var(--transicao), transform var(--transicao);
    cursor: default;
  }

  .marca-item:hover {
    border-color: var(--vermelho-claro);
    box-shadow: 0 4px 20px rgba(176,26,22,0.15);
    transform: translateY(-4px);
  }

  .marca-nome {
    font-family: var(--font-titulo);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--vermelho-base);
    text-align: center;
    line-height: 1.3;
  }

  /* =============================================
     DEPOIMENTOS
  ============================================= */
  .depoimentos {
    background: #700101;
    padding: 100px 60px;
  }

  .depoimentos-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .depoimentos-header .secao-titulo { color: var(--branco); margin-bottom: 12px; }
  .depoimentos-header .secao-texto { color: rgba(255,255,255,0.5); }

  .depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .card-depoimento {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 32px;
    transition: background var(--transicao), transform var(--transicao), box-shadow var(--transicao);
  }

  .card-depoimento:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  }

  .dep-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
  }

  .dep-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-titulo);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--branco);
    flex-shrink: 0;
  }

  .dep-info { flex: 1; }

  .dep-nome {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--branco);
    margin-bottom: 4px;
  }

  .dep-data {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
  }

  .apenasMobile {
    display: none;
  }

  .mobileNao {
    display: block;
  }

  .dep-google {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.35);
  }

  .dep-estrelas {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
  }

  .dep-estrelas span {
    color: #FBBF24;
    font-size: 0.9rem;
  }

  .dep-texto {
    font-size: 0.86rem;
    line-height: 1.75;
    color: rgba(255,255,255,1);
    font-weight: 400;
  }

  /* =============================================
     LOCALIZAÇÃO
  ============================================= */
  .localizacao {
    padding: 100px 60px;
    background: var(--branco);
  }

  .loc-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .loc-header .secao-titulo { margin-bottom: 12px; }

  .loc-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
  }

  .loc-info { display: flex; flex-direction: column; gap: 28px; }

  .loc-unidade {
    background: var(--branco);
    padding: 28px;
    border-radius: 8px;
    border-left: 4px solid var(--vermelho-claro);
    box-shadow: 0 4px 20px rgba(176,26,22,0.2);
  }

  .loc-unidade-titulo {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--vermelho-claro);
    margin-bottom: 10px;
  }

  .loc-unidade-end {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--vermelho-base);
    margin-bottom: 6px;
    line-height: 1.4;
  }

  .loc-unidade-tel {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--cinza);
  }

  .loc-horario {
    font-size: 0.86rem;
    color: var(--cinza);
    margin-top: 10px;
    font-weight: 600;
  }

  .loc-mapa {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--sombra);
    height: 400px;
  }

  .loc-mapa iframe {
    width: 100%; height: 100%;
    border: none;
  }

  /* =============================================
     FOOTER
  ============================================= */
  .footer {
    background: #700101;
    padding: 80px 60px 40px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
  }

  .footer-logo .logo-nome { color: var(--branco); font-size: 1.6rem; }
  .footer-logo .logo-slogan { color: var(--vermelho-claro); }

  .footer-desc {
    font-size: 0.86rem;
    line-height: 1.8;
    color: var(--branco);
    margin-top: 16px;
    font-weight: 400;
  }

  .footer-col-titulo {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--branco);
    margin-bottom: 22px;
    font-weight: bold;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    font-size: 0.86rem;
    color: var(--branco);
    font-weight: 400;
    transition: color var(--transicao), padding-left var(--transicao);
  }

  .footer-links a:hover {
    padding-left: 6px;
  }

  .footer-contato-item {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    align-items: center;
    transition: padding-left var(--transicao);
  }

  .footer-contato-item:hover {
    padding-left: 6px;
  }

  .footer-contato-item svg {
    width: 20px;
    height: 20px;
    fill: var(--branco);
    flex-shrink: 0;
    margin-top: 3px;
  }

  .footer-contato-item span {
    font-size: 0.86rem;
    color: var(--branco);
    font-weight: 400;
    line-height: 1.5;
  }

  .footer-contato-item a {
    color: var(--branco);
    font-size: 0.86rem;
    font-weight: 400;
    line-height: 1.5;
    transition: color var(--transicao);
  }

  .footer-contato-item a:hover {
    color: var(--cinza-claro);
  }

  .footer-redes {
    display: flex;
    gap: 12px;
    margin-top: 8px;
  }

  .rede-btn {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transicao), transform var(--transicao);
  }

  .rede-btn svg { width: 18px; height: 18px; fill: var(--branco); }

  .rede-btn:hover {
    background: var(--vermelho-base);
    transform: translateY(-3px);
  }

  .rede-btn:hover svg { fill: var(--branco); }

  .footer-linha {
    border: none;
    border-top: 1px solid var(--branco);
    margin-bottom: 28px;
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-copy {
    font-size: 0.78rem;
    color: var(--branco);
  }

  .footer-copy a {
    text-decoration: underline;
  }

  .footer-copy strong { color: var(--branco); }

  /* =============================================
     WHATSAPP FLUTUANTE
  ============================================= */
  .whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 58px; height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    transition: transform var(--transicao);
    animation: pulso 2.5s infinite;
  }

  .whatsapp-float:hover {
    animation: none;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37,211,102,0.6);
  }

  .whatsapp-float svg { width: 30px; height: 30px; fill: var(--branco); }

  .voltar-topo {
    position: fixed;
    left: 32px;
    bottom: 32px;
    z-index: 998;
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.62);
    border: 1px solid rgba(176,26,22,0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(80,10,8,0.22), inset 0 1px 0 rgba(255,255,255,0.7);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    transition: background var(--transicao), transform var(--transicao), box-shadow var(--transicao), border-color var(--transicao);
  }

  .voltar-topo:hover {
    background: rgba(255,255,255,0.78);
    border-color: rgba(176,26,22,0.28);
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(80,10,8,0.28), inset 0 1px 0 rgba(255,255,255,0.45);
  }

  .voltar-topo svg {
    width: 22px;
    height: 22px;
    fill: var(--vermelho-escuro);
    filter: drop-shadow(0 1px 2px rgba(255,255,255,0.9));
  }

  @keyframes pulso {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 6px 40px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.1); }
  }

  /* =============================================
     RESPONSIVIDADE — MOBILE
  ============================================= */
  @media (max-width: 1280px) {
    .hero {
      grid-template-columns: minmax(470px, 700px) minmax(420px, 560px);
      padding-right: 16px;
    }

    .hero-decorativo {
      width: calc(100% + 130px);
      margin-left: -148px;
    }

    .hero-mascote {
      width: clamp(580px, 57vw, 760px);
      transform: translateX(-12px) translateY(10px);
    }
  }

  @media (max-width: 1024px) {
    .header {
      height: auto;
      padding: 12px 24px;
      display: grid;
      grid-template-columns: auto 42px minmax(150px, 1fr);
      column-gap: 8px;
      align-items: center;
      justify-content: stretch;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .inst-imagem {
      min-height: 650px;
    }

    .logo-img { width: 128px; }

    .header-mascote {
      display: block;
      width: 51px;
      height: 80px;
      object-fit: contain;
      object-position: bottom center;
      justify-self: start;
      align-self: end;
      filter: drop-shadow(0 8px 12px rgba(80, 10, 8, 0.12));
    }

    .header-contatos {
      display: grid;
      grid-template-columns: 28px max-content;
      align-items: center;
      justify-self: end;
      column-gap: 10px;
      row-gap: 10px;
      width: auto;
      min-width: 0;
    }

    .contato-item { display: contents; }
    .contato-label { display: none; }
    .contato-valor {
      font-size: 11px;
      line-height: 1;
      white-space: nowrap;
      font-weight: 700;
    }
    .contato-icone {
      width: 28px;
      height: 28px;
      padding: 6px;
    }

    .hero {
      height: auto;
      min-height: auto;
      width: 100%;
      grid-template-columns: 1fr;
      justify-content: center;
      justify-items: center;
      align-items: center;
      gap: 18px;
      padding: 48px 24px 32px;
      overflow: hidden;
    }
    .hero-conteudo {
      grid-column: 1;
      grid-row: 1;
      width: min(100%, 620px);
      max-width: 620px;
      margin: 0 auto;
      padding: 0;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .hero-acoes {
      order: 4;
      flex-direction: column;
      align-items: center;
      width: 100%;
      margin-bottom: 0;
    }
    .hero-botoes {
      justify-content: center;
      width: 100%;
    }
    .hero-botoes .btn {
      width: 100%;
      max-width: 320px;
      justify-content: center;
    }
    .hero-titulo {
      font-size: clamp(2.45rem, 8vw, 3.25rem);
      line-height: 1.02;
    }
    .hero-subtitulo { max-width: 100%; }
    .hero-decorativo {
      display: none;
    }
    .hero-selos {
      order: 5;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 9px;
      width: 100%;
      max-width: 320px;
      margin: 14px auto 0;
    }
    .selo {
      width: 100%;
      min-height: 54px;
      padding: 10px;
      gap: 8px;
      justify-content: center;
      border-radius: 8px;
      box-shadow: 0 8px 20px rgba(176,26,22,0.08);
    }
    .hero-selos .selo:last-child {
      grid-column: 1 / -1;
    }
    .selo svg,
    .selo-icon {
      width: 22px;
      height: 22px;
      flex: 0 0 22px;
    }
    .selo-txt {
      font-size: 0.64rem;
      line-height: 1.28;
      max-width: none;
      text-align: left;
    }
    .hero-microcopy {
      order: 6;
      width: 100%;
      max-width: 320px;
      justify-content: center;
      align-items: center;
      gap: 7px;
      margin: 12px auto 0;
      padding: 0 4px;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      font-size: 0.72rem;
      line-height: 1.35;
      text-align: center;
    }
    .hero-microcopy svg {
      width: 19px;
      height: 19px;
      flex: 0 0 19px;
    }

    .diferenciais-faixa {
      overflow: hidden;
      padding: 0 30px;
    }
    .diferenciais-faixa-inner {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      width: 100%;
      max-width: none;
      margin: 0 auto;
      padding: 0;
    }
    .diferencial-bloco {
      min-width: 0;
      min-height: 92px;
      justify-content: center;
      align-items: center;
      gap: 10px;
      padding: 14px 0;
      border-right: 1px solid rgba(176,26,22,0.08);
      border-bottom: 1px solid rgba(176,26,22,0.08);
    }
    .diferencial-bloco:nth-of-type(4n + 1) {
      padding-right: 14px;
    }
    .diferencial-bloco:nth-of-type(4n + 3) {
      border-right: 0;
      padding-left: 14px;
    }
    .diferencial-bloco svg {
      width: 26px;
      height: 26px;
      flex: 0 0 26px;
    }
    .diferencial-bloco-texto {
      min-width: 0;
    }
    .diferencial-bloco-texto strong {
      font-size: 0.65rem;
      line-height: 1.18;
      letter-spacing: 0.035em;
    }
    .diferencial-bloco-texto span {
      font-size: 0.68rem;
      line-height: 1.25;
    }
    .diferencial-faixa-divisor {
      display: none;
    }

    .categorias { padding: 70px 30px; }
    .categorias-grid { grid-template-columns: 1fr 1fr; }

    .institucional-1,
    .institucional-2 { grid-template-columns: 1fr; }

    .inst-texto { padding: 60px 40px; }
    .inst-dark { padding: 60px 40px; }

    .video-secao { padding: 70px 30px; }
    .video-grid { grid-template-columns: 1fr; gap: 40px; }

    .marcas { padding: 60px 30px; }
    .marcas-grid { grid-template-columns: repeat(3, 1fr); }

    .depoimentos { padding: 70px 30px; }
    .depoimentos-grid { grid-template-columns: 1fr; gap: 16px; }

    .localizacao { padding: 70px 30px; }
    .loc-grid { grid-template-columns: 1fr; }

    .institucional-2 .inst-imagem { order: -1; }

    .footer { padding: 60px 30px 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  }

  @media (max-width: 640px) {
    .apenasMobile {
      display: block;
    }

    .mobileNao {
      display: none;
    }
  }

  @media (max-width: 640px) {

    .header {
      height: auto;
      padding: 10px 14px;
      display: grid !important;
      grid-template-columns: auto 42px minmax(128px, 1fr);
      column-gap: 6px;
      align-items: center;
      justify-content: stretch;
    }

    .inst-imagem {
      min-height: 350px;
    }

    .logo-img {
        width: 120px;
    }

    .header-mascote {
        display: block;
        width: 45px;
        height: 70px;
        object-fit: contain;
        object-position: bottom center;
        justify-self: start;
        align-self: end;
        filter: drop-shadow(0 8px 12px rgba(80, 10, 8, 0.12));
    }

    .header-contatos {
        display: grid;
        grid-template-columns: 28px max-content;
        align-items: center;
        justify-self: end;
        column-gap: 10px;
        row-gap: 10px;
        width: auto !important;
        min-width: 0;
    }

    .contato-item {
        display: contents;
    }

    .contato-label {
        display: none !important; 
    }

    .contato-valor {
        font-size: 11px;
        line-height: 1;
        white-space: nowrap !important;
        font-weight: bold;
    }

    .contato-icone {
        width: 28px !important;
        height: 28px !important;
        padding: 6px !important;
    }

    .top-bar p { font-size: 0.7rem; }

    .header {
      padding: 10px 14px;
    }

    .header-contatos {
      grid-template-columns: 28px max-content;
      width: auto;
    }

    .hero {
      height: auto;
      min-height: auto;
      display: grid;
      grid-template-columns: 1fr;
      align-items: center;
      gap: 18px;
      padding: 42px 20px 28px;
      overflow: visible;
    }
    .hero-bg {
      background: var(--branco);
    }
    .hero-bg::after {
      content: none;
    }
    .hero-conteudo {
      grid-column: 1;
      grid-row: 1;
      padding: 0;
      max-width: none;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .hero-acoes {
      order: 4;
      flex-direction: column;
      align-items: center;
      width: 100%;
      margin-bottom: 0;
    }
    .hero-botoes {
      justify-content: center;
      width: 100%;
    }
    .hero-botoes .btn {
      width: 100%;
      max-width: 296px;
      justify-content: center;
    }
    .hero-titulo {
      font-size: clamp(2.45rem, 13vw, 3.25rem);
      line-height: 1.02;
    }
    .hero-subtitulo { max-width: 100%; }
    .hero-selos {
      order: 5;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 9px;
      width: 100%;
      max-width: 296px;
      margin: 14px auto 0;
    }
    .selo {
      width: 100%;
      min-height: 54px;
      padding: 10px;
      gap: 8px;
      border-radius: 8px;
      box-shadow: 0 8px 20px rgba(176,26,22,0.08);
    }
    .hero-selos .selo:last-child {
      grid-column: 1 / -1;
    }
    .selo svg,
    .selo-icon {
      width: 22px;
      height: 22px;
      flex: 0 0 22px;
    }
    .selo-num { font-size: 1.15rem; }
    .selo-txt {
      font-size: 0.64rem;
      line-height: 1.28;
      max-width: none;
      text-align: left;
    }
    .hero-microcopy {
      order: 6;
      width: 100%;
      max-width: 296px;
      justify-content: center;
      align-items: center;
      gap: 7px;
      margin: 12px auto 0;
      padding: 0 4px;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      font-size: 0.72rem;
      line-height: 1.35;
      text-align: center;
    }
    .hero-microcopy svg {
      width: 19px;
      height: 19px;
      flex: 0 0 19px;
    }
    .hero-decorativo {
      display: none;
    }
    .hero-decorativo::before {
      content: none;
    }
    .hero-decorativo::after {
      content: none;
    }
    .hero-decorativo picture::before {
      left: 6%;
      top: 20%;
      width: 72%;
      height: 66%;
      filter: blur(18px);
    }
    .hero-mascote {
      width: min(104vw, 470px);
      max-height: 500px;
      transform: none;
    }
    .hero-premio-box {
      right: 50%;
      top: 4px;
      transform: translateX(162px);
      width: 104px;
    }
    .hero-premio-box .hero-premio { width: 104px; }
    .hero-premio-linha { width: 58px; margin: 5px 0; }
    .hero-premio-texto { max-width: 92px; font-size: 0.46rem; }

    .diferenciais-faixa {
      padding: 0 20px;
      box-shadow: 0 -2px 18px rgba(176,26,22,0.04);
    }
    .diferenciais-faixa-inner {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0;
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      padding: 0;
      border: 0;
    }
    .diferencial-bloco {
      min-width: 0;
      min-height: 92px;
      justify-content: flex-start;
      align-items: center;
      gap: 9px;
      padding: 14px 0;
      border-right: 1px solid rgba(176,26,22,0.08);
      border-bottom: 1px solid rgba(176,26,22,0.08);
    }
    .diferencial-bloco:nth-of-type(4n + 1) {
      padding-right: 12px;
    }
    .diferencial-bloco:nth-of-type(4n + 3) {
      border-right: 0;
      padding-left: 12px;
    }
    .diferencial-bloco svg {
      width: 25px;
      height: 25px;
      flex: 0 0 25px;
    }
    .diferencial-bloco-texto {
      min-width: 0;
      gap: 3px;
    }
    .diferencial-bloco-texto strong {
      font-size: 0.63rem;
      line-height: 1.18;
      letter-spacing: 0.035em;
    }
    .diferencial-bloco-texto span {
      font-size: 0.66rem;
      line-height: 1.25;
    }
    .diferencial-faixa-divisor {
      display: none;
    }

    .categorias { padding: 60px 20px; }
    .categorias-grid { grid-template-columns: 1fr; }
    .card-produto { height: 360px; }

    .inst-texto,
    .inst-dark { padding: 50px 24px; }

    .inst-dark-lista { grid-template-columns: 1fr 1fr; gap: 12px; }

    .video-secao { padding: 60px 20px; }

    .marcas { padding: 50px 20px; }
    .marcas-grid { grid-template-columns: repeat(2, 1fr); }

    .depoimentos { padding: 60px 20px; }

    .localizacao { padding: 60px 20px; }
    .loc-mapa { height: 300px; }

    .footer { padding: 50px 20px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }

    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

    .whatsapp-float { right: 20px; bottom: 20px; width: 52px; height: 52px; }
    .voltar-topo { left: 20px; bottom: 20px; width: 44px; height: 44px; }
  }

  /* =============================================
     ESTILOS EXTRAIDOS DO HTML
  ============================================= */
  .card-produto-bg-cama-01 { background-image: url('../images/cama-01.jpeg'); }
  .card-produto-bg-cama-02 { background-image: url('../images/cama-02.jpeg'); }
  .card-produto-bg-cama-03 { background-image: url('../images/cama-03.jpeg'); }
  .inst-imagem-marca-premiada { background-image: url('../images/marca-premiada.png'); }
  .inst-imagem-marca-premiada-mobile { background-image: url('../images/marca-mais-premiada-mobile.png'); }
  .inst-imagem-pocket { background-image: url('../images/pocket.png'); }
  .inst-imagem-pocket-mobile { background-image: url('../images/pocket-mobile.png'); }
  .texto-branco { color: var(--branco); }
  .video-iframe { border-radius: inherit; display: block; }
  .marcas-grid-espacado { margin-top: 50px; }
  .depoimentos-subtitulo { color: var(--vermelho-claro); }
  .depoimentos-texto { color: rgba(255,255,255,1) !important; max-width: 500px !important; margin: 12px auto 0 !important; }
  .dep-avatar-mariana { background: linear-gradient(135deg,#b01a16,#fe0908); }
  .dep-avatar-roberto { background: linear-gradient(135deg,#8a1412,#fe0908); }
  .dep-avatar-ana { background: linear-gradient(135deg,#b01a16,#8a1412); }
  .footer-contato-link { color: rgba(255,255,255,0.55) !important; transition: color 0.3s !important; }
