/* ==========================================================================
   VALORES.CSS — PÁGINA DE VALORES | BRUNO DULCETTI
   ========================================================================== */

/* Fonte servida localmente */
@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 */
* {
    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
   ========================================================================== */
.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;
}

.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;
}

/* NAVBAR MOBILE */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 20px;
    }

    .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: 40px;
    }

    .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;
    }
}

/* ==========================================================================
   CONTAINER PRINCIPAL
   ========================================================================== */
.container-valores {
    padding-top: 120px;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .container-valores {
        padding-top: 80px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 40px;
    }
}

/* ==========================================================================
   TÍTULOS E DIVISOR
   ========================================================================== */
.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 0;
}

/* ==========================================================================
   SEÇÃO TRABALHO
   ========================================================================== */
.secao-trabalho {
    padding: 0 0 20px;
}

.texto-lorem {
    font-family: 'Lexend Giga', sans-serif;
    font-weight: 200;
    font-size: 13px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 30px;
}

.grid-trabalho {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.item-trabalho {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.item-trabalho img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.item-trabalho p {
    font-family: 'Lexend Giga', sans-serif;
    font-weight: 200;
    font-size: 12px;
    line-height: 1.6;
    color: #555;
    text-align: center;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .grid-trabalho {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================================================
   SEÇÃO PREÇOS
   ========================================================================== */
.secao-precos {
    padding: 0 0 20px;
}

.imagem-tabela {
    margin: 30px 0;
    text-align: center;
}

.imagem-tabela img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

/* ==========================================================================
   CONTATO FINAL E BOTÃO WHATSAPP
   ========================================================================== */
.contato-final {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    text-align: center;
}

.contato-final p {
    font-family: 'Lexend Giga', sans-serif;
    font-weight: 200;
    font-size: 13px;
    line-height: 1.8;
    color: #555;
    max-width: 500px;
}

.btn-whatsapp-horizontal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Lexend Giga', sans-serif;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 14px 40px;
    border-radius: 2px;
    transition: background-color 0.2s ease;
}

.btn-whatsapp-horizontal:hover {
    background-color: #555;
}

@media (max-width: 768px) {
    .contato-final p {
        font-size: 12px;
    }

    .btn-whatsapp-horizontal {
        width: 100%;
        padding: 14px 20px;
    }
}

/* ==========================================================================
   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;
    }
}