/* ==========================================================================
   FONTS E ESTILOS COMPLETO - BIOGRAFIA.CSS
   ========================================================================== */

@font-face {
  font-family: 'Lexend Giga';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url('assets/fonts/LexendGiga.woff2') format('woff2');
}
@font-face {
  font-family: 'Lexend Giga';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('assets/fonts/LexendGiga.woff2') format('woff2');
}
@font-face {
  font-family: 'Lexend Giga';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/LexendGiga.woff2') format('woff2');
}
@font-face {
  font-family: 'Lexend Giga';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/LexendGiga.woff2') format('woff2');
}

/* RESET E PADRÕES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* bloqueio download imagem */
img {
    -webkit-user-select: none;  
    -moz-user-select: none;     
    -ms-user-select: none;     
    user-select: none;          
    -webkit-user-drag: none;    
    user-drag: none;
    -webkit-touch-callout: none; 
}


body {
    background-color: #ffffff;
    font-family: 'Lexend Giga', sans-serif;
    font-weight: 200;
    color: #333;
    overflow-x: hidden;
}

/* NAVBAR FIXA E OCULTÁVEL */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    z-index: 5000;
    transition: transform 0.3s ease-in-out;
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

.header-left,
.header-center,
.header-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.header-center {
    justify-content: center;
}

.header-right {
    justify-content: flex-end;
}

#main-content,
.container-biografia,
.container-valores,
.container-quadros {
    padding-top: 120px;
}

.logo img {
    height: 100px;
    cursor: pointer;
}

/* MENU DESKTOP */
.menu {
    display: flex;
    gap: 20px;
}

.menu-mobile-header,
.menu-close-btn {
    display: none;
}

.menu a {
    text-decoration: none;
    color: #464646;
    font-family: 'Lexend Giga', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
}

.menu a:hover {
    color: #888888;
}

.whatsapp a svg {
    width: 22px;
    fill: #888;
}

.menu-toggle {
    display: none;
}

/* RESPONSIVO MOBILE NAVBAR */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 20px;
    }

    #main-content,
    .container-biografia,
    .container-valores,
    .container-quadros {
        padding-top: 80px;
    }

    .header-left,
    .header-center,
    .header-right {
        flex: 1;
    }

    .header-left {
        order: 1;
        justify-content: flex-start;
    }

    .header-center {
        order: 2;
        justify-content: center;
    }

    .header-right {
        order: 3;
        justify-content: flex-end;
    }

    .logo img {
        height: 44px;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
    }

    .menu-toggle span {
        width: 26px;
        height: 1.5px;
        background: #333;
    }

    .whatsapp a svg {
        width: 28px;
        height: 28px;
    }

    .menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: 0.4s ease;
        padding-top: 40px;
        overflow-y: auto;
    }

    .menu.active {
        left: 0;
    }

    .menu-mobile-header {
        display: block;
        margin-bottom: 30px;
    }

    .logo-mobile {
        height: 30px;
    }

    .menu a {
        margin: 12px 0;
        font-size: 14px;
    }

    .menu-close-btn {
        display: block;
        background: none;
        border: none;
        font-size: 40px;
        color: #999;
        margin-top: 40px;
        margin-bottom: 40px;
        cursor: pointer;
        font-family: 'Lexend Giga', sans-serif;
    }
}

/* TÍTULOS GERAIS */
.titulo-secao,
.titulo-pagina {
    text-align: center;
    font-family: 'Lexend Giga', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 13px;
    margin: 40px 0 20px;
    color: #999;
}

.divisor {
    border: 0;
    border-top: 1px solid #f2f2f2;
    margin: 40px 60px;
}

/* SLIDER GERAL */
.slider-wrapper {
    display: flex;
    align-items: stretch;
}

.slider-seta {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 16px;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
    line-height: 1;
    user-select: none;
    opacity: 0.35;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-seta svg {
    width: 18px;
    height: 18px;
    stroke: #333;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slider-seta:hover {
    opacity: 0.85;
}

@media (max-width: 768px) {
    .slider-seta {
        padding: 8px 10px;
    }
    .slider-seta svg {
        width: 14px;
        height: 14px;
    }
}

.slider-window {
    overflow: hidden;
    width: 100%;
    padding: 50px 0;
    background: none;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s ease-in-out;
    align-items: center;
    height: 480px;
}

.slider-track .foto-card {
    flex: 0 0 calc(25% - 15px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

@media (max-width: 1399px) {
    .slider-track .foto-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 1023px) {
    .slider-track .foto-card {
        flex: 0 0 calc(50% - 10px);
    }
    .slider-track {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .slider-window {
        padding: 20px 0;
    }
    .slider-track {
        height: auto;
        align-items: stretch;
    }
    .slider-track .foto-card {
        flex: 0 0 100%;
        height: auto;
        padding: 0;
        justify-content: flex-start;
    }
}

.slider-track .foto-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .slider-track .foto-card img {
        height: auto;
        max-height: calc(100vw - 60px);
        width: 100%;
        object-fit: contain;
    }
}

.slider-track .foto-card p.legenda,
.slider-track .foto-card .legenda {
    margin-top: 8px !important;
    margin-bottom: 0 !important;
    flex-shrink: 0;
}

.grid-fotos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    padding: 0 40px 60px;
}

.foto-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.foto-card img {
    width: 88%;
    height: auto;
    display: block;
    object-fit: contain;
    cursor: pointer;
}

.legenda {
    margin-top: 12px;
    font-family: 'Lexend Giga', sans-serif;
    font-weight: 200;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #777;
    text-align: center;
}

@media (max-width: 768px) {
    .grid-fotos {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 0 8px 30px;
    }

    .grid-fotos .foto-card img {
        width: 95%;
    }

    .grid-fotos .foto-card .legenda,
    .grid-fotos .foto-card p.legenda {
        margin-top: 6px;
        font-size: 9px;
    }
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: block;
}

.btn-fechar {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 40px;
    cursor: pointer;
    color: #333;
    font-family: 'Lexend Giga', sans-serif;
    user-select: none;
}

#slider-midia-track .foto-card img {
    cursor: zoom-in;
    transition: opacity 0.2s ease;
}

#slider-midia-track .foto-card img:hover {
    opacity: 0.9;
}

/* ==========================================================================
   BIOGRAFIA — DESKTOP
   ========================================================================== */
.secao-biografia {
    padding: 40px 60px 60px;
    background-color: #ffffff;
}

/* Título mobile oculto no desktop */
.bio-titulo-mobile {
    display: none;
}

/* Título desktop visível no desktop */
.bio-titulo-desktop {
    display: block;
}

.biografia-container {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.biografia-foto {
    flex: 0 0 42%;
    align-self: center;
}

.biografia-texto {
    flex: 1;
    text-align: justify;
}

.titulo-biografia {
    font-family: 'Lexend Giga', sans-serif;
    font-weight: 400;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #333;
}

/* Título "Saiu na Mídia" e "Reportagens" */
.titulo-biografia2 {
    font-family: 'Lexend Giga', sans-serif;
    font-weight: 400;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 30px 0 20px;
    color: #333;
    text-align: center;
}

.biografia-texto p {
    font-family: 'Lexend Giga', sans-serif;
    font-weight: 200;
    font-size: 13px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.biografia-foto {
    flex: 0 0 42%;
}

.biografia-foto img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #f9f9f9;
}

/* ==========================================================================
   BIOGRAFIA — MOBILE
   ========================================================================== */
@media (max-width: 768px) {

    /* Título mobile: sem padding excessivo */
    .bio-titulo-mobile {
        display: block;
        padding: 0 20px 10px 20px;
        margin: 0;
        text-align: center;
    }

    /* Título desktop some no mobile */
    .bio-titulo-desktop {
        display: none !important;
    }

    .secao-biografia {
        padding: 0 0 30px 0;
        margin-top: 0;
    }

    .secao-biografia > .bio-titulo-mobile {
        margin-top: 0;
        padding-top: 0;
    }

    .biografia-container {
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: center;
        width: 100%;
        padding: 0 20px;
    }

    .biografia-foto {
        order: 1;
        width: 70%;
        flex: 0 0 auto;
        align-self: center;
        margin: 0 auto;
    }

    .biografia-foto img {
        width: 100%;
        height: auto;
        display: block;
    }

    .biografia-texto {
        order: 2;
        width: 100%;
        text-align: left;
        padding-top: 20px;
    }

    .titulo-biografia {
        font-size: 18px;
        text-align: center;
    }
}

/* ==========================================================================
   SEÇÃO DUL7 FINE ART GALLERY
   ========================================================================== */
.secao-galeria-bio {
    padding: 0 60px 60px;
}

.galeria-bio-container {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.galeria-bio-slide {
    flex: 0 0 45%;
    min-width: 0;
}

.galeria-bio-window {
    padding: 0 !important;
    background: none !important;
}

.galeria-bio-track {
    height: auto !important;
    align-items: stretch !important;
}

.galeria-bio-track .foto-card {
    flex: 0 0 100%;
    height: auto;
}

.galeria-bio-track .foto-card img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block;
    cursor: pointer;
}

.galeria-bio-texto {
    flex: 1;
    min-width: 0;
}

.galeria-bio-texto p {
    font-family: 'Lexend Giga', sans-serif;
    font-weight: 200;
    font-size: 13px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.galeria-bio-texto a {
    text-decoration: none;
    color: #555;
    cursor: pointer;
}

@media (max-width: 768px) {
    /* Título mobile da galeria bio */
    .secao-galeria-bio > .bio-titulo-mobile {
        display: block;
        padding: 0 20px 15px 20px;
        text-align: center;
    }

    .secao-galeria-bio {
        padding: 0 0 40px 0;
    }

    .galeria-bio-container {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        padding: 0 20px;
    }

    .galeria-bio-slide {
        flex: 0 0 auto;
        width: 100%;
    }

    .galeria-bio-texto {
        width: 100%;
        text-align: left;
    }
}

/* ==========================================================================
   SEÇÃO MÍDIA E VÍDEOS
   ========================================================================== */
.secao-midia {
    padding: 0 60px 40px;
}

@media (max-width: 768px) {
    .secao-midia {
        padding: 0 0 30px 0;
    }

    .titulo-biografia2 {
        font-size: 18px;
        padding: 0 20px;
    }
}

.area-videos-biografia {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.video-grande-desktop {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px auto;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 4px;
    display: block;
}

.video-grande-desktop video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000000;
    display: block;
    object-fit: cover;
}

.grid-videos-biografia {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 0 !important;
}

.grid-videos-biografia .foto-card {
    background-color: #f5f5f5;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease;
    width: 100%;
    max-width: 100%;
}

.grid-videos-biografia .foto-card:hover {
    transform: translateY(-3px);
}

.grid-videos-biografia video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000000;
    display: block;
    object-fit: cover;
    pointer-events: none;
}

@media (max-width: 768px) {
    .area-videos-biografia {
        padding: 0 12px;
    }

    .video-grande-desktop {
        display: none !important;
    }

    /* Vídeos em coluna única, largura total */
    .grid-videos-biografia {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .grid-videos-biografia .foto-card {
        max-width: 100% !important;
        width: 100%;
        padding: 0;
        cursor: pointer;
        background: none;
        border-radius: 0;
    }

    .grid-videos-biografia video {
        pointer-events: auto !important;
        width: 100%;
        border-radius: 4px;
    }

    /* Quando o vídeo já tem controls ativos, ele mesmo gerencia o toque */
    .grid-videos-biografia .foto-card video[controls] {
        pointer-events: auto;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-geral {
    background-color: #333;
    color: #ffffff;
    padding: 40px 20px 20px 20px;
    margin-top: 60px;
    width: 100%;
    font-family: 'Lexend Giga', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: table;
    width: 100%;
    border-bottom: 1px solid #222222;
    padding-bottom: 30px;
}

.footer-bloco {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 25%;
}

.footer-logo-area {
    text-align: center;
}

.footer-logo {
    max-height: 65px;
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
}

.footer-link {
    text-decoration: none;
    color: #ffffff;
    display: inline-block;
    vertical-align: middle;
    transition: opacity 0.2s ease;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-icone {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 3px;
}

.footer-texto {
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
}

.footer-creditos {
    max-width: 1200px;
    margin: 20px auto 0 auto;
    text-align: center;
}

.footer-creditos p {
    font-size: 11px;
    color: #aaaaaa;
    font-weight: 200;
}

@media (max-width: 768px) {
    .footer-container {
        display: block;
        width: 100%;
        padding-bottom: 10px;
    }

    .footer-bloco {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-logo-area {
        text-align: center;
        max-width: 100%;
    }

    .footer-logo {
        max-height: 60px;
    }

    .footer-bloco:last-child {
        margin-bottom: 0;
    }
}