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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/* Barra de Navegação */
#navbar {
    background-color: black;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
}

/* Logo */
.navbar-brand {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-nav {
    display: flex;
    justify-content: center;
    align-items: start;
}

.navbar-right {
    display: flex;
    justify-content: start;
}

/* Links do Menu */
.nav-link {
    font-size: 1.2em;
    color: white;
}

.navbar-nav .nav-item a:hover {
    color: #d9ff05 !important;
    text-decoration: underline;
    text-underline-offset: 6px;
}

.navbar-nav .nav-item a:visited {
    color: white;
}

.navbar-nav .nav-item a:focus {
    color: white;
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* Botão Receber Análise Gratuita */
.btn {
    white-space: nowrap;
}

.btn-purple {
    font-size: 1.1em;
    font-weight: 600;
    width: auto;
    margin: 5px;
    color: white;
    background-color: #8a2be2;
    border: none;
    padding: 10px 36px;
    border-radius: 12px;
    transition: transform 1s ease, background-color 1s ease;
}

.btn-purple:hover {
    background-color: #8a6be2;
    transform: scale(1.1);
}

/* Home */

#home {
    position: relative;
    padding-top: 20px;
    background: black;
    color: white;
}

/* Fonts para o Home */
@font-face {
    font-family: 'Italianno';
    src: url('../fonts/Italianno-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Birthstone';
    src: url('../fonts/Birthstone-Regular.ttf') format('truetype');
}

/* Estilos para o Home */
#heading {
    white-space: nowrap;
    font-size: clamp(2rem, 14vw, 14rem);
    line-height: 1;
}

.criatividade {
    font-family: 'Italianno';
}

.constante {
    font-family: 'Birthstone';
}

.content {
    width: 90%;
    font-size: clamp(1rem, 2vw, 1.3rem);
    text-align: left;
}

.criatividade , .constante {
    white-space: nowrap;
    font-weight: bold;
}

.sparkle {
    color: #8a2be2;
    margin-right: 60px;
}

/* Final Home */

/* Serviços */

#servicos {
    background: #10002b;
    color: white;
}

.service-card {
    background: white;
    color: black;
    padding: 10px 40px;
    border-radius: 15px;
}

.service-card h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.service-card i {
    font-size: clamp(2.5rem, 4vw, 4rem);
}

.service-card p {
    font-size: clamp(1rem, 2vw, 1.3rem);
}

.badge-custom {
    font-size: 1rem;
    background-color: #d0ff00;
    display: inline-block;
    color: black;
    padding: 14px;
    font-weight: bold;
    border-radius: 6px;
}

/* Final Serviços */

/* Metodologia */

#metodologia {
    background: #10002b;
    color: white;
}

#metodologia h4 {
    font-size: clamp(3.4rem, 5vw, 4rem);
}

#metodologia p {
    font-size: clamp(1.2rem, 2vw, 1.3rem);
}

.metodologia-text {
    display: flex;
    align-items: center;
    text-align: end;
}

.process-container {
    position: relative;
    margin: 0;
    padding: 0;
    border-left: 1px solid #ececec;
    border-right: 1px solid #ececec;
}

.process-box {
    background: linear-gradient(to right, #8a2be2, #5a189a);
    font-size: 1em;
    color: white;
    padding: 14px 80px 14px 20px;
    border-radius: 12px;
    margin: 5px 10px;
    display: inline-block;
    width: fit-content;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
}

.line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 5px,
        #ececec 5px,
        #ececec 10px
    );
    transform: translateX(-50%);
    z-index: 0;
}

.process-container::after, .process-container::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 7px;
    height: 7px;
    background-color: #ececec;
    border-radius: 50%;
    transform: translateX(-50%);
}

.process-container::after {
    bottom: 0;
}

.process-container::before {
    top: 0;
}

/* Final Metodologia */

/* Logos */

#logos {
    background: black;
    overflow: hidden;
    white-space: nowrap;
    padding: 40px 0;
}

/* Animação para o Slider Logos */
@keyframes slider {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Estilos para o Slider de Logos */
.infinity-slider {
    display: inline-block;
    animation: 12s slider infinite linear;
}

.infinity-slider img {
    height: 50px;
    margin: 0 40px;
}

/* Final Logos */


/* Portfólio */

#portfolio {
    background: black;
    color: white;
}

#portfolio h4 {
    font-family: 'Birthstone';
    font-size: 5em;
    font-weight: bold;
}

.swiper {
    width: 130%;
}

.swiper-wrapper {
    padding: 0;
}

.swiper-slide {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 400px;
}

.swiper-slide a {
    color: white;
    text-decoration: none;
}

.slide-img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    overflow: hidden;
}

.slide-title {
    font-family: 'Birthstone';
    font-size: 2em;
    margin: 20px 0 0 0;
    align-self: flex-start;
}

.custom-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-navigation i {
    font-size: 1.3em;
    cursor: pointer;
    color: white;
}

/* Final Portfólio */

/* Nossos Números */

#nossos-numeros {
    background: black;
    color: white;
}

#nossos-numeros h4 {
    font-size: clamp(4rem, 5vw, 5rem);
}

/* Estilos para Nossos Números */
.highlight {
    color: #d9ff05;
}

.stats {
    color: #d9ff05;
    font-size: clamp(3.5rem, 5vw, 4rem);
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.stats-description {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
}

/* Final Nossos Números */

/* Contato */

/* Animação fundo de tela Galáxia */
.galaxy {
    position: relative;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #000033, #000000);
    overflow: hidden;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: white;
    border-radius: 50%;
    animation: twinkle 2s infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Estilos para o formulário de contato */
.espacamento-contato {
    margin-top: 70px;
    margin-bottom: 70px;
}    

.form-contato {
    background-color: #100d25;
    padding: 40px;
    border-radius: 15px;
    color: white;
}
  
.form-contato h2 {
    margin-bottom: 20px;
    font-size: 2em;
}
  
.form-contato .form-control {
    background-color: #1c1835;
    border: none;
    color: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px; 
    font-size: 1.1em; 
}
  
.form-contato .form-control:focus {
    background-color: #1c1835;
    color: white;
    border: 1px solid #8a2be2;
    box-shadow: none;
}

.form-contato textarea.form-control {
    height: 150px;
}
  
.form-contato .btn-whatsapp {
    background-color: #25d366;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.form-contato .btn-whatsapp a {
    color: white;
    text-decoration: none;
}

.form-contato .btn-enviar {
    background-color: #1c1835;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}
  
.form-contato .btn-whatsapp:hover {
    background-color: #128c7e;
}
  
/* Estilos para a imagem giratória */
#rotating-image {
    width: 300px;
    height: 300px;
    transition: transform 0.5s ease;
}

/* Final Contato */

/* Rodapé */

/* Estilos para o Rodapé */
.footer {
    background-color: black;
    color: white;
    padding: 40px 20px;
}

.footer a {
    color: white;
    font-size: 1.4rem;
    text-decoration: none;
}

.footer spam {
    margin-top: 20px;
}

.footer a:hover {
    color: #d9ff05;
}

.footer .social-icons a {
    margin-right: 15px;
    font-size: 1.5rem;
}

.footer .btn {
    background-color: #8a2be2;
    font-size: 1.2rem;
    color: white;
    border-radius: 40px;
    border: none;
    padding: 15px 30px;
    transition: transform 1s ease, background-color 1s ease;
}

.footer .btn:hover {
    background-color: #8a6be2;
    color: black;
    transform: scale(1.2);
}

/* Fim Rodapé */

/* Media Queries
-------------------------------------------------------------------*/

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .sparkle {
        margin-right: 20px;
    }

    .service-card {
        margin: 10px 0;
    }

    .metodologia-text {
        margin-top: 20px;
        text-align: start;
    }

    .process-container {
        padding: 30px 0;
        border: none;
    }

    .process-box {
        margin: 10px;
        padding: 14px 20px;
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    #portfolio h4 {
        padding-left: 15px;
    }

    .swiper {
        width: 150%;
    }

    .swiper-slide {
        height: 350px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .sparkle {
        margin-right: 30px;
    }

    .service-card {
        margin: 10px 0;
    }

    .metodologia-text {
        margin-top: 20px;
        text-align: start;
    }

    .process-container {
        padding: 30px 0;
        border: none;
    }

    .process-box {
        margin: 10px;
        padding: 14px 20px;
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    #portfolio h4 {
        padding-left: 10px;
    }

    .swiper {
        width: 150%;
    }

    .swiper-slide {
        height: 380px;
    }
}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991.98px) {
    .sparkle {
        margin-right: 40px;
    }

    .process-box {
        padding: 14px 20px;
    }

    .process-2 {
        margin-left: 80px;
    }
    
    .process-3 {
        margin-left: 160px;
    }
    
    .process-4 {
        margin-right: 180px;
    }
    
    .process-5 {
        margin-right: 80px;
    }
}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199.98px) {
    .sparkle {
        margin-right: 50px;
    }

    .process-box {
        padding: 14px 60px 14px 20px;
    }

    .process-2 {
        margin-left: 120px;
    }
    
    .process-3 {
        margin-left: 250px;
    }
    
    .process-4 {
        margin-right: 250px;
    }
    
    .process-5 {
        margin-right: 120px;
    }

    #portfolio h4 {
        padding-left: 10px;
    }
}

/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    .process-2 {
        margin-left: 170px;
    }
    
    .process-3 {
        margin-left: 300px;
    }
    
    .process-4 {
        margin-right: 320px;
    }
    
    .process-5 {
        margin-right: 150px;
    }
}

/* Extra extra large devices (large desktops, 1400px and up)*/
@media (min-width: 1400px) {
    .process-2 {
        margin-left: 170px;
    }
    
    .process-3 {
        margin-left: 380px;
    }
    
    .process-4 {
        margin-right: 400px;
    }
    
    .process-5 {
        margin-right: 180px;
    }
}