/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');


/* Variaveis de cores */
:root{
    --white-color: #fff;
    --dark-color: #222;
    --body-bg-color: #fff;
    --text-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    --box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
}

/* Padrão */
*{
    scroll-behavior: smooth;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Source Code Pro", monospace;
    text-decoration: none;
}





/* Slide fundo */

.bg-slider{
    z-index: 777;
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.bg-slider .swiper-slide{
    position: relative;
    width: 100%;
    height: 100vh;
}

.bg-slider .swiper-slide img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    background-position: center;
    background-size: cover;
    pointer-events: none;
}

.swiper-slide .text-content{
    position: absolute;
    top: 25%;
    color: var(--white-color);
    margin: 0 200px;
    transition: 0.3s ease;

}

.swiper-slide .text-content .title{
    font-size: 4em;
    font-weight: 700;
    text-shadow: var(--text-shadow);
    margin-bottom: 20px;
    transform: translateY(-50px);
    opacity: 0;
}

.swiper-slide-active .text-content .title{
    transform: translateY(0);
    opacity: 1;
    transition: 1s ease;
    transition-delay: 0.3s;
    transition-property: transform opacity;
}

.swiper-slide .text-content .title span{
    font-size: 0.6em;
    font-weight: 300;
}

.swiper-slide .text-content p{
    max-width: 700px;
    text-shadow: var(--text-shadow);
    padding: 20px;

    transform: translateX(-80px);
    opacity: 0;
}

.swiper-slide-active .text-content p{
    transform: translateX(0);
    opacity: 1;
    transition: 1s ease;
    transition-delay: 0.3s;
    transition-property: transform, opacity;
}

.swiper-slide .text-content .read-btn{
    border: none;
    outline: none;
    background: var(--white-color);
    color: var(--dark-color);
    font-size: 1em;
    font-weight: 500;
    padding: 8px 25px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
    transform: translateX(50px);
    opacity: 0;
    text-decoration: none;
    width: 30%;
}

.swiper-slide-active .text-content .read-btn{
    transform: translateX(0);
    opacity: 1;
    transition: 1s ease;
    transition-delay: 0.3s;
    transition-property: transform, opacity;
}

.swiper-slide .text-content .read-btn i{
 font-size: 1.6em;
 transition: 0.3s ease;   
}

.swiper-slide .text-content .read-btn:hover i{
    transform: translateX(5px);
}

.dark-layer:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}

.bg-slider-thumbs{
    z-index: 777;
    position: absolute;
    bottom: 7em;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s ease;
}

.thumbs-container{
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 3px;
    border-radius: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--box-shadow);
}

.thumbs-container img{
    width: 50px;
    height: 35px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
}

.swiper-slide-thumb-active{
    border: 1px solid var(--white-color);
}

/* Media Icons */

.media-icons{
    z-index: 999;
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 50%;
    transform: translateY(-50%);
    right: 200px;
}

.media-icons a{
    color: var(--white-color);
    font-size: 1.7em;
    margin: 10px 0;
    transition: 0.3s ease;
}

.media-icons a:hover{
    transform: scale(1.3);
}

.logo{
    width: 200px;
    height: auto;
}

/* Footer */
footer {
    background-color: #000;
    color: var(--white-color);
    padding: 30px 0;
    text-align: center;
}
.client{
    display: inline-block;
    width: 25%;
}
#clients {
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 0%, rgba(0, 0, 0, 0) 100%);
    color: #111;
    padding: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#clients-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    padding: 15px;
}
footer p {
    margin: 0;
    font-size: 1.1rem;
}

#features{
    width: 100%;
    background: #222;
    color: #eee;
    padding: 50px;
}

#features-container{
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 50px;
}

.feature{
    display: flex;
    flex-direction: column;
    background: #333;
    padding: 20px;
    border-radius: 5px;
}

.feature-title{
    font-size: 1.2rem;
    font-weight: bold;
}

#product{
    width: 100%;
    padding: 50px;
}

#product-container{
    display: flex;
    justify-content: center;
    align-items: center;
}

#items{
    width: 650px;
}

#items .item{
    display: flex;
    padding: 10px;
    margin: 15px;
    font-size: 1.2rem;
}

.testimonial{
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    background: #333;
    padding: 15px;
    margin: 15px;
    border-radius: 5px;
}

#testimonials{
    width: 100%;
    background: #222;
    color: #eee;
    padding: 50px;
}

#testimonials-container{
    width: 80%;
    margin: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.testimonial .testimonial-image{
    height: 200px;
    width: auto;
    border-radius: 50%;
    margin: 15px;
}

.headline{
    font-size: 2.2rem;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    padding-bottom: 50px;
    letter-spacing: 2px;
}


@media only screen and (max-width: 1200px) {

    .swiper-slide .text-content {
        margin: 0 100px;
    }

    .media-icons {
        right: 100px;
    }

    #clients-container {
        grid-template-columns: repeat(2, 1fr);
    }

    #features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Ajustes para dispositivos móveis (máximo de 768px) */
@media only screen and (max-width: 768px) {

    .logo{
        margin-bottom: 20px;
    }

    .swiper-slide .text-content {
        margin: 0 50px;
        text-align: center;
    }

    .swiper-slide .text-content .title {
        font-size: 2.5em;
    }

    .swiper-slide .text-content p {
        max-width: 100%;
        padding: 15px;
        font-size: 0.8em;
    }

    .media-icons {
        top: 89%;
        left: 50px;
    }

    .swiper-slide .text-content .read-btn {
        margin: 20px auto;
        padding: 10px 20px;
    }

    .bg-slider-thumbs {
        bottom: 3em;
    }

    #clients-container {
        grid-template-columns: 1fr;
    }
    .client{
        padding: 20px;
    }

    #features-container {
        grid-template-columns: 1fr;
    }

    .testimonial {
        flex-direction: column;
        text-align: center;
    }

    .testimonial .testimonial-image {
        height: 100px;
        margin: 10px auto;
    }

    #testimonials-container {
        width: 100%;
    }

}

/* Ajustes para dispositivos muito pequenos (máximo de 480px) */
@media only screen and (max-width: 480px) {
    
    .swiper-slide .text-content .title {
        font-size: 2em;
    }

    .swiper-slide .text-content {
        margin: 0 20px;
    }

    .media-icons {
        right: 20px;
    }

    #clients-container img {
        width: 80px;
    }

    .client {
        width: 100%;
    }
}


@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cabeçalho */
.heading {
    
    text-align: center;
    margin: 60px 0;
    padding: 20px;
    animation: fadeIn 1s ease-out; /* Animação de aparição */
}

.heading h1 {
    font-size: 48px;
    font-weight: 700;
    color: #00bfff; /* Azul claro */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: #000; /* Gradiente em azul */
    --webkit-background-clip: text;
    --webkit-text-fill-color: transparent; /* Texto com gradiente */
}

.heading p {
    font-size: 20px;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeIn 1.2s ease-out; /* Animação de aparição */
}

#aboutus{
    margin-top: 10px;
    margin-top: -50px;
    scroll-margin-top: 10px; 
}

/* Seção sobre nós */
.about-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 40px auto;
    background: linear-gradient(135deg, #8cabaf 0%, #a2a2a2 100%);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #fff; /* Borda com azul claro */
    position: relative;
    animation: fadeIn 1.5s ease-out;
    transition: 0.3s ease; /* Animação de aparição */
}

.about-section:hover {
    transform: scale(1.02);
    transition: 0.3s ease; /* Efeito de zoom */
}

.about-section img {
    max-width: 45%;
    height: auto;
    border-radius: 12px;
    border: 2px solid #fff; /* Borda azul */
    box-shadow: 0 4px 12px rgb(196, 195, 194);
    transition: transform 0.3s ease-in-out;
}

.about-section img:hover {
    transform: scale(1.05); /* Zoom na imagem ao passar o mouse */
}

.about-text {
    flex: 1;
    padding: 0 40px;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff; /* Azul claro */
    position: relative;
}

.about-text h2::before {
    content: "";
    width: 60px;
    height: 5px;
    background: #ffffffde; /* Azul escuro */
    position: absolute;
    bottom: -10px;
    left: 0;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.7); /* Efeito de luz */
}

.about-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #ffffff; /* Cinza claro */
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 15px;
    background: #fff; /* Botão com gradiente de azul */
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.7); /* Sombra do botão */
}

.read-more:hover {
    transform: scale(1.05);
    background: #000000;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.7); 
    color: #fff;
}

/* Animação de borda brilhante */
@keyframes borderPulse {
    0% {
        box-shadow: 0 0 10px #007bff, 0 0 20px #00bfff, 0 0 30px #1e90ff, 0 0 40px rgba(0, 191, 255, 0.8);
    }
    50% {
        box-shadow: 0 0 20px #00bfff, 0 0 30px #1e90ff, 0 0 40px rgba(0, 191, 255, 0.6);
    }
    100% {
        box-shadow: 0 0 10px #007bff, 0 0 20px #00bfff, 0 0 30px #1e90ff, 0 0 50px rgba(0, 191, 255, 0.4);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        padding: 20px;
    }

    .about-section img {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .about-text {
        padding: 0;
    }
}

.heading-title {
    color: #1f3c78;
    font-weight: bold;
    font-size: 2em;
}
.section-title {
    font-weight: bold;
}
.icon {
    font-size: 2em;
    color: #00c0c0;
}
.feature-item p {
    color: #666;
}

.tech-grid img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease; /* Adiciona uma transição suave */
}
.tech-grid {
    text-align: center;
}
.col.border {
    border: 2px solid #f4f4f4;
    margin: 0;
    padding: 10px; /* Espaço entre a borda e a imagem */
    overflow: hidden; /* Garante que a imagem não ultrapasse a borda */
}
.col.border img {
    cursor: pointer; 
}
.col.border img:hover {
    transform: scale(1.1); /* Aumenta a imagem em 10% */
}

        .services-section {
            padding: 60px 0;
            background-color: #f8f9fa; /* Um cinza claro para o fundo */
        }
        .services-section h2 {
            font-weight: 700;
            margin-bottom: 40px;
            color: #996600;
        }
        .service-card {
            background-color: #ffffff;
            border: 1px solid #dee2e6;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .service-card .icon {
            font-size: 3rem; /* Tamanho do ícone */
            color: #8cabaf; /* Cor principal (azul do Bootstrap) */
            margin-bottom: 15px;
        }
        .service-card h5 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #996600;
        }
.service-card {
    cursor: pointer;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  .modal-body ul {
    text-align: left;
    padding-left: 20px;
  }

  .nossa {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 100px;
}

.nossa h2 {
  font-size: 28px;
  color: #996600;
  margin-bottom: 40px;
}

.cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  max-width: 300px;
  text-align: left;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.card h3 {
  font-size: 22px;
  margin-top: 15px;
  color: #996600;
}

.card .cargo {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.card .descricao {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}