/* ==========================
   FONTES
   ========================== */
   @font-face {
    font-family: "Museo";
    src: url("fonts/MUSEO500-Regular.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Museo";
    src: url("fonts/MUSEO100-Regular.otf") format("opentype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "FordAntenna";
    src: url("fonts/ford-antenna-regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "FordAntenna";
    src: url("fonts/ford-antenna-black.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
  }
  
  /* ==========================
     RESET BÁSICO
     ========================== */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html,
  body {
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: "FordAntenna", system-ui, -apple-system, BlinkMacSystemFont,
      "Segoe UI", sans-serif;
    background: #050507;
    color: #f5f5f5;
    -webkit-font-smoothing: antialiased;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  button {
    font-family: inherit;
  }
  
  /* ==========================
     LAYOUT GERAL
     ========================== */
  .page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  .container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
  }
  
  /* ==========================
     HEADER / NAV
     ========================== */
  .header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(5, 5, 7, 0.95);
    backdrop-filter: blur(12px);
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    max-width: 1120px;
    margin: 0 auto;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .brand-logo-img {
    height: 44px;
    width: auto;
  }
  
  .nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
    /* sem text-transform aqui */
  }
  
  .nav a {
    position: relative;
    padding-bottom: 2px;
  }
  
  .nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #f6a200;
    transition: width 0.2s ease;
  }
  
  .nav a:hover::after {
    width: 100%;
  }
  
  .nav-cta {
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid #f6a200;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  
  .nav-cta span {
    font-size: 0.8em;
  }
  
  /* MENU MOBILE */
  .hamburger {
    display: none;
    background: transparent;
    border: none;
    padding: 6px;
    cursor: pointer;
  }
  
  .hamburger-line {
    display: block;
    width: 18px;
    height: 2px;
    background: #f5f5f5;
    margin: 3px 0;
  }
  
  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 8px 16px 16px;
    background: #050507;
  }
  
  .mobile-menu a {
    padding: 6px 0;
    border-bottom: 1px solid rgba(245, 245, 245, 0.06);
  }
  
  /* ==========================
     HERO
     ========================== */
  .hero {
    position: relative;
  }
  
  /* HERO – VÍDEO COMO BANNER DE TELA INTEIRA */
  .hero-photo-banner {
    position: relative;
    width: 100%;
    height: 100vh;        /* ocupa a altura da tela */
    max-height: 820px;    /* limite pra não ficar absurdo em telas muito altas */
    overflow: hidden;
    background: #000;
  }
  
  .hero-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;    /* cobre o banner, estilo cinema */
  }
  
  /* Conteúdo abaixo do vídeo */
  .hero-container {
    padding-top: 32px;
    padding-bottom: 40px;
  }
  
  .hero-main {
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
  }
  
  .hero-main-centered {
    text-align: left;
  }
  
  /* Badge centralizado */
  .hero-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
    margin-top: 16px;
  }
  
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(246, 162, 0, 0.7);
    background: rgba(5, 5, 7, 0.85);
  }
  
  .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f6a200;
  }
  
  .badge-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
  }
  
  /* TÍTULO HERO */
  .hero-title {
    font-family: "Museo", system-ui, sans-serif;
    font-weight: 500;
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0 0 16px;
  }
  
  .hero-highlight {
    background: linear-gradient(90deg, #ffffff, #f6a200);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  /* SUBTÍTULO */
  .hero-subtitle p {
    margin: 0 0 10px;
    font-size: 0.98rem;
    line-height: 1.5;
  }
  
  /* BOTÕES */
  .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 16px;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.9rem;
    text-transform: lowercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.18s ease;
  }
  
  .btn-outline {
    border-color: #f6a200;
    color: #f6a200;
    background: transparent;
  }
  
  .btn-outline:hover {
    background: #f6a200;
    color: #050507;
  }
  
  /* FRASE ASSINATURA */
  .hero-signature {
    margin-top: 10px;
    text-align: left;
  }
  
  .hero-signature-text {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    border: none; /* sem contorno */
    font-size: 0.85rem;
  }
  
  /* ==========================
     SEÇÕES GENÉRICAS
     ========================== */
  .home-gallery,
  .home-highlights,
  .home-featured {
    padding: 40px 0;
  }
  
  .section-heading {
    margin-bottom: 20px;
  }
  
  .section-heading-centered {
    text-align: center;
  }
  
  .section-kicker {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(245, 245, 245, 0.7);
    margin: 0 0 4px;
  }
  
  .section-title {
    font-family: "Museo", system-ui, sans-serif;
    font-weight: 500;
    font-size: 1.7rem;
    margin: 0 0 8px;
    text-transform: none;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
    color: rgba(245, 245, 245, 0.88);
    margin: 0;
  }
  
  .section-subtitle-centered {
    max-width: 640px;
    margin: 0 auto;
  }
  
  /* ==========================
     GALERIA - MOMENTOS MALTESA
     ========================== */
  .home-gallery-carousel {
    position: relative;
    max-width: 1040px;
    margin: 24px auto 0;
  }
  
  /* Cada slide é uma imagem por vez */
  .home-gallery-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .home-gallery-slide.active {
    display: block;
    opacity: 1;
  }
  
  /* Foto inteira, sem crop */
  .home-gallery-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;  /* mantém o formato, sem cortar */
    border-radius: 16px;
  }
  
  /* Em telas maiores, mostramos menor e centralizado */
  @media (min-width: 900px) {
    .home-gallery-slide img {
      width: 40%;
      max-width: 600px;
      margin: 0 auto;
    }
  }
  
  /* ==========================
     GRID & CARDS
     ========================== */
  .grid {
    display: grid;
    gap: 20px;
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .home-highlights-grid {
    margin-top: 20px;
  }
  
  /* FEATURE CARD (Cervejas / Indústria / Bares) */
  .feature-card {
    background: #0c0c10;
    border-radius: 16px;
    padding: 16px 16px 18px;
    border: 1px solid rgba(246, 162, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .feature-card-header {
    margin-bottom: 4px;
  }
  
  .feature-card-kicker {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(245, 245, 245, 0.6);
    margin: 0 0 2px;
  }
  
  .feature-card-title {
    font-family: "Museo", system-ui, sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    margin: 0;
  }
  
  .feature-card-body {
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.88);
    margin: 0 0 8px;
  }
  
  .feature-card-link {
    margin-top: auto;
    font-size: 0.85rem;
    text-transform: lowercase;
    color: #f6a200;
  }
  
  /* ==========================
     RÓTULO EM DESTAQUE
     ========================== */
  .home-featured-card-wrapper {
    max-width: 880px;
    margin: 0 auto;
  }
  
  .hero-card {
    background: radial-gradient(circle at top left, #31220f 0%, #050507 55%);
    border-radius: 20px;
    padding: 18px 18px 20px;
    border: 1px solid rgba(246, 162, 0, 0.4);
  }
  
  .hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }
  
  .hero-card-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(245, 245, 245, 0.7);
  }
  
  .hero-card-pill {
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(246, 162, 0, 0.8);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
  }
  
  /* Layout interno da cerveja em destaque */
  .hero-beer {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 16px;
    align-items: center;
  }
  
  .hero-beer-info-title {
    font-family: "Museo", system-ui, sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
    margin: 0 0 6px;
  }
  
  .hero-beer-info-subtitle {
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.9);
    margin: 0 0 10px;
  }
  
  /* Tags */
  .hero-beer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
  }
  
  .tag {
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid rgba(246, 162, 0, 0.6);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  
  /* Stats ABV/IBU */
  .hero-beer-stats {
    display: flex;
    gap: 16px;
  }
  
  .hero-beer-stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(245, 245, 245, 0.6);
  }
  
  .hero-beer-stat-value {
    font-size: 1rem;
    font-weight: 500;
  }
  
  /* Foto da cerveja em destaque */
  .hero-beer-photo {
    display: flex;
    justify-content: center;
  }
  
  .hero-beer-photo img {
    max-height: 220px;
    width: auto;
  }
  
  /* ==========================
     CARDS GENÉRICOS (p/ outras páginas)
     ========================== */
  .card {
    background: #0c0c10;
    border-radius: 16px;
    padding: 14px 14px 16px;
    border: 1px solid rgba(246, 162, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .card-image {
    margin-bottom: 8px;
  }
  
  .card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
  }
  
  .card-title {
    font-family: "Museo", system-ui, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    margin: 0;
  }
  
  .card-meta {
    display: flex;
    gap: 10px;
    font-size: 0.75rem;
  }
  
  .card-meta-item-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(245, 245, 245, 0.6);
  }
  
  .card-meta-item-value {
    font-weight: 500;
  }
  
  .card-body {
    font-size: 0.9rem;
    color: rgba(245, 245, 245, 0.9);
    margin: 0;
  }
  
  /* ==========================
     BEER INTRO (p/ página Cervejas)
     ========================== */
  .beer-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
  }
  
  .section-image-wide img {
    border-radius: 18px;
  }
  
  /* ==========================
     FOOTER
     ========================== */
  .footer {
    margin-top: auto;
    border-top: 1px solid rgba(245, 245, 245, 0.08);
    padding: 16px 0 18px;
    font-size: 0.8rem;
    color: rgba(245, 245, 245, 0.7);
  }
  
  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  
  .footer-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .footer-links a {
    font-size: 0.8rem;
    color: rgba(245, 245, 245, 0.7);
  }
  
  /* ==========================
     RESPONSIVO
     ========================== */
  @media (max-width: 900px) {
    .hero-photo-banner {
      height: 70vh;
      max-height: 520px;
    }
  
    .hero-main {
      max-width: 100%;
    }
  
    .beer-intro {
      grid-template-columns: minmax(0, 1fr);
    }
  
    .hero-beer {
      grid-template-columns: minmax(0, 1fr);
    }
  
    .hero-beer-photo img {
      max-height: 180px;
    }
  }
  
  @media (max-width: 768px) {
    .nav {
      display: none;
    }
  
    .hamburger {
      display: block;
    }
  
    .hero-container {
      padding-inline: 16px;
    }
  
    .hero-title {
      font-size: 2.1rem;
    }
  
    .grid-3 {
      grid-template-columns: minmax(0, 1fr);
    }
  
    .footer-inner {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  
  /* ===== UNIDADES - CARDS EM COLUNA COM FOTO EM CIMA ===== */
  
  /* Garante que os cards fiquem em coluna, um embaixo do outro */
  .home-highlights-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  /* Cada card em coluna: foto em cima, textos abaixo */
  .home-highlights-grid .card {
    display: flex;
    flex-direction: column;
  }
  
  /* Centralizar a foto dentro do card */
  .home-highlights-grid .card-image {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .home-highlights-grid .card-image img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }
  
  /* (bloco duplicado mantido igual, não muda o resultado) */
  .home-highlights-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .home-highlights-grid .card {
    display: flex;
    flex-direction: column;
  }
  
  .home-highlights-grid .card-image {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .home-highlights-grid .card-image img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }
  
  /* ======================================================
     EVENTOS — AJUSTES DE LAYOUT
     ====================================================== */
  
  /* HERO de eventos: botão mais destacado e respiro melhor */
  .hero .hero-actions {
    margin-top: 1.75rem;
  }
  
  .hero .hero-cta {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
  }
  
  /* LISTAS DENTRO DOS CARDS ("O que oferecemos") */
  .card-meta-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0.75rem;
    font-size: 0.95rem;
    opacity: 0.9;
  }
  
  .card-meta-list li + li {
    margin-top: 0.25rem;
  }
  
  /* PASSO A PASSO - "Como funciona" */
  .steps {
    margin-top: 2.5rem;
  }
  
  .steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.5rem;
  }
  
  /* Mobile: passos em coluna */
  .step-item {
    background: #121019;
    border-radius: 16px;
    padding: 1.5rem;
  }
  
  .step-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  
  .step-body {
    font-size: 0.95rem;
    opacity: 0.9;
  }
  
  /* Desktop: passos em linha, tipo timeline */
  @media (min-width: 900px) {
    .steps-list {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
  
  /* GALERIA DE FOTOS */
  .gallery-grid {
    display: grid;
    gap: 1.5rem;
  }
  
  /* Mobile: uma coluna, Desktop: até 3 colunas */
  @media (min-width: 700px) {
    .gallery-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  
  .gallery-grid .card {
    padding: 0;              /* tira padding padrão dos cards aqui */
    background: transparent; /* galeria mais leve */
    box-shadow: none;
  }
  
  .gallery-grid .card-image img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
  }
  
  .gallery-grid .card-body {
    font-size: 0.95rem;
    margin-top: 0.5rem;
    opacity: 0.9;
  }
  
  /* SEÇÕES DE EVENTOS UM POUCO MAIS COMPACTAS */
  .home-highlights,
  .home-featured {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  
  .section-heading-centered {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* ======================================================
     EVENTOS — CARDS EM GRADE 2x2
     ====================================================== */
  
  .page-eventos .home-highlights-grid {
    display: grid;
    gap: 2rem;
  }
  
  /* Mobile: continua 1 por linha */
  @media (max-width: 899px) {
    .page-eventos .home-highlights-grid {
      grid-template-columns: minmax(0, 1fr);
    }
  }
  
  /* Desktop: 2 cards por linha */
  @media (min-width: 900px) {
    .page-eventos .home-highlights-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .page-eventos .home-highlights-grid .card {
      display: flex;
      flex-direction: column;
    }
  }
  
  /* ======================================================
     EVENTOS — HERO
     ====================================================== */
  
  .page-eventos .hero {
    background: #111016;
  }
  
  .page-eventos .hero-container {
    align-items: center;
  }
  
  .page-eventos .hero-main {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .page-eventos .hero-title {
    font-size: 2.2rem;
    line-height: 1.15;
    margin-bottom: 1rem;
  }
  
  @media (min-width: 900px) {
    .page-eventos .hero-title {
      font-size: 2.5rem;
    }
  }
  
  .page-eventos .hero-subtitle p {
    font-size: 1rem;
    opacity: 0.9;
  }
  
  .page-eventos .hero-actions {
    margin-top: 2rem;
  }
  
  .page-eventos .hero-cta {
    display: inline-block;
    padding: 0.95rem 2.1rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
  
  /* FOTO ABAIXO DO TÍTULO (hero-image-eventos) */
  .page-eventos .hero-image-eventos {
    margin-top: 2rem;
    border-radius: 20px;
    overflow: hidden; /* garante que a borda apareça */
  }
  
  .page-eventos .hero-image-eventos img {
    display: block;
    width: 100%;
    height: auto;
  }
  
  @media (min-width: 900px) {
    .page-eventos .hero-image-eventos {
      margin-top: 2.2rem;
    }
  }
  
  /* Ajuste geral de respiro nas seções da página de eventos */
  .page-eventos .home-highlights,
  .page-eventos .home-featured {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  
  /* ======================================================
     GRIDS DE CARDS (O que oferecemos / Tipos / Por que)
     ====================================================== */
  
  .page-eventos .home-highlights-grid {
    display: grid;
    gap: 2rem;
  }
  
  /* Mobile: 1 card por linha */
  @media (max-width: 899px) {
    .page-eventos .home-highlights-grid {
      grid-template-columns: minmax(0, 1fr);
    }
  }
  
  /* Desktop: 2 cards por linha (2x2, 2x3, etc.) */
  @media (min-width: 900px) {
    .page-eventos .home-highlights-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .page-eventos .home-highlights-grid .card {
      display: flex;
      flex-direction: column;
    }
  }
  
  /* Cards mais compactos */
  .page-eventos .home-highlights-grid .card {
    padding: 1.4rem 1.5rem;
    height: 100%;
  }
  
  .page-eventos .home-highlights-grid .card-title {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
  }
  
  .page-eventos .home-highlights-grid .card-body {
    font-size: 0.95rem;
    line-height: 1.45;
  }
  
  /* Listas internas ("card-meta-list") em O que oferecemos */
  .page-eventos .card-meta-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    opacity: 0.9;
  }
  
  .page-eventos .card-meta-list li + li {
    margin-top: 0.25rem;
  }
  
  /* ======================================================
     COMO FUNCIONA — PASSO A PASSO
     ====================================================== */
  
  .page-eventos .steps {
    margin-top: 2.5rem;
  }
  
  .page-eventos .steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.5rem;
  }
  
  /* Mobile: passos em coluna */
  .page-eventos .step-item {
    background: #121019;
    border-radius: 16px;
    padding: 1.5rem;
  }
  
  .page-eventos .step-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  
  .page-eventos .step-body {
    font-size: 0.95rem;
    opacity: 0.9;
  }
  
  /* Desktop: 4 passos em linha */
  @media (min-width: 900px) {
    .page-eventos .steps-list {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }
  
  /* ======================================================
     GALERIA DE FOTOS
     ====================================================== */
  
  .page-eventos .gallery-grid {
    display: grid;
    gap: 1.5rem;
  }
  
  /* Mobile: 1 por linha; Desktop: até 3 colunas */
  @media (min-width: 700px) {
    .page-eventos .gallery-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  
  /* Galeria mais leve visualmente */
  .page-eventos .gallery-grid .card {
    padding: 0;
    background: transparent;
    box-shadow: none;
  }
  
  .page-eventos .gallery-grid .card-image img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
  }
  
  .page-eventos .gallery-grid .card-body {
    font-size: 0.95rem;
    margin-top: 0.5rem;
    opacity: 0.9;
  }
  
  /* ======================================================
     DESTAQUE PARA "GRANDES EVENTOS"
     (5º card na seção "tipos de eventos")
     ====================================================== */
  
  /* "Tipos de eventos" é o 2º bloco .home-highlights da página */
  .page-eventos main .home-highlights:nth-of-type(2) .home-highlights-grid .card:last-child {
    background: linear-gradient(135deg, #201a2a, #15121f);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  /* ======================================================
     CTA FINAL
     ====================================================== */
  
  .page-eventos .home-featured:last-of-type {
    text-align: center;
  }
  
  .page-eventos .home-featured:last-of-type .hero-cta {
    margin-top: 1rem;
    padding: 0.95rem 2.4rem;
    border-radius: 999px;
    font-weight: 600;
  }
  
  /* ======================================================
     AJUSTE FINAL – CARDS DE EVENTOS NA PALHETA MALTESA
     ====================================================== */
  
  /* Garante que nenhum card de eventos fique com cara de azul */
  .page-eventos .card {
    background: #0c0c10;
    border-color: rgba(246, 162, 0, 0.2);
    color: rgba(245, 245, 245, 0.9);
  }
  
  /* Deixa o "grandes eventos" em destaque, mas dentro da palheta Maltesa */
  .page-eventos main .home-highlights:nth-of-type(2) .home-highlights-grid .card:last-child {
    background: radial-gradient(circle at top left, #31220f 0%, #050507 55%);
    border-color: rgba(246, 162, 0, 0.6);
  }
  

  /* ======================================================
   PÁGINAS CERVEJAS & INDÚSTRIA — HERO ALINHADO AO INDEX/BAR/EVENTOS
   ====================================================== */

.page-cervejas main > .home-highlights:first-of-type,
.page-industria main > section:first-of-type {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background: radial-gradient(circle at top left, #262235 0, #08070c 55%, #050308 100%);
}

.page-cervejas main > .home-highlights:first-of-type .section-heading,
.page-industria main > section:first-of-type .section-heading {
  margin-bottom: 1.5rem;
}

.page-cervejas main > .home-highlights:first-of-type .section-title,
.page-industria main > section:first-of-type .section-title {
  font-family: "Museo", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  background: linear-gradient(90deg, #ffffff, #f6a200);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-cervejas main > .home-highlights:first-of-type .section-subtitle,
.page-industria main > section:first-of-type .section-subtitle {
  font-size: 1rem;
  line-height: 1.6;
}

.page-cervejas main > .home-highlights:first-of-type .beer-intro,
.page-industria main > section:first-of-type .beer-intro {
  align-items: center;
  gap: 32px;
}

@media (max-width: 900px) {
  .page-cervejas main > .home-highlights:first-of-type,
  .page-industria main > section:first-of-type {
    padding-top: 2.8rem;
    padding-bottom: 3rem;
  }
}