.header-area.style-3 {
    position: absolute; 
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: transparent;
    padding: 10px 0;
    width: auto;
    transition: all 0.3s ease;
}

.menu-area {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo img.logo-desktop {
    max-height: 80px; 
    width: 100px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
    display: block;
}


.header-logo img.logo-mobile {
    max-height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
    display: none;
}


body {
    padding-top: 0;
}


.hero-section {
    position: relative;
    min-height: 100vh;
}


@media (max-width: 768px) {
    .header-area.style-3 {
        position: fixed; 
        top: 0; 
        left: 0;
        right: 0;
        transform: none; 
        width: 100%; /* Largura total */
        background: rgba(255, 255, 255, 0.95); 
        backdrop-filter: blur(10px);
        padding: 12px 20px;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }
    
   
    .header-logo img.logo-desktop {
        display: none; 
    }
    
    .header-logo img.logo-mobile {
        display: block; 
        max-height: 50px;
    }
    

    body {
        padding-top: 75px;
    }
    

    .hero-section {
        min-height: calc(100vh - 75px);
        margin-top: 0;
    }
}


@media (max-width: 480px) {
    .header-area.style-3 {
        padding: 10px 15px;
    }
    
    .header-logo img.logo-mobile {
        max-height: 45px;
    }
    
    body {
        padding-top: 65px;
    }
    
    .hero-section {
        min-height: calc(100vh - 65px);
    }
}


@media (max-width: 1024px) and (min-width: 769px) {
    .header-area.style-3 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        background: rgba(255, 255, 255, 0.90);
        backdrop-filter: blur(8px);
        padding: 15px 30px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }
    
    .header-logo img.logo-desktop {
        max-height: 65px;
    }
    
    body {
        padding-top: 95px;
    }
    
    .hero-section {
        min-height: calc(100vh - 95px);
    }
}


@media (max-width: 768px) {
    .header-area.style-3.scrolled {
        padding: 8px 20px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    
    .header-area.style-3.scrolled .header-logo img.logo-mobile {
        max-height: 40px;
    }
}


.page-header {
    
}

@media (min-width: 769px) {
    .page-header .header-area.style-3 {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 15px 30px;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }
    
    .page-header body {
        padding-top: 90px;
    }
}

/* ========== LOGO SECTION ========== */
.layout-footer {
    background-color: #f8f8f8;
    padding: 60px 0 40px 0;
    border-top: 1px solid #e0e0e0;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.overlay-force {
    display: none;
    /* Remove se não precisar do overlay */
}

.wrap-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 300px 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}


.blk-logo {
    display: flex;
    flex-direction: column;
}

.logo-brand {
    width: 120px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    margin-bottom: 40px;
}

.blk-logo__note {
    color: #888;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
}


.blk-about__title {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
}

.blk-about__text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}


.blk-contact__title {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
}

.blk-contact__email,
.blk-contact__phone {
    margin: 0 0 12px 0;
    position: relative;
    padding-left: 26px;
}

.blk-contact__email::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23666' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.89 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.blk-contact__phone::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23666' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.blk-contact__link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.blk-contact__link:hover {
    color: #333;
}


.blk-info__title {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
}

.blk-info__item {
    margin: 0 0 12px 0;
}

.blk-info__link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.blk-info__link:hover {
    color: #333;
}


@media (max-width: 992px) {
    .wrap-footer {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 0 30px;
    }

    .blk-logo {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
    }

    .logo-brand {
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 768px) {
    .layout-footer {
        padding: 40px 0 30px 0;
    }

    .wrap-footer {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .blk-logo,
    .blk-about,
    .blk-contact,
    .blk-info {
        text-align: left;
    }

    .blk-logo {
        margin-bottom: 0;
    }

    .logo-brand {
        width: 100px;
        margin-bottom: 20px;
        display: block;
        margin-left: 0;
        margin-right: auto;
    }

    .blk-logo__note {
        font-size: 12px;
        text-align: left;
    }

    .blk-about__title,
    .blk-contact__title,
    .blk-info__title {
        font-size: 15px;
        margin-bottom: 15px;
        text-align: left;
    }

    .blk-about__text {
        font-size: 13px;
        text-align: left;
    }

    .blk-contact__link,
    .blk-info__link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .wrap-footer {
        padding: 0 15px;
    }

    .logo-brand {
        width: 90px;
    }

    .blk-contact__email,
    .blk-contact__phone {
        padding-left: 22px;
    }

    .blk-contact__email::before,
    .blk-contact__phone::before {
        width: 14px;
        height: 14px;
    }
}
/* _______________Start video_______________________________ */


#video {
    padding: 0;
    margin: 0;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    cursor: pointer;
}

#video video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


#playPauseBtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: #000;

    border: 4px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: auto;
}

#playPauseBtn.visible {
    opacity: 0.5;
    
}


.play-icon {
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

/* _______________end video_______________________________ */


