
.GoogleADS .container-fluid{
    height: calc(100vh - 90px);
    padding: 0;
}
.GoogleADS .row{
height: 100%;
width: 80%;
margin: 0 auto;
}
.GoogleADS .col-txt{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 35px;
}
.GoogleADS .col-img{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}
.GoogleADS .col-txt h2{
    font-family: "Titulos" !important;
    font-weight: 400;
    font-size: 2.9em;
    position: relative;
    text-align: center;
}
.GoogleADS h2::before {
    content: " ";
    width: 33%;
    height: 3px;
    background-color: var(--AzulEscuro);
    position: absolute;
    bottom: -15px;
    left: 33%;
}
.GoogleADS .col-txt p{
    text-align: center;
}

.GoogleADS .col-link {
    padding: 0;
    justify-content: center;
    align-items: center;
    height: 100px;
    flex-grow: 0 ;
}
.GoogleADS .col-link>* {
    font-family: "Titulos", Arial, Helvetica, sans-serif !important;
    font-size: 1.5em;
    text-decoration: none;
    color: var(--AzulClaro);
    transition: .3s;
}

.GoogleADS .col-link>*:hover {
    color: var(--PretoEscuro) !important;
}

@media (max-width:1000px){
    .GoogleADS .row{
        height: 100%;
        width: 90%;
        display: flex;
        flex-wrap: wrap;
        }
    .GoogleADS .col-txt{
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 35px;
    }
    .GoogleADS .col-img{
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    .GoogleADS .col-txt h2{
        font-size: 2.2em;
    }

}