/*
Theme Name: DigitalPaper
Theme URI: none
Author: Lucas Cotrim
Author URI: none too
Description: DigitalPaper main page
Version: 1.0
*/

html,
body {
    scroll-behavior: smooth;
    background-color: #e0e0e0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

header {
    background: linear-gradient(to right, #0c0c47, #1c1c7e);
    margin: 0px;
    width: 100%;
    min-height: 150px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.6);
}

.headerLogo {
    height: 70px;
    width: auto;
    margin-left: 2%;
}

header a {
    color: #ffffff;
    text-decoration: none;
    font-size: 23px;
    font-weight: 600;
    margin-right: 10%;
    font-family: 'Ubuntu';
}

header a:hover {
    color: #808080;
}

.headerNav {
    margin-right: 10%;
    display: flex;
    flex-direction: row;
    text-wrap: nowrap;
}

.banner {
    background: url('images/banner.jpg') center/cover no-repeat;
    width: 100%;
    min-height: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: brightness(0.4);
    z-index: 0;
}

.banner h1 {
    position: relative;
    z-index: 10;
    color: #ffffff;
    margin: 10% 10%;
    margin-bottom: 0;
    font-size: 60px;
    font-family: "Ubuntu", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.counters {
    display: flex;
    position: relative;
    color: #ffffff;
    margin-left: 5%;
}

.counter {
    margin: 0 30px;
    text-align: center;
}

.counterNumber {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 5px;
}

.counter p {
    font-size: 18px;
    font-weight: 500;
}

.sobre {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: auto;
    background-color: #d3d3d3;
}

.sobre h1 {
    font-family: 'Ubuntu';
}

.sobre h2,
h3 {
    max-width: 70%;
}

.aboutButtons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 25%;
    margin-bottom: 2%;
}

.aboutButtons a {
    text-decoration: none;
    border-radius: 10px;
    padding: 4%;
    color: #ffffff;
    background: #1c1c7e;
    font-family: 'Ubuntu';
    font-size: 100%;
    font-weight: 600;
}

.dpged {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 500px;
}

.dpgedText {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: justify;
    margin-top: -4%;
}

.dpgedText h1 {
    font-family: 'Ubuntu';
}

.dpged img {
    height: 300px;
    width: auto;
    margin-right: 7%;
    border-radius: 15px;
}

.servicosTitle {
    background-color: #d3d3d3;
    width: 100%;
    min-height: 100px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Ubuntu';
}

.servicos {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #d3d3d3;
    width: 100%;
    justify-content: space-around;
}

.serviceDiv {
    min-width: 230px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Ubuntu';
    text-align: center;
    border: solid #0c0c47 3px;
    border-radius: 10px;
    margin-bottom: 3%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.serviceDiv h3 {
    transition: opacity 0.3s ease-in-out;
}

.serviceDiv img {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease-in-out;
}

.serviceDiv p {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    position: absolute;
    bottom: 10px;
    text-align: center;
    width: 90%;
    font-size: 15px;
    color: #000;
    font-weight: bold;
}

.serviceDiv:hover img {
    transform: translateY(-25px);
}

.serviceDiv:hover h3 {
    opacity: 0;
}

.serviceDiv:hover p {
    opacity: 1;
    transform: translateY(0);
}

.titleAndImage {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 1%;
    padding-bottom: 1%;
}

.clientesText {
    max-width: 50%;
    font-family: 'Ubuntu';
    font-size: larger;
    text-align: justify;
    margin-left: 5%;
}

.clientesText h3 {
    text-align: center;
}

.map {
    height: 400px;
    width: auto;
}

.logoLoop {
    width: 100%;
    background-color: #d3d3d3;
    min-height: 400px;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.logoContainer {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scrollLogos 110s linear infinite;
}

@keyframes scrollLogos {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}

.logo {
    height: 300px;
    width: 300px;
    border: 1px solid #a3a3a3;
    border-radius: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 10px 10px;
}

.logo img {
    height: 250px;
    width: 250px;
}

.feedback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    font-family: 'Ubuntu';
    min-height: 500px;
    padding-bottom: 3%;
}

.allComments {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.comment {
    background-color: #d3d3d3;
    border-radius: 5px;
    width: 300px;
    height: 200px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 2% 1%;
}

.comment h5 {
    text-align: justify;
    max-width: 90%;
    font-weight: 500;
}

.comment h2 {
    margin-top: 0;
}

.feedback a {
    text-decoration: none;
    border-radius: 10px;
    padding: 2%;
    color: #ffffff;
    background: #1c1c7e;
    font-family: 'Ubuntu';
    font-size: 100%;
    font-weight: 600;
}

footer {
    margin-top: 1%;
    min-height: 400px;
    width: 100%;
    background-color: #0c0c47;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aboveCopyright {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.footerLogo {
    width: 400px;
    height: auto;
}

.logoAndText {
    display: flex;
    flex-direction: column;
    margin-right: 20%;
    color: #ffffff;
    align-items: center;
    margin-left: 2%;
}

.logoAndText h3 {
    max-width: 100%;
}

.aboveCopyright h2 {
    color: #ffffff;
}

.aboveCopyright h3 {
    font-family: 'Ubuntu';
}

.contactInfo h2 {
    font-family: 'Ubuntu';
}

.showAndTell {
    color: #ffffff;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.showAndTell h3 {
    max-width: 80%;
}

.showAndTell img {
    height: 30px;
    width: auto;
    margin-right: 3%;
}

.dividingLine {
    margin-top: 2%;
    width: 85%;
    border: 1px solid #ffffff;
}

.extras {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.copyright {
    align-self: flex-start;
    margin-left: 5%;
    margin-top: 2%;
    font-weight: 500;
}

.socialIcons {
    display: flex;
    flex-direction: row;
    margin-right: 5%;
    margin-top: 1%;
}

.socialIcons a {
    margin-right: 15%;
}

.socialIcon {
    height: 40px;
    width: auto;
    margin: 1.5%;
}

@media (max-width: 768px) {
    html, body{
        font-family: 'Roboto';
    }
    
    header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    header a {
        display: none;
    }

    .banner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 400px;
        font-family: 'Ubuntu';
    }

    .banner h1 {
        font-size: 30px;
        font-family: 'Ubuntu';
        font-weight: 600;
    }

    .counterNumber {
        font-size: 30px;
    }

    .counter {
        margin: 0 15px;
    }

    .sobre {
        text-align: justify;
    }

    .sobre h2, h3 {
        width: 100%;
        font-size: 18px;
    }

    .aboutButtons {
        width: 80%;
        margin: 2% 2%;
        justify-content: space-between;
    }

    .dpged {
        flex-direction: column;
        min-height: 500px;
        position: relative;
        background-image: url(images/digital.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        align-items: center;
        justify-content: center;
    }

    .dpged::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: inherit;
        filter: brightness(0.3);
        z-index: 0;
    }

    .dpgedText{
        position: relative;
        z-index: 10; 
        color: #ffffff;
    }

    .dpgedText a{
        color: #ffffff !important;
    }

    .dpged img {
        display: none;
    }

    .servicos{
        flex-direction: column;
    }

    .titleAndImage{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .clientesText{
        max-width: 100%;
        text-align: center;
    }

    .clientesText h3{
        max-width: 100%;
    }

    .logoLoop{
        min-height: 300px;
    }

    .logo{
        height: 250px;
        width: 250px;
    }

    .logo img{
        width: 200px;
        height: 200px;
    }

    .feedback{
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        min-height: 1200px;
        text-align: center;
    }

    .allComments{
        flex-direction: column;
        min-height: fit-content;
    }

    .comment{
        margin: 5% 0;
    }

    .comment h5{
        font-size: 15px;
    }

    .aboveCopyright{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .aboveCopyright h2{
        text-align: center;
    }

    .contactInfo {
        align-items: center;
        justify-content: center;
    }

    .showAndTell{
        margin-left: 2%;
        align-items: center;
        justify-content: center;
    }

    .logoAndText{
        display: none;
    }

    .copyright{
        font-family: 'Ubuntu';
        max-width: 60%;
    }
}

@media (max-width: 1024px) {
    html, body{
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }
    
    header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    header a {
        display: none;
    }

    .banner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 400px;
    }

    .banner h1 {
        font-size: 30px;
        font-family: Roboto;
    }

    .counterNumber {
        font-size: 30px;
        font-family: "Ubuntu", sans-serif;
        font-weight: 600;
    }

    .counter {
        margin: 0 15px;
    }

    .sobre {
        text-align: justify;
    }

    .sobre h2, h3 {
        width: 100%;
        font-size: 18px;
    }

    .aboutButtons {
        width: 80%;
        margin: 2% 2%;
        justify-content: space-between;
    }

    .dpged {
        flex-direction: column;
        min-height: 500px;
        position: relative;
        background-image: url(images/digital.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        align-items: center;
        justify-content: center;
    }

    .dpged::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: inherit;
        filter: brightness(0.3);
        z-index: 0;
    }

    .dpgedText{
        position: relative;
        z-index: 10; 
        color: #ffffff;
    }

    .dpgedText a{
        color: #ffffff !important;
    }

    .dpged img {
        display: none;
    }

    .servicos{
        flex-direction: column;
    }

    .titleAndImage{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .clientesText{
        max-width: 100%;
        text-align: center;
    }

    .clientesText h3{
        max-width: 100%;
    }

    .logoLoop{
        min-height: 300px;
    }

    .logo{
        height: 250px;
        width: 250px;
    }

    .logo img{
        width: 200px;
        height: 200px;
    }

    .feedback{
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        min-height: 1200px;
        text-align: center;
    }

    .allComments{
        flex-direction: column;
        min-height: fit-content;
    }

    .comment{
        margin: 5% 0;
    }

    .comment h5{
        font-size: 15px;
    }

    .aboveCopyright{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .aboveCopyright h2{
        text-align: center;
    }

    .contactInfo {
        align-items: center;
        justify-content: center;
    }

    .showAndTell{
        margin-left: 2%;
        align-items: center;
        justify-content: center;
    }

    .logoAndText{
        display: none;
    }

    .copyright{
        font-family: 'Ubuntu';
        max-width: 60%;
    }
}