/* ESTILO GERAL */
body {
    background-color: #262626;
    color: #ffffff;
    font-family: "Poppins", Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

h1 {
    text-decoration-color: #59c5c7;
    font-size: 2.5rem;
    margin: 2rem 4rem;
}

/* HEADER */
.header {
    background: #262626;
    border-bottom: 2px solid #59c5c7;
    width: 100%;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo img {
    height: 90px;
    width: auto;
    display: block;
}

/* NAVEGAÇÃO */
.nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    transition: 0.3s ease;
    font-weight: 500;
}

.nav a:hover {
    color: #59c5c7;
}

/* BOTÃO CONTATO */
.btn-contato {
    padding: 8px 18px;
    border: 2px solid #59c5c7;
    border-radius: 6px;
    transition: 0.3s ease;
}

.btn-contato:hover {
    background-color: #59c5c7;
    color: #ffffff;
}

/* ============================
   SEÇÃO QUEM SOMOS
============================ */

.quem-somos {
    padding: 80px 0;
    color: #ffffff;
    background-color: #262626;
}

.container-qs {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* TEXTO */
.qs-texto h2 {
    font-size: 2.2rem;
    color: #59c5c7;
    margin-bottom: 20px;
}

.qs-texto p {
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #e8e8e8;
}

/* IMAGEM */
.qs-img img {
    width: 800px;
    max-width: 100%;
    border-radius: 12px;
    border: 2px solid #59c5c7;
    box-shadow: 0 0 12px #59c5c7;
    object-fit: cover;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .container-qs {
        flex-direction: column;
        text-align: center;
    }

    .qs-img img {
        width: 330px;
    }
}

/* ============================
   SEÇÃO PROJETOS
============================ */

.projetos {
    padding: 80px 0;
    background-color: #262626;
    color: #fff;
}

.container-projetos {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    text-align: center;
}

.projetos h2 {
    font-size: 2.2rem;
    color: #59c5c7;
    margin-bottom: 10px;
}

.descricao-projetos {
    font-size: 1.2rem;
    color: #e4e4e4;
    margin-bottom: 40px;
}

/* CARDS */
.cards-projetos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background-color: #1f1f1f;
    border: 2px solid #59c5c7;
    border-radius: 12px;
    padding: 20px;
    transition: 0.3s ease;
    box-shadow: 0 0 12px #59c5c7;
}

.card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 18px #59c5c7;
}

/* IMAGENS */
.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* TÍTULOS DOS CARDS */
.card h3 {
    font-size: 1.4rem;
    color: #59c5c7;
    margin-bottom: 10px;
}

/* TEXTO DOS CARDS */
.card p {
    font-size: 1rem;
    color: #d6d6d6;
    line-height: 1.5;
}

/* ================================
   CARROSSEL DE IMAGENS
================================ */

.carrossel {
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 180px;
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.carousel-img.active {
    opacity: 1;
}

/* Botões */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: #59c5c7;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    user-select: none;
}

.carousel-btn.left {
    left: 10px;
}

.carousel-btn.right {
    right: 10px;
}

.carousel-btn:hover {
    background: rgba(89,197,199,0.5);
}

/* Responsivo */
@media (max-width: 600px) {
    .carousel-container {
        height: 150px;
    }

    .carousel-img {
        height: 150px; 
    }
}

/* PORTFÓLIO */
.portfolio {
    padding: 80px 0;
    background-color: #262626;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
}

.portfolio h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #59c5c7;
    margin-bottom: 10px;
}

.subtitulo {
    text-align: center;
    margin-bottom: 40px;
    color: #f9fafd;
    opacity: 0.8;
}

.portfolio-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card {
    background-color: #1e1e1e;
    border: 2px solid #59c5c7;
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(89, 197, 199, 0.4);
}

.card h3 {
    color: #59c5c7;
    margin-bottom: 15px;
}

.card ul {
    list-style: none;
    padding-left: 0;
}

.card ul li {
    margin-bottom: 10px;
    line-height: 1.4rem;
}

/* ============================
   SEÇÃO CONTATO
============================ */

.contato {
    background-color: #262626;
    padding: 80px 0;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    border-top: 2px solid #59c5c7;
}

.contato-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    text-align: center;
}

.contato h2 {
    font-size: 2.4rem;
    color: #59c5c7;
    margin-bottom: 10px;
}

.descricao-contato {
    font-size: 1.1rem;
    color: #dcdcdc;
    margin-bottom: 40px;
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.contato-card {
    background: #1e1e1e;
    border: 2px solid #59c5c7;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 0 12px rgba(89, 197, 199, 0.25);
    transition: 0.3s ease;
}

.contato-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(89, 197, 199, 0.45);
}

.contato-card h3 {
    color: #59c5c7;
    margin-bottom: 15px;
}

.contato-card p {
    color: #e6e6e6;
    line-height: 1.5;
    margin-bottom: 15px;
}

.btn-contato-sec {
    display: inline-block;
    padding: 8px 16px;
    border: 2px solid #59c5c7;
    border-radius: 6px;
    color: #59c5c7;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}

.btn-contato-sec:hover {
    background-color: #59c5c7;
    color: #1e1e1e;
}

.redes a {
    display: inline-block;
    margin: 5px 10px;
    color: #59c5c7;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.creditos {
    text-align: center;
    width: 100%;
    display: block;
    margin: 20px 0;
    color: #fff;
    opacity: 0.6;
}

.redes a:hover {
    color: #fff;
}

/* RESPONSIVO PARA CELULARES */
@media (max-width: 768px) {

    .logo img {
        height: 70px;
    }

    .nav {
        gap: 15px;
    }

    .nav a {
        font-size: 14px;
    }

    .btn-contato {
        padding: 6px 14px;
    }
}

/* RESPONSIVO PARA TELAS MUITO PEQUENAS */
@media (max-width: 500px) {

    .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .logo img {
        height: 65px;
    }
}