:root {
  --bg-black:linear-gradient(180deg,rgba(27, 32, 33, 1) 0%, rgba(35, 34, 34, 1) 40%, rgba(53, 53, 53, 1) 100%); 
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.background-template{
    width: auto;
    height: auto;
    background: linear-gradient(180deg,rgba(7, 27, 33, 1) 0%, rgba(23, 30, 31, 1) 21%, rgba(0, 58, 72, 1) 85%);
}

.background-black{
    background: var(--bg-black);
}

.bg-img-lines{
  background-image: url('/assets/img/case_top_line.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 500px; /* Exemplo de altura fixa */
  width: 100%;
}

.container{
    position: relative;
    height: auto;
    margin-left: 5%;
    margin-right: 5%;
    z-index: 5;
}

.flex-container{
    display: flex;
    flex-direction: row;
    height: auto;
}

.flex-item{
    flex: 1;
    max-width: 100%
}

.flex-item p{
    font-family: "Work Sans", sans-serif;
    font-weight: 100;
    font-size: 1.2rem;
    line-height: 45px;
    text-align: justify;
    color: #f1f1f1;
}

.title{
    font-family: 'Jost';
    font-weight: bold;
    color: #f1f1f1;
    text-align: end;
    margin: 5%;   
    padding-right: 2%;
    font-size: 4.063rem;
    border-right: 5px solid #ED6A3B; 
}

.title-full{
    width: 100%;
}


/* reverse elements */
.title-reverse{
    text-align: start;
    padding-right: 0;
    padding-left: 2%;
    border-right: none;
    border-left: 5px solid #ED6A3B;
}

.reverse-elements{
}

.flex-item img{
    max-width: 100%;
    height: auto;
    pointer-events: none;
    justify-content: center;
}

.flex-item span{
    color: #F0825A;
}

.flex-item-center{
    text-align: center;
    justify-items: center;
    align-items: center;
    align-content: center;
}

.wrap-button{
    display: flex;
    text-align: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    justify-content: center;
    align-content: center;
    padding: 5%;
}

.wrap-button a{
    text-decoration: none;
}

.btn{
    display: flex;
    width: 304px;
    max-height: 84px;
    justify-content: center;
    text-align: center;
    background-color: #cfcfcf;
    color: #063A49;
    border-radius: 48px;
    padding: 2%;
    transition: all 0.3s linear;
}

.btn p{
    font-family: 'Jost';
    font-weight: bold;
    font-size: 1.69rem;
}

.wrap-itens{
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin: 0 auto;
}

.p-img{
    height: 100%;
    width: 100vw;
    display: flex;
    align-items: end;
    justify-content: end;
    align-content: end;

}
.p-img img{
    max-height: 647px;
    max-width: 849px;
}

.baus-container{
    margin: 0;
}

.baus-custom-container{
    margin-left: 5%;
    margin-right: 5%;
}

/* .baus-custom-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

/* .baus-custom-img img{
    object-fit: cover;
} */

.svg-icon{
    transition: all 0.3s linear;
    fill: #063A49;
}

.btn:hover{
    background-color: #ED6A3B;
    color: #ffffff;
    fill: #ffffff;
}

.btn:hover svg path{
    fill: #ffffff;
}

.img-float{
    float: right;
    margin: 0 0 20px 20px;
     

    /* Define a forma de contorno */
    shape-outside: inset(0 0 0 0);
    clip-path: inset(0 0 0 0); /* fallback visual */
}

@media (max-width: 900px) {
    .flex-container{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .flex-container img{
        min-height: 150px;
    }

    .title-reverse{
        text-align: start;
        margin-left: 0;
    }

    .reverse-elements{
        flex-direction: column-reverse;
    }
}
 




