﻿/* Paleta de Cores
#421d7d - escuro
#904efa - claro
#4F4F4F - cinza
#F0FFFF - branco;
#80f353 - Verde-Limão
#1f6d9e - azul turquesa
#1e2124 - cinza carvão

*/

.barra {
    max-width: 45rem;
    height: 0.4rem;
    background-color: #1f6d9e;
    border-radius: 10px;
    margin: 0 auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.graph-section h1 {
    text-align: center;
    font-size: 4.5rem;
    font-weight: bold;
    color: #F0FFFF;
}

.graph-section,
.dibb-section,
.project-section,
.fluxo-caixa-section,
.acompanhamento-mo-section,
.acompanhamento-obra-section,
.contato-section,
.servmix-infra-section,
.privacidade-section,
.termos-uso-section
{
    margin-top: 2rem;
}

.graph-section > div:first-of-type {
    justify-content: center;
}

body {
    background-image: url('/images/fundo_1f6d9e.png');
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 5rem;
    margin: 0;
}

body h1 {
    text-align: center;
    font-size: 3.5rem;
    font-weight: bold;
    color: #F0FFFF;
    text-align: start;
}

body h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #80f353;
    text-align: start;
}

body h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #80f353;
    text-align: start;
}

body p {
    text-align: center;
    font-size: 1rem;
    color: #F0FFFF;
    text-align: justify;
}

.profile-bio h1, h2, p {
    padding-right: 2rem;
    padding-left: 2rem;
}

.tecnology-section h3,
.systems-section h3
{
    padding-left: 2rem;
}

.profile-section .row,
.systems-section .row,
.tecnology-section .row,
.project-section .row,
.dibb-section .row,
.fluxo-caixa-section .row,
.acompanhamento-mo-section .row,
.acompanhamento-obra-section .row,
.servmix-infra-section .row {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    max-width: 60rem;
}


.tecnology-section h2,
.systems-section h2,
.project-section h2,
.acompanhamento-mo-section h2,
.acompanhamento-obra-section h2,
.termos-uso-section,
.privacidade-section {
    margin-bottom: 2rem;
}

.content-box {
    display: flex;
    flex-direction: row;    
    margin-bottom: 2rem;
    align-items:center;
}

.profile-photo img {
    width: 20rem;
    height: 25rem;
    object-fit: cover;
    padding: 2rem;
    margin-top: 3rem;
    border-radius: 3rem;
}

.dotnet-image img {
    width: 12rem;
    height: 12rem;
    object-fit: contain;          
}


.power-pivot-power-query-image img {
    width: 12rem;
    height: 12rem;
    object-fit: contain;
}

.power-bi-image img {
    width: 12rem;
    height: 12rem;
    object-fit: contain;
}

.windows-server-2022-image img {
    width: 12rem;
    height: 12rem;
    object-fit: contain;
}

.sienge-image img {
    width: 12rem;
    height: 12rem;
    object-fit: contain;
}

.informakon-image img {
    width: 12rem;
    height: 12rem;
    object-fit: contain;
}

.construtor-vendas-image img {
    width: 12rem;
    height: 12rem;
    object-fit: contain;
}

.blur-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .blur-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.25);
    }

.bar {
    width: 50px;
    animation: rise 5.5s ease-out infinite;
}

@keyframes rise {
    from {
        height: 0;
    }

    to {
            
    }
}

.border-elevation {
    border: 2px outset #aaa;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
}

.pulse-gradiente {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    animation: Gradiente 10s infinite ease-in-out;
    margin: 100px auto;
}

@keyframes Gradiente {
    0% {
        transform: scale(1) rotate(45deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.3) rotate(-45deg);
        opacity: 0.5;
    }

    100% {
        transform: scale(1) rotate(45deg);
        opacity: 1;
    }
}

@media (max-width: 768px) {

    
    .graph-section h1 {
        font-size: 2.5rem; 
    }

    body h1 {
        font-size: 2rem; 
        text-align: start;
    }

    body h2 {
        font-size: 1.8rem; 
        text-align: start;
    }

    body h3 {
        font-size: 1.5rem; 
        text-align: start;
    }

    body p {
        text-align: justify;
        font-size: 0.95rem;
        hyphens: auto;
        -webkit-hyphens: auto; 
    }

    body li {
        hyphens: auto;
        -webkit-hyphens: auto; 
    }
    
    .profile-section .row,
    .systems-section .row,
    .tecnology-section .row,
    .project-section .row,
    .dibb-section .row,
    .fluxo-caixa-section .row,
    .acompanhamento-mo-section .row,
    .acompanhamento-obra-section .row,
    .servmix-infra-section .row {
        flex-direction: column; 
        padding: 0 1rem;
    }

    .profile-bio {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .content-box {
        flex-direction: column; 
        padding: 1.5rem;
        align-items: center;
        text-align: center;
    }

    .tecnology-description,
    .project-description {
        padding: 1rem 0 0 0; 
    }

    
    .dotnet-image,
    .power-pivot-power-query-image,
    .power-bi-image,
    .windows-server-2022-image,
    .sienge-image,
    .informakon-image,
    .construtor-vendas-image
    {
        width: 100%; 
        height: 12rem; 
        margin-top: 1rem;
    }

}

.fade-in {
    opacity: 0;
    transform: translateY(40px); 
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform; 
}  
    .fade-in.visible {
        opacity: 1;
        transform: translateY(0); 
    }
