@import url("index.css");

main section.intro-site {
    height: 99vh;
    background-image: url("../Imagens/Escritório/Enscape_2025-10-28-14-40-11.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    text-align: center;
    background-attachment: fixed;
}

main .intro-site > .Overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.418); /* Semi-transparent black overlay */
    z-index: index 2;
}

main .intro-site > .interface{
    z-index: 5;
    position: relative;
}


main .intro-site .interface{
    display:grid;
    align-items: center;
    height: 100%;
    
}
main .intro-site .interface .text-intro h1{
    padding-top: 10%;
    font-size: 4em;
    line-height: 60px;
    font-weight: 400;
}
main .intro-site .interface .text-intro h1 span{
    display: inline;
    color: orange;
    font-weight: 600;
}
main .intro-site .interface .text-intro p{
    font-size:20px;
    font-weight: 100;
    margin: 20px 0;
}
/*
main .intro-site .interface .text-intro h1,
main .intro-site .interface .text-intro p{
    padding-left:20%;
}*/
/* Área do ícone do mouse ajustada */
main .intro-site .interface .rato {
    display: flex;
    justify-content: center; /* Mudado de space-between para center */
    padding-left: 0;         /* Removemos o padding-left de 50% que o jogava para o lado */
    margin-top: 40px;        /* Dá um espaço entre o texto e o mouse */
}

/* Estilização e Animação do Ícone */
main .intro-site .interface .rato i {
    font-size: 2.5rem;       /* Deixa o ícone em um tamanho visível */
    color: orange;           /* Combina com a identidade visual do seu site */
    
    /* Ativando a animação: nome, duração, ciclo infinito e movimento suave */
    animation: rolarMouse 1.6s infinite ease-in-out; 
}

/* Criando o movimento de "subir e descer" */
@keyframes rolarMouse {
    0% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(12px); /* Desce 12 pixels */
        opacity: 1;                  /* Fica mais brilhante ao descer */
    }
    100% {
        transform: translateY(0);
        opacity: 0.6;
    }
}
/*Área de edição dos projectos*/

main .projectos{
    padding: 80px;
}

main .projectos .interface .ilustracoes{
    display:flex;
    justify-content: space-between;
    gap: 30px;
    padding: 2%;
}
main .projectos .interface .ilustracoes .ilustracao1,
main .projectos .interface .ilustracoes .ilustracao2,
main .projectos .interface .ilustracoes .ilustracao3{
    flex:1;
    background: whitesmoke;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ilustracoes .imagem{
    overflow: hidden;
    width: 100%;
}

.ilustracoes .imagem img{
    height: 250px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.6s ease;
}

.ilustracoes .imagem img:hover{
    transform: scale(1.2);
}

.ilustracoes .dizeresimagens{
    padding: 20px;
    text-align: left;
}

.ilustracoes .dizeresimagens h3{
    font-size: 1.5em;
    margin-bottom: 8px;
}

.ilustracoes .dizeresimagens h3 span{
    font-weight: 300;
}

.ilustracoes .dizeresimagens p{
    font-size: 1em;
    align-items: left;
}

/*Área dos serviços*/
main .servicos .interface{
    display:grid;
    padding: 80px 0;
    align-items: center; 
}

.area-servicos{
    display:flex;
    justify-content: space-between;
    background-color: whitesmoke;
}

.area-servicos .servico1, .servico2, .servico3{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.area-servicos .icon-servico1, .icon-servico2, .icon-servico3{
    margin: 10%;
}

.area-servicos .dizres-servicos1, .dizres-servicos2, .dizres-servicos3{
    display: grid;
    align-items: center;
}
/*Área de estilização dos ambientes dos serviços*/
.interface .ambientes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: whitesmoke;
    border-style: groove;
    box-sizing: border-box;
    padding: 20px;
    width: 100%;
}

.interface .ambientes .ambiente-direita, 
.interface .ambientes .ambiente-esquerda {
    width: 48%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
    
}

.interface .ambientes .ambiente-esquerda > div {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    width: 100%;
    min-height: 100px;
    background-color: bisque;
}
.interface .ambientes .ambiente-direita > div {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    width: 100%;
    min-height: 100px;
    background-color: antiquewhite;
}
.interface .ambientes img {
    height: auto;
    display: block;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.interface .ambientes img:hover {
    transform: scale(1.05); 
}

/*área do botão do portfolio*/
.interface .ambientes .ambiente-central {
    width: 100%;
    text-align: center;
    margin-top: 30px; 
}

.interface .ambientes .ambiente-central h2 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: normal;
    color: orange;
    position: relative;
    padding-bottom: 5px;
    transition: all 0.5s ease;
}
.interface .ambientes .ambiente-central h2 i {
    transition: transform 0.3s ease;
}

.interface .ambientes .ambiente-central h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.interface .ambientes .ambiente-central h2:hover {
    color: orange;
}

.interface .ambientes .ambiente-central h2:hover::after {
    width: 100%;
}

.interface .ambientes .ambiente-central h2:hover i {
    transform: translate(3px, -3px);
}

/*Área das ideias*/

main .dicas .interface .itens-container{
    display:flex;
    justify-content: space-between;
    align-items: center;
    gap: 20%;
    margin-bottom: 20px;
    background-color: whitesmoke;
}
.itens-container .imagem img{
    max-width: 100%;
    padding: 10px;
}
.itens-container .imagem,
.itens-container .text-imagens {
    flex: 1; 
    max-width: 50%;
    margin-bottom: 30px;
    margin-top:20px;
}

.itens-container .text-imagens {
    justify-content: center;
    padding: 20px;
}

/*Área de estilização dos contactos*/
section.contacto{
    background-color: rgb(255, 255, 255);
    padding: 80px 0;
}
section.contacto .interface .dizeres,
section.contacto .interface .Kontacto{
    display:inline-block;
    width:50%;
    margin-right: -4px; /* Ajuste para compensar o espaçamento entre os elementos inline-block */
    vertical-align: middle;
}

.Kontacto a{
    text-decoration: none;
}
.Kontacto button{
    display: flex;
    width: 60%;
    height: auto;
    margin: 0 auto 20px auto;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid #f5f5f5;
    color: black;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.Kontacto button:hover{
    background-color: rgb(248, 182, 0);
    color: black;
}

.Kontacto button i{
    font-size: 200%;
}
.Kontacto button p{
    font-size: 1.2em;
    margin: 0;
    font-weight: 500;
}