/* Customizações específicas do cliente */

/* 1. Tamanho do logo ajustado */
.header-logo img {
    max-height: 70px !important;
    height: auto !important;
    width: auto !important;
}

/* 2. Remover efeito hover do logo */
.header-logo a {
    pointer-events: auto !important;
    transition: none !important;
}

.header-logo a:hover {
    opacity: 1 !important;
    transform: none !important;
}

.header-logo img {
    transition: none !important;
}

.header-logo img:hover {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

/* 3. Adicionar overlay escuro nas fotos do hero */
.hero-slider .hero-thumb1::after,
.hero-slider .hero-thumb2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5) !important;
    pointer-events: none;
    z-index: 1;
}

/* 4. Breadcrumbs com texto capitalizado (primeira letra maiúscula) */
.breadcumb-menu li,
.breadcumb-menu a {
    text-transform: capitalize !important;
}

/* 5. Remover border mais escuro do breadcrumb - usar tom único de cinza */
.breadcumb-menu li {
    border-color: transparent !important;
}

.breadcumb-menu li:after {
    color: rgba(255, 255, 255, 0.6) !important;
    border-color: transparent !important;
}

/* 6. Fonte dos botões com suporte a caracteres especiais */
.btn, a.btn, button.btn {
    font-family: 'Jost', sans-serif !important;
    font-feature-settings: normal !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 7. Remover shadow-text dos cards de eventos */
.shadow-text {
    display: none !important;
}

/* 8. Ajustar imagens dos eventos para cobrir todo o espaço */
.exhibition-card-thumb img,
.event-card-thumb img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
}

/* 9. Remover efeito do cursor personalizado */
.cursor,
.cursor-follower {
    display: none !important;
    pointer-events: none !important;
}


/* ============================================================
   HEADER TRANSPARENTE / SÓLIDO
   Sobrepõe os estilos do tema (style.css) com maior especificidade
   ============================================================ */

/* ----------------------------------------------------------
   1. Forçar o header a ficar SEMPRE fixo no topo
---------------------------------------------------------- */
body #site-header.nav-header,
body #site-header.nav-header .sticky-wrapper,
body #site-header.nav-header .menu-area {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
}

body #site-header.nav-header .sticky-wrapper {
    position: relative !important;
    top: auto !important;
}

/* ----------------------------------------------------------
   2. TRANSPARENTE — body.header-is-transparent
---------------------------------------------------------- */
body.header-is-transparent #site-header .header-top,
body.header-is-transparent #site-header .menu-area {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border-bottom: none !important;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

body.header-is-transparent #site-header .header-links ul li,
body.header-is-transparent #site-header .header-links ul li a,
body.header-is-transparent #site-header .header-links ul li i,
body.header-is-transparent #site-header .header-links ul li svg {
    color: rgba(255, 255, 255, 0.85) !important;
    fill: rgba(255, 255, 255, 0.85) !important;
}

body.header-is-transparent #site-header .main-menu > ul > li > a {
    color: #ffffff !important;
}

body.header-is-transparent #site-header .main-menu > ul > li > a:hover {
    color: #DBC89D !important;
}

body.header-is-transparent #site-header .menu-toggle {
    color: #ffffff !important;
}

body.header-is-transparent #site-header:not(.scrolled) .logo-white { display: block !important; }
body.header-is-transparent #site-header:not(.scrolled) .logo-color  { display: none  !important; }

body.header-is-transparent #site-header:not(.scrolled) .btn-agendar {
    background: #DBC89D !important;
    color: #402A1E !important;
    border: none !important;
    border-radius: 4px !important;
    box-shadow: none !important;
}

body.header-is-transparent #site-header:not(.scrolled) .btn-agendar:hover {
    background: #402A1E !important;
    color: #EDE6D5 !important;
}

/* ----------------------------------------------------------
   3. SCROLLED — classe .scrolled adicionada pelo nosso JS
---------------------------------------------------------- */
body #site-header.scrolled .header-top {
    background: #ffffff !important;
    border-bottom: 1px solid #EDE6D5 !important;
}

body #site-header.scrolled .menu-area {
    background: #ffffff !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08) !important;
}

body #site-header.scrolled .header-links ul li,
body #site-header.scrolled .header-links ul li a,
body #site-header.scrolled .header-links ul li i {
    color: #666 !important;
}

body #site-header.scrolled .header-links ul li svg path { fill: #666 !important; }

body #site-header.scrolled .main-menu > ul > li > a { color: #402A1E !important; }
body #site-header.scrolled .main-menu > ul > li > a:hover { color: #DBC89D !important; }
body #site-header.scrolled .menu-toggle { color: #402A1E !important; }

body #site-header.scrolled .logo-white { display: none  !important; }
body #site-header.scrolled .logo-color  { display: block !important; }

body #site-header.scrolled .btn-agendar {
    background: #402A1E !important;
    color: #EDE6D5 !important;
    border-radius: 4px !important;
}

body #site-header.scrolled .btn-agendar:hover {
    background: #DBC89D !important;
    color: #402A1E !important;
}

/* ----------------------------------------------------------
   4. SÓLIDO — body.header-is-solid (páginas internas)
---------------------------------------------------------- */
body.header-is-solid #site-header .header-top {
    background: #ffffff !important;
    border-bottom: 1px solid #EDE6D5 !important;
}

body.header-is-solid #site-header .menu-area {
    background: #ffffff !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08) !important;
}

body.header-is-solid #site-header .header-links ul li,
body.header-is-solid #site-header .header-links ul li a,
body.header-is-solid #site-header .header-links ul li i {
    color: #666 !important;
}

body.header-is-solid #site-header .main-menu > ul > li > a { color: #402A1E !important; }
body.header-is-solid #site-header .main-menu > ul > li > a:hover { color: #DBC89D !important; }
body.header-is-solid #site-header .menu-toggle { color: #402A1E !important; }

body.header-is-solid #site-header .logo-white { display: none  !important; }
body.header-is-solid #site-header .logo-color  { display: block !important; }

body.header-is-solid #site-header .btn-agendar {
    background: #402A1E !important;
    color: #EDE6D5 !important;
    border-radius: 4px !important;
}

body.header-is-solid #site-header .btn-agendar:hover {
    background: #DBC89D !important;
    color: #402A1E !important;
}

/* ----------------------------------------------------------
   5. NEUTRALIZAR o padding-top que o main.js injeta via JS
      no #smooth-wrapper (função e() do GSAP sticky):
         $("#smooth-wrapper").css("padding-top", alturaHeader+"px")
      
      O CSS !important sobrepõe o style inline do jQuery
      APENAS quando aplicado via stylesheet — não via .css().
      
      Por isso usamos um hack: o nosso JS (header.blade.php)
      faz reset ao padding-top após o main.js correr,
      E o CSS garante que não há flash inicial.
      
      Ver secção 8 — JS override no header.blade.php
---------------------------------------------------------- */
body.header-is-transparent #smooth-wrapper,
body.header-is-solid #smooth-wrapper {
    padding-top: 0 !important;
}

/* ----------------------------------------------------------
   6. Hero full-screen — top: 0 absoluto
---------------------------------------------------------- */
body.header-is-transparent .hero-fullscreen {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* ----------------------------------------------------------
   7. Breadcrumb páginas internas — compensa header fixo
      Ajustar --header-h se a altura real for diferente
---------------------------------------------------------- */
:root { --header-h: 130px; }

body.header-is-solid .breadcumb-wrapper {
    padding-top: var(--header-h) !important;
    box-sizing: border-box;
}

.fa, .fas {
    font-weight: 900;
    color: #FFF;
}