@import "config.css";

@import "accordion_m01.css";

@import "alert.css";
@import "forms.css";

/* Cols */
.col_1  { width: calc(8.333% - 13.7px); }
.col_2  { width: calc(16.666% - 13.7px); }
.col_3  { width: calc(25% - 15px); }
.col_4  { width: calc(33.333% - 13.7px); }
.col_5  { width: calc(41.666% - 13.7px); }
.col_6  { width: calc(50% - 10px); }
.col_7  { width: calc(58.333% - 13.7px); }
.col_8  { width: calc(66.666% - 13.7px); }
.col_9  { width: calc(75% - 13.7px); }
.col_10 { width: calc(83.333% - 13.7px); }
.col_11 { width: calc(91.666% - 13.7px); }
.col_12 { width: calc(100% - 13.7px); }

/* Flexbox */
.flex { display: flex; }
.gap_10 { gap: 10px; }
.gap_20 { gap: 20px; }

/* Classes para align-items */
.align_center { align-items: center; }
.align_start { align-items: flex-start; }
.align_end { align-items: flex-end; }
.align_stretch { align-items: stretch; }
.align_baseline { align-items: baseline; }

/* Classes para justify-content */
.justify_start { justify-content: flex-start; }
.justify_end { justify-content: flex-end; }
.justify_center { justify-content: center; }
.justify_between { justify-content: space-between; }
.justify_around { justify-content: space-around; }
.justify_evenly { justify-content: space-evenly; }

/* Outras classes para Flexbox */
.flex_row { flex-direction: row; }
.flex_column { flex-direction: column; }
.flex_wrap { flex-wrap: wrap; }
.flex_no_wrap { flex-wrap: nowrap; }
.flex_reverse { flex-direction: row-reverse; }

.text_align_center {
    text-align: center;
}
.mt_40 {
    margin-top: 40px;
}
.mb_40 {
    margin-bottom: 40px;
}

/* titulos */
.title_large_default,
.title_medium_default,
.title_small_default {
    display: block;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-text-dark);
}

.title_large_default {
    font-size: 48px; 
    line-height: 58px; 
}

.title_medium_default {
    font-size: 32px; 
    line-height: 42px; 
}

.title_small_default {
    font-size: 20px; 
    line-height: 30px; 
}

.subtitle_default {
    display: block;
    margin: 0 0 40px 0;
    font-size: 20px; 
    line-height: 30px; 
    font-weight: var(--font-weight-regular); 
    color: var(--color-text);
}

.accent_text {
    color: var(--color-primary);
}

.tag_title {
    display: inline-block;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
}

/* botoes */
.btn_defaultM01 {
    display: inline-block;
    padding: 10px 0;
    color: var(--color-text);
    font-size: 16px;
} 

.btn_defaultM01 span {
    display: block;
    width: 30px;
    height: 2px;
    background-color:  var(--color-primary);
    margin-top: 10px;
    transition: .5s;
}

.btn_defaultM01:hover span {
    width: 100%;
}

.btn_defaultM01:hover {
    color: var(--color-primary);
}

/*  style 2 para botoes */
.btn {
    outline: initial;
    border-radius: 100px;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .3s;
    .fa-arrow-right {
        transform: rotate(-45deg);
        transition: inherit;
    }
}

.btn_defaultM02 {
    color: #FFFFFF;  
    background-color: var(--color-primary);
}

.btn_defaultM03 {
    color: var(--color-text-dark);  
    background-color: transparent;
    border: 1px solid var(--color-text-dark);
}

.btn:hover {
    .fa-arrow-right {
        transform: rotate(0deg);
    }
}

.btn_defaultM02:hover {
    background-color: #000000;
}

.btn_defaultM03:hover {
    color: #ffffff;
    background-color: var(--color-background-dark);
}

/* capa img */
.crop_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

/* limite de texto */
.ellipsis_text {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

/* btn flutuante */
#btn_whatsapp {
    width: 62px;
    height: 62px;
    border-radius: 62px;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999999;
    box-shadow: var(--box-shadow);
    i {
        color: #ffffff;
        font-size: 30px;
    }
}

/* style section */
.section_default {
    width: 100%;
    height: auto;
    padding: 70px 0;
}

.section_round {
    border-radius: 80px;
}

.section_light_bg {
    background-color: var(--color-background-light-secondary);
}

.section_dark_bg {
    background-color: var(--color-background-dark);
    
    .title_large_default,
    .title_medium_default,
    .title_small_default,
    .subtitle_default,
    .btn_defaultM01 {
        color: #ffffff;
    }

    .btn_defaultM03 {
        color: #ffffff;  
        border: 1px solid #ffffff;
    }

    .btn_defaultM03:hover {
        color: var(--color-primary);  
        background-color: transparent;
        border: 1px solid var(--color-primary);
    }
}

/* crumb */
.crumb {
    width: 100%;
    padding: 20px 0; 
    background: var(--color-background-light-secondary);
    color: var(--color-text-dark);
    font-weight: 500;
    border-bottom: 1px solid var(--color-border);
}

.crumb h2 {
    display: none;
    font-size: 18px;    
}

.crumb p {
    color: var(--color-text);
}

.crumb a {
    color: var(--color-text-dark);
}

/* popup */
#popup_footer {
    width: 90%;
    max-width: 1150px;
    height: auto;
    padding: 10px 20px;
    border-radius: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-background-dark);
    color: #ffffff;
    margin: auto;
    position: fixed;
    z-index: 99999999;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 300;
}

#popup_footer p a {
    color: var(--color-primary);
    text-decoration: underline;
}

#popup_footer button {
    border: 0;
    color: #000000;
    background: #FFFFFF;
    padding: 10px 15px;
    border-radius: var(--spacing-xl);
    margin-left: 10px;
    cursor: pointer;
}
/* popup */

/* CSS RESPONSIVE */
@media (max-width: 1024px) {

    /* titulos */
    .title_large_default {
        font-size: 38px; 
        line-height: 42px; 
    }

    .title_medium_default {
        font-size: 28px; 
        line-height: 38px; 
    }

    .title_small_default {
        font-size: 18px; 
        line-height: 22px; 
    }

    .subtitle_default {
        font-size: 16px; 
        line-height: 22px; 
    }

}

@media (max-width: 900px) {

    /* style section */
    .section_default {
        padding: 40px 0;
    }

    /* titulos */
    .subtitle_default {
        font-size: 16px; 
        line-height: 22px; 
        margin-bottom: 20px;
    }

    .mobile_layout .col_4 {
        width: calc(50% - 10px);
    }

    .mobile_layout .col_3  { 
        width: calc(50% - 10px); 
    }

    .mobile_layout .col_9  { 
        width: 100%;
    }

    .title_mobile  {
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    
    .title_mobile .col_6,
    .title_mobile .col_5 {
        width: 100%;
        justify-content: flex-start;
    }

    .title_mobile .subtitle_default {
        margin-bottom: 10px;
    }
    
}

@media (max-width: 600px) {    

    .mobile_layout .col_4 {
        width: 100%;
    }

    .mobile_layout .col_3  { 
        width: 100%;
    }

    /* popup */
    #popup_footer {
        padding: 10px 10px;
        flex-direction: column;
    }

    #popup_footer button {
        width: 100%;
        margin: 5px 0 0 0;
    }
    /* popup */

}