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

body {
    font-family: 'Montserrat', sans-serif;
    background: #0C0C0C;
    color: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* HERO */
.hero {
    position: relative;
    background: url('https://canalaprendendosites.com.br/wp-content/uploads/2024/07/bg-hero-min.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 12, 12, 0.7);
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin-left: 5%;
    z-index: 2;
}

.logo {
    width: 180px;
    margin-bottom: 20px;
}


.tag {
    background: rgba(159, 82, 253, 0.2);
    border: 1px solid #9F52FD;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
}

.highlight {
    color: #9F52FD;
}

.hero p {
    margin: 20px 0;
    font-size: 25px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 1s;

}

.btn.primary {
    background: linear-gradient(90deg, #9F52FD, #522985);
    color: #fff;
}

.btn.secondary {
    border: 1px solid #fff;
}

.btn:hover {
    box-shadow: 0 0 10px #9F52FD, 0 0 20px #9F52FD, 0 0 30px #9F52FD;
    transform: translateY(-3px);
    transition: 1s;
}

/* SERVIÇOS */
.services {
    padding: 100px 20px;
    text-align: center;
}

.services h2 {
    margin-top: 15px;
}

.services h2 {
    font-size: 30px;
}

.services p {
    font-size: 20px;
}

.services .service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    border: 1px solid #9F52FD;
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    cursor: pointer;
}


.card i {
    font-size: 40px;
    color: #9F52FD;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 10px;
}

.card ul {
    margin: 15px 0;
    color: #ccc;
}

.card a {
    color: #9F52FD;
    font-weight: 600;
    transition: 1s;
}

.card a:hover {
    font-weight: 900;
    transition: 1s;
}

/* PROJETOS */
/* PROJETOS */



.projects {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 60px 20px;
    background: #1A1A1A;
    text-align: center;
}

.projects h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
}

.description {
    text-align: center;
    margin-bottom: 40px;
    font-size: 20px;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.project-card {
    background: #fafafa;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    transition: 1s;
}

.project-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(159, 82, 253, 0.6), 0 0 15px rgba(0, 0, 0, 0.3);
}

.project-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.project-info {
    padding: 15px;
}

.project-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #222;
}

.project-info p {
    font-size: 0.95rem;
    color: #555;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}


/* MOTIVOS */
.motivos {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.motivos-content {
    display: flex;
    align-items: center;
    justify-self: center;
    gap: 50px;
    flex-wrap: wrap;
}

.motivos-content h2 {
    margin-top: 30px;
}

.motivos img {
    max-width: 400px;
    border-radius: 20px;
}

.motivos ul {
    margin: 20px 0;
}

.motivos ul li {
    margin-bottom: 10px;
}

/* DEPOIMENTO */
.depoimento {
    padding: 100px 20px;
    text-align: center;
}

.depoimento-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-direction: column;
    flex-wrap: wrap;
}

.depoimento-content img {
    max-width: 400px;
    border-radius: 20px;
}

.depoimento i {
    font-size: 40px;
    color: #9F52FD;
}

/* CLIENTES */
.clientes {
    padding: 60px 0;
    overflow: hidden;
}

.clientes .logos {
    display: flex;
    gap: 100px;
    animation: scroll 20s linear infinite;
}

.clientes img {
    height: 200px;
    opacity: .7;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* CTA */
.cta {
    background: linear-gradient(90deg, #9F52FD, #522985);
    padding: 80px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 100px 20px;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 20px;
}

.whatsapp-btn {
    position: fixed;
    /* Fixo na tela */
    bottom: 20px;
    /* Distância do rodapé */
    right: 20px;
    /* Distância da lateral direita */
    width: 60px;
    /* Tamanho do botão */
    height: 60px;
    border-radius: 50%;
    /* Deixa redondo */
    background-color: #25D366;
    /* Verde WhatsApp */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    /* Sombra */
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 9999;
    /* Fica acima de outros elementos */
}

.whatsapp-btn img {
    width: 35px;
    /* Tamanho do ícone */
    height: 35px;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    /* Aumenta um pouco no hover */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
}


/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    color: #ccc;
}

/* RESPONSIVIDADE */

@media (max-width: 800px) {
    .hero {
        text-align: center;
        padding: 40px 20px;
        justify-content: center;
    }

    .hero-content {
        margin: 0 auto;
        max-width: 90%;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 18px;
    }

    .services {
        padding: 60px 15px;
    }

    .services h2 {
        font-size: 24px;
    }

    .services p {
        font-size: 16px;
    }


    .motivos-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .motivos img {
        max-width: 100%;
    }

    .depoimento-content {
        flex-direction: column;
        text-align: center;
    }

    .depoimento-content img {
        max-width: 100%;
    }

    .clientes img {
        height: 120px;
    }

    .cta h2 {
        font-size: 1.5rem;
    }

    .cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 16px;
    }


    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .projects-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .description{
        font-size: 18px;
    }

    .clientes img {
        height: 60px;
    }

    .cta {
        padding: 40px 15px;
        margin: 60px 15px;
    }


}