/*
Theme Name: Blocksy Child
Theme URI: https://creativethemes.com/blocksy/
Description: Child theme do Blocksy para personalizações customizadas
Author: Hugo Antunes
Author URI: https://seusite.com
Template: blocksy
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blocksy-child
*/

/* Adicione seus estilos customizados abaixo desta linha */

/* Estilos para Landing Page */
body.landing-page-body {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.landing-page-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
    background-color: #033F5A;
}

@media (max-width: 768px) {
    .landing-page-wrapper {
        overflow-y: auto;
    }
}

.landing-page-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/wp-content/uploads/2025/11/Grupo-de-mascara-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.landing-page-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: visible;
}

.landing-page-images-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.landing-page-image-top {
    flex: 0 0 auto;
    width: 100%;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.landing-page-image-top img {
    max-width: 30%;
    height: auto;
    display: block;
}

.landing-page-bar {
    width: 100%;
    background-color: #033F5A;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    flex: 1 1 auto;
    min-height: 20vh;
}

.landing-page-bar-text {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
    font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 24px;
    line-height: 1.6;
    font-weight: 300;
    word-wrap: break-word;
}

.landing-page-bar-text .text-bold {
    font-weight: 500;
}

.landing-page-image-bottom {
    flex: 0 0 auto;
    width: 100%;
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.landing-page-image-bottom img {
    max-width: 15%;
    height: auto;
    display: block;
}

.landing-page-footer {
    flex: 0 0 auto;
    width: 100%;
    min-height: 5vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 4;
    color: #ffffff;
    font-family: 'Gotham', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 300;
    padding: 10px 0;
    gap: 8px;
}

.landing-page-footer-main::after {
    content: ' | ';
}

.landing-page-footer-main,
.landing-page-footer-brandit {
    display: inline;
}

.landing-page-footer a {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
    font-size: inherit;
    font-family: inherit;
    display: inline;
    position: relative;
}

.landing-page-footer a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width 0.3s ease-in-out;
}

.landing-page-footer a:hover::after {
    width: 100%;
}

/* Media Query para telas até 1920px */
@media (max-width: 1920px) {
    .landing-page-bar-text {
        font-size: 18px;
    }
}

/* Media Queries para Mobile */
@media (max-width: 768px) {
    .landing-page-bar-text {
        font-size: 18px;
        padding: 0 20px;
        line-height: 1.5;
    }
    
    .landing-page-bar {
        padding: 25px 15px;
    }
    
    .landing-page-image-top {
        min-height: 30vh;
    }
    
    .landing-page-image-bottom {
        min-height: 25vh;
    }
    
    .landing-page-bar {
        min-height: 35vh;
    }
    
    .landing-page-image-top img {
        max-width: 50%;
    }
    
    .landing-page-image-bottom img {
        max-width: 35%;
    }
    
    .landing-page-footer {
        font-size: 11px;
        padding: 10px 20px;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        min-height: 8vh;
        flex-direction: column;
        gap: 8px;
    }
    
    .landing-page-footer-main::after {
        content: '';
    }
    
    .landing-page-footer-main,
    .landing-page-footer-brandit {
        display: block;
    }
}

@media (max-width: 480px) {
    .landing-page-bar-text {
        font-size: 16px;
        line-height: 1.6;
        padding: 0 15px;
    }
    
    .landing-page-bar {
        padding: 20px 10px;
    }
    
    .landing-page-image-top {
        min-height: 25vh;
    }
    
    .landing-page-image-bottom {
        min-height: 25vh;
    }
    
    .landing-page-bar {
        min-height: 40vh;
    }
    
    .landing-page-image-top img {
        max-width: 65%;
    }
    
    .landing-page-image-bottom img {
        max-width: 45%;
    }
    
    .landing-page-footer {
        font-size: 10px;
        padding: 10px 15px;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        min-height: 8vh;
        flex-direction: column;
        gap: 8px;
    }
    
    .landing-page-footer-main::after {
        content: '';
    }
    
    .landing-page-footer-main,
    .landing-page-footer-brandit {
        display: block;
    }
}

@media (max-width: 380px) {
    .landing-page-bar-text {
        font-size: 14px;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .landing-page-bar {
        height: 30%;
        padding: 15px 8px;
    }
    
    .landing-page-image-top {
        height: 30%;
    }
    
    .landing-page-image-bottom {
        height: 30%;
    }
    
    .landing-page-image-top img {
        max-width: 75%;
    }
    
    .landing-page-image-bottom img {
        max-width: 55%;
    }
    
    .landing-page-footer {
        font-size: 9px;
        padding: 10px 10px;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        min-height: 8vh;
        flex-direction: column;
        gap: 8px;
    }
    
    .landing-page-footer-main::after {
        content: '';
    }
    
    .landing-page-footer-main,
    .landing-page-footer-brandit {
        display: block;
    }
}

