* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    background-color: #010a1a;
    color: white;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 1000;
}

.logo.show .logo__image {
    filter: invert(63%) sepia(89%) saturate(879%) hue-rotate(150deg) brightness(96%) contrast(101%);
}
.logo__image {
    width: max-content;
    display: flex;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 50px;
    background-color: white;
    color: #333;
    gap: 100px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    text-decoration: none;
    color: #777;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: #333;
}

.contato-btn {
    font-family: "Montserrat", sans-serif;
    background-color: #00ffff;
    color: #1a1a4f;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 217, 198, 0.3);            
}

.contato-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 217, 198, 0.4);
}        


.hero {
    height: 600px;
    background-image: url('/site/imagens/vitrine/Vitrine.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 50px;
    position: relative;
    overflow: hidden;
}

.hero-text {
    z-index: 2;
    max-width: 600px;
}

.hero-title {
    font-family: 'Dekar Light', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.4;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bannerbuttons {
    position: absolute;
    top: 97vh;
    left: 0;
    right: 0;
    margin-right: auto;
    margin-left: auto;
    width: max-content;
    display: flex;
    gap: 5px;

    & button {
        width: 10px;
        height: 10px;
        background-color: rgb(255, 255, 255, 0.5);
        border-radius: 100px;
        border: none;
        cursor: pointer;
        transition: all 250ms ease;

        &.current {
            background-color: white;
        }

        &:hover {
            transform: unset;
        }
    }
}



.neon-text {
    background-color: #00ffff;
    padding: 2px 8px;
    color: black;
    display: inline-block;
    font-family: 'Dekar Light', sans-serif;
    font-weight: 700;
}

.pink-neon {
    background-color: #ff00ff;
}

.subtitle {
    font-family: 'Dekar Light', sans-serif;
    color: #ccc;
    font-size: 23px;
    margin-top: 20px;
    letter-spacing: 3px;
    font-weight: 500;
}

.platform-section {
    padding: 50px;
    text-align: center;
    background-color: #010a1a;
}

.section-title {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: #00ffff;
    letter-spacing: 2px;
}

.platform-description {
    font-family: "Montserrat", sans-serif;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #ccc;
    line-height: 1.6;
    font-size: 18px;
    font-weight: 300;
}



.platform-section {
    padding: 50px;
    text-align: center;
    background-color: #010a1a;
}

.section-title {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: #00ffff;
    letter-spacing: 2px;
}

.platform-description {
    font-family: "Montserrat", sans-serif;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #ccc;
    line-height: 1.6;
    font-size: 18px;
    font-weight: 300;
}

.category-menu {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.category-menu a {
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    color: #ccc;
    padding: 5px 10px;
    transition: color 0.3s;
    letter-spacing: 1px;
    font-weight: 500;
}

.category-menu a:hover {
    color: white;
}

.category-menu a.active {
    color: white;
    border-bottom: 2px solid #00ffff;
}

.features-section {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    gap: 30px;
    background-color: #010a1a;
}

.features-content {
    flex: 1;
}

.feature-title {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    color: #00ffff;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.feature-text h3 {
    font-family: "Montserrat", sans-serif;
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.feature-text p {
    font-family: "Montserrat", sans-serif;
    color: white;
    line-height: 1.6;
    font-size: 16px;
}

.features-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-image img {
    max-width: 100%;
    transform: perspective(1000px) rotateY(-10deg);
    border: 2px solid #00ffff;
    box-shadow: 0 0 15px rgba(0, 217, 198, 0.5);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.pagination span {
    width: 10px;
    height: 10px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
}

.pagination span.active {
    opacity: 1;
}

/* NOVO BLOCO - Plataforma de Gestão de Habilidades */
.gestao-habilidades-section {
    background-color: #001433;
    padding: 80px 50px;
    color: white;
    position: relative;
    overflow: hidden;
    
}

.gestao-habilidades-title {
    font-family: "Montserrat", sans-serif;
    font-size: 44px;
    margin-bottom: 30px;
    color: #00ffff;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.gestao-habilidades-description {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: white;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.gestao-habilidades-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    max-width: 1070px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.platform-features {
    flex: 1;
}

.platform-feature-title {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    color: #00ffff;
    margin-bottom: 30px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-list-item {
    display: flex;
    align-items: flex-start;
}

.feature-list-title {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.feature-list-description {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #aaa;
    line-height: 1.4;
}

.gestao-habilidades-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.gestao-habilidades-image img {
    max-width: 100%;
    width: 510px;
    height: 540px;
}

.decoration-lines {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.3;
}

.decoration-lines svg {
    width: 150px;
    height: 150px;
}

@media (max-width: 1024px) {
    .gestao-habilidades-container {
        flex-direction: column;
    }

    .platform-features {
        margin-bottom: 50px;
    }

    .gestao-habilidades-image {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .gestao-habilidades-section {
        padding: 50px 20px;
    }

    .gestao-habilidades-title {
        font-size: 32px;
    }

    .gestao-habilidades-description {
        font-size: 16px;
    }
}        

.category-menu {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.category-menu a {
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    color: #ccc;
    padding: 5px 10px;
    transition: color 0.3s;
    letter-spacing: 1px;
    font-weight: 500;
}

.category-menu a:hover {
    color: white;
}

.category-menu a.active {
    color: white;
    border-bottom: 2px solid #00ffff;
}

.features-section {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    gap: 30px;
    background-color: #010a1a;
}

.features-content {
    flex: 1;
}

.feature-title {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    color: #00ffff;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-icon-dif {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-text h3 {
    font-family: "Montserrat", sans-serif;
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.feature-text p {
    font-family: "Montserrat", sans-serif;
    color: #ccc;
    line-height: 1.6;
    font-size: 16px;
}

.features-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-image img {
    max-width: 100%;
    transform: perspective(1000px) rotateY(-10deg);
    border: 2px solid #00ffff;
    box-shadow: 0 0 15px rgba(0, 217, 198, 0.5);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.pagination span {
    width: 10px;
    height: 10px;
    background-color: #00ffff;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
}

.pagination span.active {
    opacity: 1;
}

/* Estilos para os novos blocos */
.diferenciais-section {
    background-color: #fff;
    color: #1a1a4f;
    position: relative;
    overflow: hidden;
}
.dif-title-section {
    padding: 50px;
    color: #1a1a4f;
    text-align: center;
    background-color: #fff;
}


.diferenciais-content {
    flex: 1;
    padding-right: 40px;
}

.diferenciais-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.diferenciais-image img {
    height: 590px;
}

.diferenciais-title {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 50px;
    color: #1a1a4f;
    font-weight: 700;
    align-content: center;
    text-align: center;
}

.catalog-title {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a4f;
}

.catalog-description {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    max-width: 450px;
    line-height: 1.5;
    text-align: center;
}

.stats-container {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    font-family: "Montserrat", sans-serif;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a4f;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #777;
    font-family: "Montserrat", sans-serif;
}

.integracao-section {
    background-color: #00ffff;
    padding: 60px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.integracao-image {
    flex: 1;
}

.integracao-image img {
    max-width: 90%;
}

.integracao-content {
    flex: 1;
    padding-left: 40px;
}

.integracao-title {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    color: #1a1a4f;
    margin-bottom: 20px;
    font-weight: 700;
}

.integracao-description {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #1a1a4f;
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 450px;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 300px;
}

.integration-item {
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-learning-section {
    background-color: #fff;
    color: #1a1a4f;
    
}

.ai-learning-title {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a4f;
    text-align: left;
    font-weight: 700;
}

.ai-learning-features {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 30px;
}

.ai-learning-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ai-learning-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.ai-learning-image img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.3s;
}

.ai-learning-image:hover img {
    transform: scale(1.05);
}

.ai-learning-item-content {
    text-align: left;
    width: 100%;
}

/* Estilos para os NOVOS blocos finais */
.melhor-edtech-section {
    background-color: white;
    padding: 60px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.melhor-edtech-content {
    flex: 1;
    padding-right: 40px;
}

.melhor-edtech-title {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a4f;
    font-weight: 700;
    line-height: 1.2;
}

.reconhecimento-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.blue-icon {
    color: #0084ff;
    margin-right: 15px;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reconhecimento-text h3 {
    font-family: "Montserrat", sans-serif;
    color: #1a1a4f;
    margin-bottom: 5px;
    font-weight: 600;
}

.reconhecimento-text p {
    font-family: "Montserrat", sans-serif;
    color: #555;
    line-height: 1.5;
    font-size: 14px;
}

.melhor-edtech-image {
    flex: 1;
}

.melhor-edtech-image img {
    max-width: 100%;
}



.testimonials-section {
    background-color: #00ffff;
    padding: 80px 50px 60px;
    text-align: center;
}

.testimonials-title {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a4f;
    font-weight: 700;
}

.testimonials-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #1a1a4f;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    max-width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 10px;
    font-size: 20px;
}

.testimonial-text {
    font-family: "Montserrat", sans-serif;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 14px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-family: "Montserrat", sans-serif;
    color: #1a1a4f;
    font-size: 16px;
    margin: 0;
}

.author-info p {
    font-family: "Montserrat", sans-serif;
    color: #777;
    font-size: 12px;
    margin: 0;
}

@media (max-width: 768px) {
    .navbar {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 20px;
        text-align: center;
        height: auto;
        min-height: 400px;
    }

    .hero-text {
        max-width: 100%;
    }

    .features-section, 
    .diferenciais-section, 
    .integracao-section,
    .melhor-edtech-section {
        flex-direction: column;
        padding: 30px 20px;
    }

    .features-image,
    .diferenciais-image,
    .integracao-image,
    .melhor-edtech-image {
        margin-top: 30px;
        order: 2;
    }
    
    .diferenciais-content,
    .integracao-content,
    .melhor-edtech-content {
        order: 1;
        padding-right: 0;
        padding-left: 0;
    }

    .stats-container {
        justify-content: center;
    }
    
    .ai-learning-features {
        flex-direction: column;
    }
    
    .clients-logos {
        flex-wrap: wrap;
        max-width: 90%;
    }
    
    .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-card {
        max-width: 100%;
    }
}


/* NOVO BLOCO - Diferenciais */
.diferenciais-section {
    background-color: #ffffff;
    
    color: #1a1a4f;
    position: relative;
    overflow: hidden;
}

.diferenciais-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    gap: 60px;
}

.diferenciais-title {
    font-family: "Montserrat", sans-serif;
    font-size: 44px;
    margin-bottom: 50px;
    color: #001433;
    font-weight: 700;
    text-align: center;
}

.diferenciais-image {
    flex: 1;
    position: relative;
}

.diferenciais-image-circle {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.diferenciais-content {
    flex: 1;
    padding-left: 20px;
}

.diferencial-item {
    margin-bottom: 10px;
}

.diferencial-title {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #001433;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.diferencial-description {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #4a4a6a;
    line-height: 1.5;
    max-width: 500px;
}

.decoration-x {
    position: absolute;
    top: 20%;
    left: 15%;
    font-size: 40px;
    color: #00ffff;
    z-index: 1;
}

.decoration-arrows {
    position: absolute;
    right: 30%;
    top: 35%;
    z-index: 1;
    color: #00ffff;
    font-size: 36px;
}

.decoration-lines-bottom {
    position: absolute;
    bottom: 15%;
    left: 30%;
    z-index: 1;
    color: #00ffff;
    font-size: 30px;
}

.decoration-waves {
    position: absolute;
    right: 10%;
    bottom: 10%;
    z-index: 1;
    color: #00ffff;
    font-size: 30px;
}

.agendar-btn {
    font-family: "Montserrat", sans-serif;
    background-color: #00ffff;
    color: #1a1a4f;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 217, 198, 0.4);
    
}

.agendar-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 217, 198, 0.3);
}

.bottom-image {
    flex: 1;
}

.bottom-image img {
    max-width: 100%;
}

@media (max-width: 1024px) {
    .diferenciais-container {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .diferenciais-content {
        padding-left: 0;
    }

    .decoration-x, 
    .decoration-arrows,
    .decoration-lines-bottom,
    .decoration-waves {
        display: none;
    }
}

@media (max-width: 768px) {
    

    .diferenciais-title {
        font-size: 32px;
    }

    .diferencial-title {
        font-size: 18px;
    }

    .diferencial-description {
        font-size: 14px;
    }
}

/* NOVO BLOCO - Integração com Ferramentas */
.integracao-section {
    background: linear-gradient(135deg, #8e1a8e 0%, #ff1f5a 30%, #4d3cff 70%, #0061ff 100%);
    padding: 80px 50px;
    color: white;
    position: relative;
    overflow: hidden;
}

.integracao-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.integracao-image {
    flex: 1;
    position: relative;
}

.integracao-circle {
    position: absolute;
    width: 120%;
    height: 120%;
    z-index: 1;
    left: -10%;
    top: -10%;
}

.laptop-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    transform: perspective(1000px) rotateY(10deg) rotateX(5deg);
}

.integracao-content {
    flex: 1;
    z-index: 2;
}

.integracao-title {
    font-family: "Montserrat", sans-serif;
    font-size: 44px;
    margin-bottom: 50px;
    color: white;
    font-weight: 700;
    line-height: 1.2;
}

.integration-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.logo-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.logo-card img {
    max-width: 80%;
    max-height: 60px;
    object-fit: contain;
}

.navigation-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
    opacity: 0.5;
    cursor: pointer;
}

.dot.active {
    background-color: #ff1f5a;
    opacity: 1;
}

@media (max-width: 1024px) {
    .integracao-container {
        flex-direction: column;
        gap: 40px;
    }

    .integracao-circle {
        width: 140%;
        height: 140%;
        left: -20%;
        top: -20%;
    }
}

@media (max-width: 768px) {
    .integracao-section {
        padding: 50px 20px;
    }

    .integracao-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .integration-logos {
        grid-template-columns: 1fr;
    }
}

/* NOVO BLOCO - AI Learning */
.ai-learning-section {
    background-color: #ffffff;
    
    color: #1a1a4f;
    position: relative;
    overflow: hidden;
}

.ai-learning-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 60px;
}

.ai-learning-content {
    flex: 1;
    margin-top: 10%;
    margin-bottom: 10%;
    margin-left: 5%;
}

.ai-learning-title {
    font-family: "Montserrat", sans-serif;
    font-size: 44px;
    margin-bottom: 40px;
    color: #000038;
    font-weight: 700;
    line-height: 1.2;
    
}

.ai-learning-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 100%;
}

.ai-feature {
    margin-bottom: 2px;
}

.ai-feature-title {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #001433;
    margin-bottom: 10px;
}

.ai-feature-description {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    max-width: 500px;
}

.ai-learning-image {
    display: flex;
    justify-content: center;
    max-width: 50%;
    
    
}

.ai-learning-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 1024px) {
    .ai-learning-container {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .ai-learning-content {
        text-align: center;
    }

    .ai-feature-description {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    

    .ai-learning-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .ai-feature-title {
        font-size: 15px;
    }

    .ai-feature-description {
        font-size: 14px;
    }
}

/* NOVO BLOCO - Onde Fazemos a Diferença */
.diferenca-section {
    background-color: #001433;
    padding: 80px 50px;
    color: white;
    text-align: center;
}

.diferenca-title {
    font-family: "Montserrat", sans-serif !important;
    font-size: 48px !important;
    margin-bottom: 20px !important;
    color: #00ffff !important;
    font-weight: 700 !important;
}

.diferenca-description {
    font-family: "Montserrat", sans-serif !important;
    font-size: 18px !important;
    color: white !important;
    line-height: 1.6 !important;
    max-width: 800px !important;
    margin: 0 auto 60px !important;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.feature-icon {
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 50px;
    height: 50px;
    fill: none;
    stroke: #00ffff;
    stroke-width: 2;
}

.feature-content h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    color: white;
    margin-bottom: 5px;
    font-weight: 600;
}

.call-to-action-1 {
    background-color: #00ffff;
    padding: 30px 50px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.cta-text {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    color: #001433;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
}

.cta-button-1 {
    font-family: "Montserrat", sans-serif;
    background-color: #001433;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-1:hover {
    background-color: #00284f;
    transform: translateY(-3px);
    
}

@media (max-width: 768px) {
    .diferenca-section {
        padding: 50px 20px;
    }

    .diferenca-title {
        font-size: 36px;
    }

    .diferenca-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .call-to-action {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cta-text {
        font-size: 20px;
    }
}        


/* NOVO BLOCO - Sobre a Empresa */
.sobre-section {
    background-color: #fff;
    
    position: relative;
    overflow: hidden;
}

.sobre-container {
    display: flex;
    justify-content: flex-start;
    
    max-width: 1200px;
    margin: 0 auto;

}

.sobre-content {
    flex: 1;
    
}

.sobre-title {
    font-family: "Montserrat", sans-serif;
    font-size: 40px;
    margin-top: 30px;
    margin-bottom: 30px;
    color: #001433;
    font-weight: 700;
    line-height: 1.2;
}

.evolve-highlight {
    display: inline-block;
    background-color: #ff008c;
    color: white;
    padding: 5px 10px;
}

.sobre-card {
    background-color: #f5f5f5;            
    border-radius: 30px;
    margin-top: 20px;
    position: relative;
    z-index: 9;
}
.sobre-card-text {
    
    padding: 30px;
    
    margin-top: 20px;
    max-width: 40%;
}

.sobre-label {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #ff008c;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.sobre-paragraph {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #667385;
    margin-bottom: 20px;
    line-height: 1.6;
}

.sobre-paragraph-b {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: #667385;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: bold;
}        

.sobre-paragraph:last-child {
    margin-bottom: 0;
}

.sobre-image {    
            
    position: absolute;
    z-index: 10;
    margin-left: 30%;
    margin-top: 0.8%;
}

.person-image {
    
    width: 90%;
                
    overflow: hidden;
}

.agendar-btn {
    font-family: "Montserrat", sans-serif;
    background-color: #00ffff;
    color: #001433;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 217, 198, 0.3);
}

.agendar-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 217, 198, 0.4);
}

@media (max-width: 1024px) {
    .sobre-container {
        flex-direction: column;
    }

    .sobre-content {
        max-width: 100%;
        order: 2;
    }

    .sobre-image {
        justify-content: center;
        order: 1;
    }

    .person-image {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    

    .sobre-title {
        font-size: 36px;
    }

    .sobre-paragraph {
        font-size: 16px;
    }

    .person-image {
        max-width: 300px;
    }
}        

/* NOVO BLOCO - Edtech Top 1 */
.edtech-top-section {
    display: flex;
    flex-direction: column;    
    justify-content: center;
    overflow: hidden;
}

.edtech-top-content {
    display: flex;
    background-color: #80eeff;
    position: relative;
    z-index: 1;
}

.edtech-person-image {
    width: 59%;
    margin-top: auto;
    object-fit: contain;
    object-position: center;
}

.edtech-text-content {
    width: 50%;
    padding: 60px 0px;
}

.edtech-title {
    font-family: "Montserrat", sans-serif;
    font-size: 44px;
    margin-bottom: 30px;
    color: #001433;
    font-weight: 700;
    line-height: 1.2;
}

.edtech-description {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #001433;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 500px;
}

.awards-strip {
    background-color: #001433;
    width: 65%;
    height: 15%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    max-width: 70%;
    position: absolute;
    z-index: 10;    
    margin-top: 7%;
    margin-left: 20%;
    box-shadow: 0 5px 15px rgba(0, 217, 198, 0.3);
}

.award-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.bottom-section {
    background-color: #001433;
    background-image: url('/site/imagens/premios/Fundo_CTA\ premios.png.png');
    background-size: cover;
    background-position: center;
    padding: 200px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 9;
}


.bottom-content {
    flex: 1;
    z-index: 2;
    text-align: center;
}

.bottom-title {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    margin-bottom: 25px;
    color: white;
    font-weight: 600;
}

.reuniao-btn {
    font-family: "Montserrat", sans-serif;
    background-color: #ff1f5a;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 8px 15px rgba(255, 31, 90, 0.3);
}

.reuniao-btn:hover {
    transform: translateY(-3px);

}

@media (max-width: 1024px) {
    .edtech-top-content {
        flex-direction: column;
    }

    .edtech-person-image {
        width: 100%;
        height: 400px;
    }

    .edtech-text-content {
        width: 100%;
        padding: 40px 30px;
    }

    .awards-strip {
        flex-wrap: wrap;
        gap: 15px;
        padding: 20px;

    }

    .award-logo {
        height: 30px;
    }
}

@media (max-width: 768px) {
    .edtech-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .edtech-description {
        font-size: 14px;
    }

    .bottom-title {
        font-size: 20px;
    }

    .awards-strip {
        padding: 15px;
    }

    .award-logo {
        height: 25px;
    }
}

/* NOVO BLOCO - Blog */
.blog-section {
    background-color: #ffffff;
    padding: 80px 50px;
    text-align: center;
    position: relative;
}

.blog-title {
    font-family: "Montserrat", sans-serif;
    font-size: 44px;
    color: #001433;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-description {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: #001433;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.blog-slider {
    display: flex;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    gap: 20px;
}

.blog-articles {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.blog-article {
    flex: 1;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: 20px;
    text-align: left;
}

.article-title {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #001433;
    margin-bottom: 10px;
    min-height: 50px;
    line-height: 1.3;
    text-decoration: none;
}

.article-tag {
    display: inline-block;
    color: #ff008c;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}

.article-date {
    font-size: 14px;
    color: #777;
}

.slider-btn {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #00ffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    font-size: 24px;
    border: none;
    z-index: 10;
    transition: background-color 0.3s;
}

.slider-btn:hover {
    background-color: #00ffff;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.see-more-btn {
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #001433;
    padding: 12px 30px;
    border: 2px solid #001433;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.see-more-btn:hover {
    background-color: #001433;
    color: white;
}

.call-to-action-2 {
    background-color: #ff008c;
    padding: 40px 50px;
    text-align: center;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.cta-text {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    color: #00183A;
    font-weight: 700px;
    text-transform: uppercase;
}

.cta-text-2 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    color: white;
    font-weight: 700px;
    text-transform: uppercase;
    text-align: center;
}

.cta-text-3 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    color: white;
    font-weight: 700px;
    text-transform: uppercase;
    text-align: center;
}

.cta-button-2 {
    font-family: "Montserrat", sans-serif;
    background-color: #00ffff;
    color: #001433;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 217, 198, 0.3);
}

.cta-button-2:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .blog-slider {
        padding: 0 30px;
    }
    
    .blog-articles {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 20px;
    }
    
    .blog-title {
        font-size: 36px;
    }
    
    .blog-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .blog-articles {
        flex-direction: column;
        gap: 30px;
    }
    
    .article-title {
        min-height: auto;
    }
    
    .call-to-action {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .cta-text {
        text-align: center;
        font-size: 20px;
    }
}

/* Footer */
.footer {
    background-color: #00ffff;
    padding: 40px 50px;
    color: #001433;
}

.footer-container {
    max-width: 90%;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 20, 51, 0.1);
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    font-family: "Montserrat", sans-serif;
    color: #001433;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.address-container {
    display: flex;
    gap: 40px;
}

.address-block p {
    font-family: "Montserrat", sans-serif;
    margin-bottom: 5px;
    font-size: 15px;
}

.address-block strong {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
    align-content: end;
    align-items: center;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #001433;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
}

.social-link:hover {
    transform: translateY(-3px);
    background-color: #002966;
}

.privacy-link {
    font-family: "Montserrat", sans-serif;
    color: #001433;
    text-decoration: none;
    margin-right: 20px;
    font-size: 14px;
}

.privacy-link:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .message-field {
        grid-column: 1;
        grid-row: auto;
    }
    
    .footer-top, 
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .address-container {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .contact-description {
        font-size: 16px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .footer {
        padding: 30px 20px;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

/* NOVO BLOCO - Nossos Clientes */
.clients-section {
    background-color: #ffffff;
    padding: 80px 50px;
    text-align: center;
    height: 400px;
}

.clients-title {
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    color: #001433;
    font-weight: 700;
    margin-bottom: 20px;
}

.clients-description {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: #001433;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.clients-logos {
    display: block;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.client-logo {
    height: 28px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: filter 0.3s, opacity 0.3s;
    margin-right: 82px;
}


.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .clients-section {
        padding: 60px 20px;
    }
    
    .clients-title {
        font-size: 32px;
    }
    
    .clients-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .clients-logos {
        gap: 30px;
    }
    
    .client-logo {
        height: 40px;
    }
}        


/* NOVO BLOCO - Depoimentos */
.testimonials-section {
    background-color: #00ffff;
    padding: 80px 50px;
    text-align: center;
    position: relative;
}

.testimonials-title {
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    color: #001433;
    font-weight: 700;
    margin-bottom: 20px;
}

.testimonials-description {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: #001433;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    flex: 1;
    max-width: 350px;
}

.testimonial-card.dark {
    background-color: #001433;
    color: white;
}

.testimonial-text {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #555;
}

.testimonial-card.dark .testimonial-text {
    color: #fff;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
    color: #001433;
}

.testimonial-card.dark .author-info h4 {
    color: #00ffff;
}

.author-info p {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #777;
}

.testimonial-card.dark .author-info p {
    color: #ccc;
}

.call-to-action-3 {
    background-color: #001433;
    padding: 40px 50px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.cta-button-3 {
    font-family: "Montserrat", sans-serif;
    background-color: #00ffff;
    color: #001433;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 217, 198, 0.3);
}

.cta-button-3:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-card {
        max-width: 500px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 20px;
    }
    
    .testimonials-title {
        font-size: 32px;
    }
    
    .testimonials-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .call-to-action {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 30px 20px;
    }
    
    .cta-text {
        font-size: 20px;
    }
}        

.phone-input-group {
    margin-bottom: 80px !important;
}