@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00adef;
    --primary-hover: #008dc5;
}

body {
    color: #ffffff;
    background-color: rgb(0, 13, 22);
    font-family: "Raleway", sans-serif;
}


.container {
    position: relative;
    min-width: 100%;
    min-height: 100vh;
}

.container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/assets/textura-background.png");
    opacity: 0.8;
    pointer-events: none;
    z-index: 1;
}

.conteudo {
    min-width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
}


/* ------------------------------------ HERO ------------------------------------ */
.hero {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.hero-content {
    position: relative;
    width: 100%;
    min-height: 80vh;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-inline: 28px;
}

.hero-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgb(0, 13, 22) 100%),
        url('/assets/img/bg-hero.webp') no-repeat center center/cover;
    z-index: -2;
}

.hero-content img {
    width: 100%;
    max-width: 120px;
}

.hero-content h1 {
    margin-top: 25px;
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 35px;
    text-shadow: 0 0 10px rgba(0, 23, 49, 0.541);
    text-transform: uppercase;

}

.hero-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.hero-link-trabalho {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    color: white;
    border: 2px solid var(--primary);
    padding: 12px 32px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-link-trabalho:hover {
    background-color: var(--primary);
}

.hero-link-contato {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    color: white;
    border: 2px solid var(--primary);
    background-color: var(--primary);
    padding: 12px 32px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-link-contato:hover {
    background-color: var(--primary-hover);
    border: 2px solid var(--primary-hover);
}

@media (max-width: 768px) {
    .hero-links {
        flex-direction: column;
    }
}


/* ------------------------------------ NOSSA HISTÓRIA ------------------------------------ */

.historia {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 150px;
}

.historia-content {
    width: 100%;
    max-width: 1180px;
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 40px;
    padding-inline: 28px;
}

.historia-content div {
    flex: 1;
    width: 100%;
    max-width: 560px;
}

.historia-text {
    padding-top: 20px;
}

.historia-text h2 {
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.historia-text p {
    text-align: justify;
}

.historia-img img {
    width: 100%;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .historia-content {
        flex-direction: column;
    }
}

/* ------------------------------------ NOSSO LOGOTIPO ------------------------------------ */

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.logo-content {
    width: 100%;
    max-width: 1180px;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: row-reverse;
    gap: 40px;
    padding-inline: 28px;
}

.logo-content div {
    flex: 1;
    width: 100%;
    max-width: 560px;
}

.logo-text {
    padding-top: 20px;
}

.logo-text h2 {
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.logo-text p {
    text-align: justify;
}

.logo-img img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    aspect-ratio: 1/1;
}

@media (max-width: 768px) {
    .logo-content {
        flex-direction: column;
    }
}

/* ------------------------------------ HOJE ------------------------------------ */
.hoje {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: rgba(0, 13, 22, 0.95);
}

.hoje-content {
    width: 100%;
    max-width: 1180px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding-inline: 28px;
    flex-direction: column;
}

.hoje-text h2 {
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.hoje-text p {
    text-align: justify;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
    color: #ffffff;
}

.hoje-text blockquote {
    font-style: italic;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary);
    border-left: 4px solid var(--primary);
    padding-left: 16px;
    margin-top: 20px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .hoje-content {
        padding-inline: 16px;
    }

    .hoje-text h2 {
        font-size: 2rem;
    }

    .hoje-text p,
    .hoje-text blockquote {
        font-size: 0.95rem;
    }
}

.frase-destaque {
    display: flex;
    justify-content: center;
    align-items: center;
}

.frase-destaque blockquote {
    font-style: italic;
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--primary);
    padding-inline: 16px;
    text-align: center;
}

/* ------------------------------------ PORTFÓLIO ------------------------------------ */
.portfolio {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.portfolio-content {
    width: 100%;
    max-width: 1180px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding-inline: 28px;
    flex-direction: column;
}

.portfolio h2 {
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
}

.portfolio-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-card {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background-color: rgb(0, 16, 27);

    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 10px #008dc548;
}

.portfolio-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    aspect-ratio: 16/9;
}

.portfolio-card h3 {
    font-weight: 700;
    color: var(--primary);
}

.portfolio-card p {
    text-align: justify;
    font-size: 0.9rem;
}


.portfolio-content a {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    color: white;
    border: 2px solid var(--primary);
    background-color: var(--primary);
    padding: 12px 32px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.portfolio-content a:hover {
    background-color: var(--primary-hover);
    border: 2px solid var(--primary-hover);
}

@media (max-width: 1024px) {
    .portfolio-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-cards {
        grid-template-columns: 1fr;
    }
}

/* ------------------------------------ CONTATO ------------------------------------ */
.contato {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.contato-content {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding-inline: 28px;
    flex-direction: column;
    background-color: rgb(0, 16, 27);
    border-radius: 30px;
    padding: 100px 30px;
    background:
        linear-gradient(to bottom, rgba(0, 8, 19, 0.85) 0%, rgb(0, 13, 22) 100%),
        url('/assets/img/bg-contact.webp') no-repeat center center/cover;
}

.contato h2 {
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary);
}

.contato-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.form-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.form-campo {
    display: flex;
    flex-direction: column;

}

.form-campo label {
    margin-left: 10px;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.contato-form input {
    background: none;
    border: none;
    outline: none;
    border-bottom: 2px;
    width: 300px;
    height: 30px;
    color: white;
    background-color: rgb(0, 26, 44);
    padding: 20px;
    border-radius: 50px;
    font-size: 1rem;
}

.form-btn {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    color: white;
    border: 2px solid var(--primary);
    background-color: var(--primary);
    padding: 10px 32px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
    cursor: pointer;
}

.form-btn:hover {
    background-color: var(--primary-hover);
    border: 2px solid var(--primary-hover);
}

@media (max-width: 768px) {
    .form-content {
        flex-direction: column;
    }
}

/* ------------------------------------ PORTFÓLIO ------------------------------------ */
.loc {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.loc-content {
    width: 100%;
    max-width: 1180px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding-inline: 28px;
    flex-direction: column;
}

.loc h2 {
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
}

.loc-infos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.loc-text {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.loc-text,
.loc-map {
    flex: 1;
}

.loc-text-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.loc-card-redes {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.loc-card-redes a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: white;
    background-color: var(--primary);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 23, 49, 0.541);
    padding: 8px 12px;
    border-radius: 50px;
    transition: all 0.3s ease;

}

.loc-card-redes a:hover {
    background-color: var(--primary-hover);
}

.loc-map iframe {
    width: 500px;
    height: 400px;
    border-radius: 10px;
}


@media (max-width: 768px) {
    .loc-infos {
        flex-direction: column;
    }

    .loc-map iframe {
        width: 400px;
        height: 300px;
        border-radius: 10px;
    }
}


/* ------------------------------------ FOOTER ------------------------------------ */
footer {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 28px;
    background-color: rgb(0, 21, 36);
}




/* ======================================================================================================================================================================================= */

header {
    text-align: center;
    padding: 2rem 1rem;
}

.titulo-principal {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.portfolio-container {
    width: 90%;
    max-width: 1080px;
    margin: 2rem auto;
}

.portfolio-item {
    margin-bottom: 4rem;
}

.portfolio-item .categoria {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.portfolio-item .descricao {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Swiper ajustes */
.swiper {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;

}