@charset "UTF-8";

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

body {
    background-color: rgb(255, 255, 255);
    height: 100vh;
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}



.flex {
    display: flex;
}

.interface {
    max-width: 1280px;
    margin: 0 auto;
}

.diego-contato {
    display: flex;
    justify-content: right;
    align-items: right;
    margin: 20px;
    text-decoration: none;


}

/* Button styling */
.download-button {
    background: linear-gradient(90deg, #80cad7, #19789d);
    /* Gradient background */
    color: #fff;
    /* White text */
    border: none;
    border-radius: 50px;
    /* Fully rounded button */
    padding: 12px 30px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    display: wrap;
    align-items: center;
    gap: 10px;
    /* Spacing between text and arrow */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
    /* Professional shadow */
    transition: all 0.3s ease;
    /* Smooth transition for hover effects */
    text-transform: uppercase;
    /* Uppercase text for modern look */
    font-family: 'Cairo', sans-serif;
    text-decoration: none;

}

/* Button hover effect */
.download-button:hover {
    background: linear-gradient(90deg, #c7dce1, #44aeb6);
    /* Lighter gradient on hover */
    box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.3);
    /* Enhance shadow on hover */
    transform: translateY(-3px);
    /* Slight lift effect */
}

/* Arrow styling */
.download-button .arrow {
    font-size: 20px;
    animation: bounce 1s infinite;
    /* Bounce effect */
}

/* Bounce animation */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

h2.titulo {
    color: #000000;
    font-size: 38px;
    text-align: center;
}

h2.titulo span {
    color: #48b6c0;
}

button:hover,
form .diego-enviar input:hover {
    box-shadow: 0px 0px 8px #48b6c0;
    transform: scale(1.05);
}

/* ESTILO DO CABEÇALHO */
header {
    padding: 40px 4%;
}

header>.interface {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header a {
    color: #5e5e5e;
    text-decoration: none;
    display: inline-block;
    transition: .2s;
}

header nav.menu-desktop a:hover {
    color: #fff;
    transform: scale(1.05);
}

header nav ul {
    list-style-type: none;
}

header nav.menu-desktop ul li {
    display: inline-block;
    padding: 0 40px;
}

/* ESTILO DO MENU MOBILE */
.diego-abrir-menu i {
    color: #48b6c0;
    font-size: 40px;
}

.menu-mobile {
    background-color: #000;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
    width: 0%;
    overflow: hidden;
    transition: .4s;
}

.menu-mobile.abrir-menu {
    width: 70%;
}

.menu-mobile.abrir-menu~.overlay-menu-moba {
    display: block;
}

.menu-mobile .diego-fechar {
    padding: 20px 5%;
}

.menu-mobile .diego-fechar i {
    color: #48b6c0;
    font-size: 30px;
}

.menu-mobile nav ul {
    text-align: right;
}

.menu-mobile nav ul li a {
    color: #000000;
    font-size: 20px;
    font-weight: 300;
    padding: 20px 8%;
    display: block;
}

.menu-mobile nav ul li a:hover {
    background-color: #48b6c0;
    color: #000;
}

.overlay-menu-moba {
    background-color: #00000093;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 88888;
    display: none;
}

/* ESTILO DO TOPO DO SITE */
section.topo-do-site {
    padding: 40px 4%;
}

section.topo-do-site .flex {
    align-items: center;
    justify-content: center;
    gap: 90px;
}

.topo-do-site h1 {
    color: #000000;
    font-size: 42px;
    line-height: 40px;
}

.topo-do-site .txt-topo-site h1 span {
    color: #48b6c0;
    font-size: 50px;
}

.topo-do-site .txt-topo-site p {
    color: #000000;
    margin: 40px 0;
    text-align: justify;
    font-size: 25px;
}

.topo-do-site .img-topo-site img {
    position: relative;
    animation: flutuar 2s ease-in-out infinite alternate;
    height: 320px;
    width: 480px;
}

/* ANIMAÇÃO DA FLUTUAÇÃO */
@keyframes flutuar {
    0% {
        top: 0;
    }

    100% {
        top: 30px;
    }
}

/* ESTILO DAS ESPECIALIDADES */
section.especialidades {
    padding: 40px 4%;

}

section.especialidades .flex {
    gap: 60px;
}

.especialidades .especialidades-box {
    color: #000000;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #fff;
    margin-top: 45px;
    transition: .2s;
    font-size: 20px;
}

.especialidades .especialidades-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #073c4681;
}

.especialidades .especialidades-box i {
    font-size: 70px;
    color: #48b6c0;
}

.especialidades .especialidades-box h3 {
    font-size: 28px;
    margin: 15px 0;
}

/* ESTILO DO SOBRE */
section.sobre {
    padding: 80px 4%;
}

section.sobre .flex {
    align-items: center;
    gap: 60px;
}

.sobre .txt-sobre {
    color: #000000;
    font-size: 25px;
}

.sobre .txt-sobre h2 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 30px;
}

.sobre .txt-sobre h2 span {
    color: #48b6c0;
    display: block;
}

.sobre .txt-sobre p {
    margin: 20px 0;
    text-align: justify;
}

.diego-social button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background-color: #d8e5f1;
    font-size: 22px;
    cursor: pointer;
    margin: 0 5px;
    transition: .2s;
}

/* ESTILO DO PORTIFÓLIO */
section.portifolio {
    padding: 80px 4%;
}



section.portifolio .flex {
    justify-content: space-around;
    margin-top: 60px;
}

.img-portifolio {
    box-shadow: 0 0 20px #073c4681;

    width: 360px;
    height: 460px;
    background-color: #48b6c0;
    background-size: cover;
    background-position: 100% 0%;
    transition: 8s;
    cursor: pointer;
    border-radius: 40px;
    position: relative;
}

/* EFEITO HOVER(FUTURAMENTE) */
.img-portifolio:hover {
    background-position: 100% 100%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000009f;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: #010000;
    opacity: 0;
    transition: .5s;
}

.overlay:hover {
    opacity: 1;
}

/* ESTILO DO FORMULÁRIO DE CONTATO */
section.formulario {
    padding: 80px 4%;
}

/* ESTILO DO RODAPÉ */

footer {
    padding: 40px 4%;
    box-shadow: 0 0 40px 10px #ffffff13;
}

footer .flex {
    justify-content: space-between;
}

footer .line-footer {
    padding: 20px 0;
}

.borda {
    border-top: 2px solid #48b6c0;
}

footer .line-footer p i {
    color: #48b6c0;
    font-size: 22px;

}

footer .line-footer p a {
    color: #000000;
}

@media screen and (max-width: 1020px) {

    /* GERAL CLASSES */
    .flex {
        flex-direction: column;
    }

    .topo-do-site .flex {
        flex-direction: column-reverse;
    }

    h2.titulo {
        font-size: 34px;
        line-height: 30px;
    }

    /* CABEÇALHO */


    /* TOPO DO SITE */
    section.topo-do-site .flex {
        gap: 40px;
    }

    section.topo-do-site {
        padding: 20px 8%;
    }

    .topo-do-site h1 {
        font-size: 30px;
    }

    .topo-do-site .img-topo-site img {
        width: 100%;
    }

    /* ESTILO DAS ESPECIALIDADES */
    section.especialidades {
        padding: 40px 8%;
    }

    /* SOBRE */
    section.sobre {
        padding: 80px 8%;
    }

    .sobre .txt-sobre h2 {
        font-size: 34px;
        line-height: 35px;
        text-align: center;
    }

    .diego-social {
        text-align: center;
    }

    .img-sobre img {
        width: 100%;
    }

    /* PORTIFÓLIO */
    section.portifolio {
        padding: 80px 8%;
    }

    .img-portifolio {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    section.portifolio .flex {
        gap: 60px;
    }

    /* RODAPÉ */
    footer .flex {
        flex-direction: column;
        gap: 30px;
    }

    footer .line-footer {
        text-align: center;
    }

}

/* END */