.elementor-76 .elementor-element.elementor-element-da1f23e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-6e94212 *//* ===============================================
   HEADER PINTO MACHADO - CSS SEPARADO
   Use este CSS em: Elementor > Custom CSS
   =============================================== */

/* VARIÁVEIS */
:root {
    --dourado: #D4AF37;
    --dourado-hover: #C9A961;
    --preto: #000000;
    --branco: #ffffff;
}

/* ===== HEADER ===== */
.pm-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pm-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* LOGO */
.pm-logo img {
    height: 50px;
    width: auto;
}

/* NAVEGAÇÃO DESKTOP */
.pm-nav {
    display: flex;
    align-items: center;
    gap: 45px;
}

.pm-nav-list {
    display: flex;
    list-style: none;
    gap: 45px;
    align-items: center;
}

.pm-nav-item {
    position: relative;
}

.pm-nav-link {
    color: var(--branco);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pm-nav-link:hover {
    color: var(--dourado);
}

/* Link HOME em dourado */
.pm-nav-item:first-child .pm-nav-link {
    color: var(--dourado);
}

/* Ícone dropdown */
.pm-nav-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.pm-nav-item:hover .pm-nav-link i {
    transform: rotate(180deg);
}

/* DROPDOWN */
.pm-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.98);
    min-width: 280px;
    padding: 20px 0;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.pm-nav-item:hover .pm-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pm-dropdown-item {
    list-style: none;
}

.pm-dropdown-link {
    display: block;
    padding: 12px 25px;
    color: var(--branco);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.pm-dropdown-link:hover {
    color: var(--dourado);
    background: rgba(212, 175, 55, 0.05);
    border-left-color: var(--dourado);
    padding-left: 30px;
}

/* BOTÃO CONTATO */
.pm-btn-contato {
    padding: 12px 30px;
    background-color: var(--dourado);
    color: var(--preto);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.pm-btn-contato:hover {
    background-color: var(--dourado-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* MENU MOBILE TOGGLE */
.pm-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.pm-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--branco);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.pm-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.pm-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.pm-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ESPAÇADOR (para conteúdo não ficar atrás do header fixo) */
.pm-header-spacer {
    height: 80px;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 968px) {
    .pm-header-container {
        padding: 0 20px;
        height: 70px;
    }

    .pm-logo img {
        height: 40px;
    }

    .pm-menu-toggle {
        display: flex;
    }

    /* Menu Mobile */
    .pm-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 40px 20px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    .pm-nav.active {
        transform: translateX(0);
    }

    .pm-nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .pm-nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .pm-nav-link {
        padding: 20px 0;
        font-size: 1.1rem;
        justify-content: space-between;
    }

    /* Dropdown Mobile */
    .pm-dropdown {
        position: static;
        margin-top: 0;
        padding: 0;
        border: none;
        background: rgba(212, 175, 55, 0.05);
        max-height: 0;
        overflow: hidden;
        transform: none;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .pm-nav-item.dropdown-open .pm-dropdown {
        max-height: 500px;
        padding: 10px 0;
        opacity: 1;
        visibility: visible;
    }

    .pm-dropdown-link {
        padding: 15px 20px;
        font-size: 0.95rem;
    }

    /* Botão Contato Mobile */
    .pm-btn-contato {
        margin-top: 30px;
        width: 100%;
        text-align: center;
        padding: 18px;
    }

    .pm-header-spacer {
        height: 70px;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-da1f23e *//* ===============================================
   HEADER PINTO MACHADO - CSS SEPARADO
   Use este CSS em: Elementor > Custom CSS
   =============================================== */

/* VARIÁVEIS */
:root {
    --dourado: #D4AF37;
    --dourado-hover: #C9A961;
    --preto: #000000;
    --branco: #ffffff;
}

/* ===== HEADER ===== */
.pm-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pm-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* LOGO */
.pm-logo img {
    height: 50px;
    width: auto;
}

/* NAVEGAÇÃO DESKTOP */
.pm-nav {
    display: flex;
    align-items: center;
    gap: 45px;
}

.pm-nav-list {
    display: flex;
    list-style: none;
    gap: 45px;
    align-items: center;
}

.pm-nav-item {
    position: relative;
}

.pm-nav-link {
    color: var(--branco);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pm-nav-link:hover {
    color: var(--dourado);
}

/* Link HOME em dourado */
.pm-nav-item:first-child .pm-nav-link {
    color: var(--dourado);
}

/* Ícone dropdown */
.pm-nav-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.pm-nav-item:hover .pm-nav-link i {
    transform: rotate(180deg);
}

/* DROPDOWN */
.pm-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.98);
    min-width: 280px;
    padding: 20px 0;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.pm-nav-item:hover .pm-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pm-dropdown-item {
    list-style: none;
}

.pm-dropdown-link {
    display: block;
    padding: 12px 25px;
    color: var(--branco);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.pm-dropdown-link:hover {
    color: var(--dourado);
    background: rgba(212, 175, 55, 0.05);
    border-left-color: var(--dourado);
    padding-left: 30px;
}

/* BOTÃO CONTATO */
.pm-btn-contato {
    padding: 12px 30px;
    background-color: var(--dourado);
    color: var(--preto);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.pm-btn-contato:hover {
    background-color: var(--dourado-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* MENU MOBILE TOGGLE */
.pm-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.pm-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--branco);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.pm-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.pm-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.pm-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ESPAÇADOR (para conteúdo não ficar atrás do header fixo) */
.pm-header-spacer {
    height: 80px;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 968px) {
    .pm-header-container {
        padding: 0 20px;
        height: 70px;
    }

    .pm-logo img {
        height: 40px;
    }

    .pm-menu-toggle {
        display: flex;
    }

    /* Menu Mobile */
    .pm-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 40px 20px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    .pm-nav.active {
        transform: translateX(0);
    }

    .pm-nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .pm-nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .pm-nav-link {
        padding: 20px 0;
        font-size: 1.1rem;
        justify-content: space-between;
    }

    /* Dropdown Mobile */
    .pm-dropdown {
        position: static;
        margin-top: 0;
        padding: 0;
        border: none;
        background: rgba(212, 175, 55, 0.05);
        max-height: 0;
        overflow: hidden;
        transform: none;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .pm-nav-item.dropdown-open .pm-dropdown {
        max-height: 500px;
        padding: 10px 0;
        opacity: 1;
        visibility: visible;
    }

    .pm-dropdown-link {
        padding: 15px 20px;
        font-size: 0.95rem;
    }

    /* Botão Contato Mobile */
    .pm-btn-contato {
        margin-top: 30px;
        width: 100%;
        text-align: center;
        padding: 18px;
    }

    .pm-header-spacer {
        height: 70px;
    }
}/* End custom CSS */