body {
    background-color: rgb(0, 0, 0);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}
.main-header {
    background-color: #0d0d0d;
    border-bottom: 1px solid #ffffff20;
    padding: 15px 0;
    position: sticky;
    top: 0px;
    z-index: 1000;
}
.main-header img {
    margin-top: 7px;
    margin-left: 7px;
    max-height: 20px;
}
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2;
}

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: #5b04ac;
    border-radius: 2px;
    transition: all 0.5s ease;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #0d0d0d;
    padding-top: 20px;
    padding-bottom: 30px;
    transition: transform 0.4s ease-in-out;
    transform: translateY(-100%);
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
}
.nav-links a:hover {
    color: #5b04ac;
    transition: background-color 0.3s, color 0.3s;
}

.nav-links .nav-cta {
    background-color: #5b04ac;
    padding: 10px 20px;
    border-radius: 30px;
}
.nav-links .nav-cta:hover {
    background-color: #ffffff;
    color: #000000;
    transition: background-color 0.3s, color 0.3s;
}

.main-nav.active {
    transform: translateY(0);
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(0px) rotate(45deg);
}
.hamburger-menu.active .bar:nth-child(2) {
    transform: translateY(0px) rotate(45deg);
}
.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(0px) rotate(45deg);
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 10px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 0px;
}

.logo span {
    font-size: 16px;
    font-weight: 500;
}

.contact-button {
    font-size: 15px;
    background-color: rgb(17, 17, 17);
    border: 3px solid #ffffff;
    color: #ffffff;
    padding: 8px 11px;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.contact-button:hover {
    background-color: #ffffff;
    color: #0d0d0d;
}

.hero .img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 260px;
    margin-bottom: 90px;
    padding-top: 100px;
}

.hero {
    background-image: url('images/background-animado.gif');
    text-align: center;
}

.hero h2 {
    font-size: 30px;
    max-width: 90%;
    margin: auto;
    margin-bottom: 60px;
    line-height: 1.1;
    background: linear-gradient(to right, #ffffff, #5b04ac, rgb(148, 113, 180), #ffffff);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s linear infinite;
}

@keyframes animate-gradient {
    to {
        background-position: 200%;
    }
}

.hero p {
    font-size: 18px;
    line-height: 1.3;
    max-width: 90%;
    margin: 0 auto 60px;
    text-align: center;
    margin-bottom: 70px;
}

.our-contanct-cta {
    color: #ffffff;
    text-align: center;
    padding: 20px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
    margin-bottom: 60px;
    transition: 0.5s;
    transition-property: box-shadow;
}

.our-contanct-cta {
    background: #5b04ac;
    box-shadow: 0 0 85px rgba(255, 255, 255, 0.705);
}

.our-contanct-cta:hover {
    color: #0d0d0d;
    background: #ffffff;
    box-shadow: 0 0 5px #5b04ac,
        0 0 25px #fdfaff,
        0 0 50px #5b04ac,
        0 0 100px #5b04ac;
}

.our-services {
    padding: 30px;
    background-image: url('images/background-fundo.png');
}

.our-services h2 {
    font-size: 28px;
    max-width: 90%;
    margin: auto;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
    text-shadow: 5px 2px 15px #000000;
}

.our-services p {
    max-width: 100%;
    margin: auto;
    text-align: center;
    font-size: 20px;
    margin-bottom: 60px;
    text-shadow: 5px 3px 4px #000000;
}

.our-services h2 i {
    color: #fdfdfd;
    animation: pulse 4s infinite;
    display: inline-block;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.services {
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.service-card {
    background-image: linear-gradient(45deg, #000000, #383838);
    border: 5px solid #dfdfdf;
    border-radius: 90%10%/4%45%;
    overflow: hidden;
    max-width: 500px;
    margin-bottom: 50px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(10px) scale(1.09);
    box-shadow: 0 15px 1px rgba(0, 0, 0, 0.2);
}

.service-info {
    padding: 15px;
}

.service-info i {
    display: block;
    font-size: 30px;
    margin-top: 20px;
    margin-bottom: auto;
    color: rgb(91, 4, 172);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.service-info h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 10px;
}

.service-info p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 25px;
}

/* ------------ SEÇÃO PORTFOLIO ----------- */
.portfolio {
    padding: 75px 0;
    background-image: url('images/background-fundo-2.png');
}

.portfolio h2 {
    margin-top: 0px;
    margin-bottom: 30px;
    max-width: 95%;
    margin: auto;
    font-size: 27px;
    text-align: center;
}

.portfolio p {
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.portfolio-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.project-card {
    background-color: #dadada;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    width: 350px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(0) scale(1.07);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.project-card img {
    width: 100%;
    height: 100%;
    display: block;
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    color: #000000;
    font-size: 22px;
    margin-bottom: 10px;
}

.project-info p {
    font-size: 16px;
    color: #000000;
    margin-bottom: 25px;
}

.project-info .cta-button {
    background-color: #000000;
    color: #fffdfd;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s;
}

.project-info .cta-button:hover {
    background-color: #5b04ac;
    color: #ffffff;
}

/* ------------ SEÇÃO PROCESSOS ------------ */
.process {
    background-image: url('images/background-fundo.png');
    padding-top: 30px;
    padding-bottom: 50px;
    text-align: center;
}

.process h2 {
    font-size: 27px;
    color: #ffffff;
    max-width: 90%;
    margin: auto;
    margin-bottom: 25px;
    text-shadow: 5px 2px 10px #000000;
}

.process h4 {
    font-size: 20px;
    max-width: 90%;
    margin: auto;
    text-shadow: 5px 2px 10px #000000;
}

.process p {
    font-weight: bold;
}

.process h2 i {
    color: #cccccc;
    font-size: 30px;
    background: linear-gradient(to right, #ffffff, #720cd2, #a8a8a8, #ffffff);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 1.5s linear infinite;
    vertical-align: middle;
}

@keyframes animate-gradient {
    to {
        background-position: 200%;
    }
}

.process-step {
    display: flex;
    flex-direction: column;
    padding-top: 30px;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.process-steps h3 {
    font-size: 24px;
    color: #000000;
    margin: 0;
}

.process-steps h3 i {
    color: #5b04ac;
}

.step-number {
    background-color: #000000;
    border: 2px solid #ffffff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.step-content:hover {
    transform: translateY(0) scale(1.05);
    box-shadow: 0 10px 5px rgba(0, 0, 0, 0.25);
}

.step-content i {
    font-size: 25px;
    margin-left: 0px;
    vertical-align: middle;
}

.step-content p {
    color: #000000;
    line-height: 1.5;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ---------- SEÇÃO DIFERENCIAIS ------------ */
.diferenciais {
    background-image: url('images/background-animado-2.gif');
    padding: 0 20px;
    text-align: center;
    box-sizing: border-box;
    padding-top: 40px;
}

.diferenciais-swiper {
    overflow: visible;
    padding-bottom: 70px;
}

.diferenciais-swiper .swiper-wrapper {
    padding-top: 8px;
    padding-bottom: 10px;
}

.diferenciais h2 {
    font-size: 30px;
    color: #ffffff;
    max-width: 90%;
    margin: auto;
    margin-bottom: 40px;
}
.diferenciais h2 span {
    font-family: "Birthstone", cursive;
    font-weight: 400;
    font-style: normal;
}

.diferenciais h2 i {
    color: #cccccc;
    font-size: 30px;
    background: linear-gradient(to right, #ffffff, #5b04ac, #a8a8a8, #ffffff);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 1.5s linear infinite;
    vertical-align: middle;
}

@keyframes animate-gradient {
    to {
        background-position: 200%;
    }
}

.swiper-slide.card {
    width: 215px;
    height: 220px;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    background-color: #5b04ac;
    border-radius: 42px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(128, 43, 43, 0.08);
    border: 2px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-origin: left;
}

.swiper-slide.card:hover {
    transform: translateY(0) scale(1.05);
    box-shadow: 0 10px 5px rgba(0, 0, 0, 0.25);
}

.swiper-pagination {
    bottom: 10 !important;
}

.diferenciais .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ffffff75;
    opacity: 1;
    transition: background-color 0.3s, width 0.3s;
}

.diferenciais .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 5px;
    background-color: #5b04ac;
    opacity: 1;
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 1000;
    color: #ffffff;
    text-shadow: 1px 4px 1px #0000006e;
    margin-top: 0px;
    margin-bottom: 10px;
}

.card h3 i {
    color: #808080;
}

.card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ffffff;
    text-shadow: 1px 3px 4px #000000b7;
}

/* --------- SEÇÃO CTA FINAL --------- */
.cta-final {
    background-image: url('images/background-fundo.png');
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.cta-final .container {
    background-image: url('images/background-animado.gif');
    padding: 20px;
    max-width: 80%;
    border-radius: 40px;
}

.cta-final span {
    display: block;
    margin-top: 3px;
    font-size: 17px;
    max-width: 90%;
    margin: auto;
    margin-bottom: 20px;
    color: #a0a0a0;
    font-weight: bold;
}

.cta-final h2 {
    padding-top: 50px;
    font-size: 30px;
    line-height: 1.1;
    max-width: 90%;
    margin: auto;
    text-align: center;
    color: #ffffff;
    text-align: center;
}
.cta-final h2 i {
    color: #cccccc;
    font-size: 30px;
    background: linear-gradient(to right, #ffffff, #5b04ac, #a8a8a8, #ffffff);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 1.5s linear infinite;
    vertical-align: middle;
}

@keyframes animate-gradient {
    to {
        background-position: 200%;
    }
}
.cta-final h2 i {
    color: #5b04ac;
}

.cta-final p {
    padding-top: 30px;
    font-size: 18px;
    max-width: 80%;
    line-height: 1.2;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.cta-final .cta-button {
    color: #000000;
    text-align: center;
    padding: 20px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
    margin-bottom: 60px;
    transition: 0.5s;
    transition-property: box-shadow;
}

.cta-final .cta-button {
    background: rgb(255, 255, 255);
    box-shadow: 0 0 85px rgba(255, 255, 255, 0.705);
}

.cta-final .cta-button:hover {
    color: #ffffff;
    background: #5b04ac;
    box-shadow: 0 0 5px #5b04ac,
        0 0 25px rgba(194, 194, 194, 0.76),
        0 0 50px #5b04ac,
        0 0 100px #5b04ac;
}
/* --------- SEÇÃO FAQ --------- */
.faq-container {
    background-image: url('images/background-fundo-3.png');
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.faq-container h2 {
    text-align: center;
    font-size: 26px;
    max-width: 90%;
    margin: auto;
    color: #ffffff;
    margin-bottom: 45px;
}
.faq-container h2 i {
    color:#5b04ac;
}

.faq-item {
    width: 80%;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 15px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}
.faq-item:last-child {
    margin-bottom: 0;
}
.faq-question {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center; 
    font-size: 16px;
    text-align: left;
    color: #000000;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-icon {
    border: solid #000000;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
    transition: transform 0.3s ease-out, border-color 0.3s ease;
}

.faq-answer {
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer p {
    padding-left: 20px;
    padding-right: 20px;
    margin: 0;
    padding-bottom: 10px;
    padding-top: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #000000;
    font-weight: bold;
    text-align: left;
}

/*--- ESTADOS ATIVOS --- */

.faq-question.active {
    background-color: #5b04ac;
    color: #ffffff;
}

.faq-question.active .faq-icon {
    transform: rotate(-135deg);
    border-color: #ffffff;
}

.faq-answer.active {
    padding-top: 5px;
}

/* --------- SEÇÃO DÚVIDAS RESTANTES --------- */
.doubts-remain {
    background-image: url('images/background-fundo.png');
    text-align: center;
    padding-bottom: 50px;
    padding-top: 50px;
}

.doubts-remain .container {
    background-image: url('images/background-animado.gif');
    padding: 20px;
    max-width: 80%;
    border-radius: 40px;
}

.doubts-remain h2 {
    padding-top: 20px;
    font-size: 30px;
    max-width: 90%;
    margin: auto;
    margin-bottom: 10px;
    line-height: 1.2;
    text-align: center;
    color: #ffffff;
    text-align: center;
}

.doubts-remain p {
    padding-top: 30px;
    font-size: 16px;
    max-width: 90%;
    margin: auto;
    line-height: 1.2;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.doubts-remain .cta-button {
    color: #ffffff;
    text-align: center;
    padding: 20px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
    margin-bottom: 35px;
    transition: 0.5s;
    transition-property: box-shadow;
}

.doubts-remain .cta-button {
    background: #5b04ac;
    box-shadow: 0 0 85px rgba(255, 255, 255, 0.705);
}

.doubts-remain .cta-button:hover {
    color: #000000;
    background: rgb(255, 255, 255);
    box-shadow: 0 0 5px rgba(110, 7, 207, 0.76),
        0 0 25px rgba(255, 255, 255, 0.76),
        0 0 50px rgb(110, 7, 207, 0.76),
        0 0 100px rgb(110, 7, 207, 0.76);
}
/* --------- SEÇÃO CTA INSTA --------- */
.cta-instagram {
    background-image: url('images/background-fundo-2.png');
    text-align: center;
    padding-top: 15px;
    padding-bottom: 40px;
}
.cta-instagram h2 {
    font-size: 25px;
    margin-top: 30px;
    text-shadow: 1px 4px 1px #000000b4;
}
.cta-instagram a {
    color: #ffffff;
    font-size: 75px;
    padding-top: 15px;
    text-decoration: none;
    display: inline-block; 
    transition: transform 0.3s ease-in-out;
    text-shadow: 3px 7px 2px #5b04ac;
}
.cta-instagram a:hover {
    transform: translateY(-8px);
    color: #ffffff;
    text-shadow: 3px 7px 2px #5b04ac;
}
/*-------- FOOTER ----------*/
.footer {
    background-color: #0d0d0d;
}
.footer-content {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.footer-about h4 {
    color: #ffffff;
    text-align: left;
}
.footer-about p {
    color: #ffffff;
    text-align: left;
}
.footer-bottom {
    text-align: left;
}

/* ----------------- SEÇÕES DE RESPONSIVIDADE ------------------ */

/* --------- SEÇÃO HERO LOGO --------- */
@media (min-width: 768px) {
    .hero p {
        max-width: 90%;
    }
}

@media (min-width: 1024px) {
    .hero p {
        max-width: 90%px;
    }
}

@media (min-width: 768px) {
    .hero .img {
        max-width: 35%;
    }
}

@media (min-width: 1024px) {
    .hero .img {
        max-width: 29%;
    }
}

@media (min-width: 1024px) {
    .hero h2 {
        max-height: 100%;
    }
}

/*-------- SEÇÃO SERVIÇOS ----------*/
@media (min-width: 1024px) {
    .services {
        gap: 40px;
    }
}

/*-------- SEÇÃO DIFERENCIAIS ----------*/
@media (min-width: 1024px) {
    .diferenciais-swiper .swiper-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .diferenciais-swiper .swiper-slide.card {
        flex-grow: 1;
        flex-basis: 250px;
        max-width: 250px;
        width: auto;
    }

    .diferenciais .swiper-pagination {
        display: none;
    }
}

/*-------- SEÇÃO CTA FINAL ----------*/
@media (min-width: 768px) {
    .cta-final .container {
        max-width: 65%;
    }
}









@media (min-width: 1024px) {
    .hamburger-menu {
        display: none;
    }

    .main-nav {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        transition: none;
        transform: none;
        padding: 8px;
    }

    .nav-links {
        flex-direction: row;
        gap: 30px;
        padding-top: 10px;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .nav-links .nav-cta {
        padding: 8px 18px;
    }
}