@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --font: "Poppins", sans-serif;
    --primary-color: #23202c;
    --secondary-color: #9fa6d0;
    --neutral-color: #f3f3f3;
    --neutral-hover-color: #ebeaea;
    --dark-color: #242424;
    --cta-color: #55bb58;
    --cta-hover-color: #59d95d;
    --cta-text-color: #202a1e;
    --link-color: #242424;
    --link-hover-color: #188dc6;
}

/* CONTAINER */
.container-fluid {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    font-family: var(--font);
}

/* HEADER */
.header {
    width: 100%;
    height: 100vh;
    aspect-ratio: 16/9;
    object-fit: cover;
    background-image: url("../img/banner-hero.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-attachment: fixed;
}

.header-wrapper {
    padding: 17px 100px;
    transition: all 0.4s ease;
}

.menu > ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
}

.menu ul > li a {
    text-decoration: none;
    color: var(--neutral-color);
    font-size: 12pt;
    font-weight: 500;
}

.menu ul > li a:hover {
    color: var(--neutral-hover-color);
    transition: all 0.4s ease;
}

.header-wrapper-fixed {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--primary-color); /* Altere para a cor desejada */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999; /* Garante que fique por cima de tudo */
}

.hero {
    width: 100%;
    height: 100%;
    padding: 70px 100px;
}

.hero-title {
    padding-bottom: 15px;
}

.hero-title h1 {
    font-size: 26pt;
    color: var(--neutral-color);
    line-height: 46px;
}

.hero-subtitle {
    padding-bottom: 45px;
}

.hero-subtitle h2 {
    font-size: 14pt;
    color: var(--neutral-color);
    line-height: 25px;
}

/* BUTTON CTA */
.btn-cta {
    padding: 15px 22px;
    color: var(--cta-text-color);
    text-decoration: none;
    font-weight: 600;
    background-color: var(--cta-color);
    border-radius: 50px;
    font-size: 13pt;
}

.btn-cta:hover {
    background-color: var(--cta-hover-color);
    transition: all 0.4s ease;
}

/* SOBRE */
.about {
    padding: 70px 300px 120px 300px;
    background-color: var(--neutral-color);
    text-align: center;
}

.about-avatar {
    padding-bottom: 30px;
}

.about-title {
    padding-bottom: 35px;
}

.about-title h1 {
    color: var(--dark-color);
    font-size: 19pt;
    font-weight: 500;
}

.about-content {
    padding-bottom: 55px;
}

.about-content p {
    color: var(--dark-color);
    font-size: 11pt;
    font-weight: 400;
}

.about-social a {
    border-radius: 100px;
    padding: 10px 15px;
    margin: 0 30px;
    color: var(--neutral-color);
    background-color: var(--link-color);
    font-size: 12pt;
}

.about-social a:hover {
    background-color: var(--link-hover-color);
    transition: all 0.4s ease;
}

/* SERVIÇOS */
.services {
    background-color: var(--primary-color);
}

.services-avatar {
    height: 100%;
    background-image: url("../img/banner-servicos.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.services-wrapper {
    padding: 50px 0;
    color: var(--neutral-color);
}

.services-minititle p {
    text-align: center;
    font-size: 10pt;
    text-decoration: underline;
}

.services-title {
    padding: 0px 70px 15px 70px;
}

.services-title h1 {
    font-size: 20pt;
    font-weight: 600;
    line-height: 32px;
    text-align: center;
}

.services-description {
    padding: 0px 70px 40px 70px;
}

.services-description h2 {
    font-size: 12pt;
    font-weight: 400;
    line-height: 25px;
    text-align: center;
}

.services-item {
    width: 250px;
    max-height: 400px;
    border: 2px solid var(--secondary-color);
    margin: 5px;
}

.services-item-head {
    border-bottom: 2px solid var(--secondary-color);
}

.services-item-head-title {
    padding: 5px;
}

.services-item-head-title h3 {
    font-size: 13pt;
    font-weight: 500;
    text-align: center;
}

.services-item-body {
    padding: 12px;
}

.services-item-body-description p {
    font-size: 10pt;
    font-weight: 300;
}

.services-item-body-points {
    font-size: 11pt;
    font-weight: 500;
}

.services-item-body-points ul {
    list-style: none;
    padding-left: 20px;
}

.services-item-body-points ul li::before {
    content: "✓";
    padding-right: 5px;
}

.services-cta {
    margin-top: 50px;
}

/* PORTFÓLIO */
.portfolio {
    background-color: var(--secondary-color);
}

.portfolio-wrapper {
    padding: 30px 100px;
    text-align: center;
    color: var(--neutral-color);
}

.portfolio-title {
    padding-bottom: 15px;
}

.portfolio-title h1 {
    font-size: 20pt;
    font-weight: 600;
}

.portfolio-description h2 {
    font-size: 14pt;
    font-weight: 400;
    line-height: 27px;
}

.portfolio-items {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    background-color: #000;
}

.portfolio-item > h3 {
    width: 230px;
    color: var(--neutral-hover-color);
    position: absolute;
    margin: 135px 44px;
    font-weight: 600;
    text-align: center;
    text-shadow: 1px 1px 4px var(--dark-color);
}

.portfolio-item a:hover {
    opacity: 0.45;
    transition: all 0.4s ease;
}

.portfolio-item a img {
    max-width: 100%;
    width: 337.74px;
    max-inline-size: 100%;
    flex-basis: 25vw;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.contact {
    width: 100%;
    height: 100%;
    padding: 100px 0;
    background-image: url("../img/banner-contato.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-wrapper {
    padding: 80px 100px 200px 100px;
    color: var(--neutral-color);
}

.contact-title {
    padding-bottom: 35px;
}

.contact-title h1 {
    font-size: 26pt;
    font-weight: 600;
    line-height: 40px;
}

.contact-description {
    padding-bottom: 60px;
}

.contact-description h2 {
    font-size: 14pt;
    font-weight: 400;
    line-height: 27px;
}

/* FOOTER */
.footer-wrapper {
    height: 45px;
    background-color: var(--dark-color);
}

.footer-wrapper p {
    font-size: 8pt;
    font-weight: 400;
    text-align: center;
    color: var(--neutral-hover-color);
    padding: 12px 30px;
}

/* RESPONSIVIDADE - MEDIA QUERY */
@media screen and (width <= 1024px) {
    .logo {
        display: flex;
        justify-content: center;
    }

    .logo img {
        width: 70px;
        padding-bottom: 15px;
    }

    .menu ul > li a {
        font-size: 10pt;
    }

    .about {
        padding: 70px 220px 120px 220px;
    }

    .portfolio-items a img {
        width: 100vw;
        aspect-ratio: 4/3;
        object-fit: cover;
    }
}

@media screen and (width <= 768px) {
    .header {
        background-size: cover;
    }

    .header-wrapper {
        padding: 17px 50px;
    }

    .hero {
        padding: 50px;
    }

    .btn-cta {
        font-size: 11pt;
    }

    .about {
        padding: 55px 130px 100px 130px;
    }

    .portfolio-wrapper {
        padding: 30px 70px;
    }

    .portfolio-title h1 {
        font-size: 16pt;
    }

    .portfolio-description h2 {
        font-size: 12pt;
        line-height: 22px;
    }

    .portfolio-items a img {
        width: 100vw;
        aspect-ratio: 4/3;
        object-fit: cover;
    }

    .contact-wrapper {
        padding: 0px 70px 130px 70px;
    }
}

@media screen and (width <= 500px) {
    .header-wrapper {
        padding: 17px 25px;
    }

    .menu ul > li a {
        font-size: 10pt;
        margin-right: 12px;
    }

    .about {
        padding: 55px 75px;
    }

    .btn-cta {
        font-size: 7pt;
    }
}

