/* === Reset/Base === */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle, rgb(28 38 65) 3%, rgb(10 15 28) 60%) center center fixed;
    color: #fff !important;
    line-height: 1.6;
}

h1, h2, h3, h5, h6 {
    color: #fff !important;
}
h4 {
    color: #000 !important; /* Estilo para h4 dentro da section de vantagens */
}
h2 {
    margin: 0 0 30px 0;
    font-size: 2rem;
    text-align: center;
    font-weight: 700;
}

/* === LOGO === */
.logo-text, .logo {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 1px;
    margin: 0;
    text-align: center;
}
.logo-text .main, .logo .main {
    display: block;
    color: #FFFFFF;
    font-size: 1.6rem;
    text-align: left;
}
.logo-text .highlight, .logo .highlight {
    display: block;
    font-size: 2.1rem;
    background: linear-gradient(90deg, #6366F1, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


header .logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3b82f6; /* Azul principal */
    padding: 10px 10px;
}


/* === HEADER/MENU === */
.site-header, header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100px;
    background: rgb(10 15 28 / 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    padding: 0 20px;
}

.site-header a, header a {
    color: #ffffff;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    position: relative; /* Adicionado para a regra 'right: 25px;' */
    right: 25px; /* Mantido do código original */
}
nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    padding: 10px;
    border-radius: 16px;
}
nav a:hover {
    color: #fff; /* Original: #fff, outra regra: #3b82f6. Mantido #fff da primeira regra para navegação principal. */
}
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* === HERO (Antigo Estilo Desativado, mantido para referências) === */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(103.91deg, #9b51e0 21.01%, rgba(48,129,237,0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-content {
    position: absolute;
    top: 50%; left: 10%;
    transform: translateY(-50%);
    max-width: 500px;
}
.hero-content h1 {
    font-family: Poppins;
    color: #ffffff;
    font-size: 65px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: -2px;
    text-align: left;
}
.hero-content p { font-size: 1.2rem; margin-bottom: 25px; opacity: 0.9; }
.hero-content a {
    display: inline-block;
    padding: 14px 28px;
    background: #3b82f6;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}
.hero-content a:hover { background: #2563eb; transform: translateY(-2px); }

.conteudo {
    background: #fff;
    color: #0a0f1c;
}
.conteudo h1{
    margin-bottom: 35px;
    font-family: "Roboto", sans-serif;
    color: #0a0f1c !important;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: left;
    text-transform: uppercase;
}

 .conteudo p{
    margin-bottom: 25px;
}



section { padding: 80px 5%; }

.catalog-container { position: relative; }
.catalog {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    padding-top: 10px;
}
.catalog::-webkit-scrollbar { display: none; }

.card-link {
    text-decoration: none;
    color: inherit;
    display: grid;
    width: 100%;
    flex: 0 0 250px;
}

.card {
    flex: 0 0 250px;
    background: #1a1a1a;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
.card:hover {
    transform: scale(1.06);
}

.card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    display: block;
}
.card h3 {
    padding: 15px;
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

 .card p {
    padding: 15px;
    padding-top: 0px;
}


.cursos h2, #fornecedores h2, #apps h2 {
    margin-bottom: 35px;
    font-family: "Roboto", sans-serif;
    color: #ffffff;
    font-size: 26px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0.5px;
    text-align: left;
    text-transform: uppercase;
}

.cursos .card, #fornecedores .card {
    background: #1e293b;
    color: #f1f5f9;
}

#apps .card {
    background: #2d2d2d;
    color: #fff4d6;
}

/* === SETAS DE NAVEGAÇÃO DO CATÁLOGO === */
.arrow {
    position: absolute;
    width: 45px;
    height: 45px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    display: none;
    transition: background 0.3s;
}
.arrow:hover { background: rgba(59,130,246,0.8); }
.arrow.left { left: -10px; }
.arrow.right { right: -10px; }

/* === Layout de Duas Colunas (Removido o .hero-content que era similar) === */
.two-columns {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    text-align: center;
}
.two-columns h1 {
    margin: 0;
    font-family: "Oswald", sans-serif;
    color: #ffffff;
    font-size: 65px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: -2px;
    text-align: left;
}
.two-columns p {
    margin: 24px 0;
    font-family: "Roboto", sans-serif;
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.5px;
    text-align: left;
}
.two-columns .col {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* === CTAs (Chamadas para Ação) === */
.ctas {
    display: flex;
    text-align: center;
    width: 100%;
    align-items: center;
    position: relative;
    justify-content: center;
}
.ctas-item {
    margin: 15px;
}
/* Esta classe não é usada nas CTAs do Hero (que usam Tailwind), mas mantida. */
.cta {
    background: linear-gradient(103.91deg, #9b51e0 21.01%, rgba(48, 129, 237, 0.8) 100%);
    margin: 24px 0;
    font-family: "Roboto", sans-serif;
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.5px;
    text-align: left;
}

/* === RESPONSIVIDADE (Consolidado) === */
@media (max-width: 767px) {
    /* Menu */
    nav ul {
        display: none;
        flex-direction: column;
        background: #000;
        position: absolute;
        top: 60px;
        right: 5%;
        padding: 20px;
        border-radius: 8px;
    }
    nav ul.active { display: flex; }
    .menu-toggle {
        display: block;
        color: #fff;
        position: relative;
        right: 15px;
    }

    /* Logo */
    .logo-text .main, .logo .main { font-size: 1rem; }
    .logo-text .highlight, .logo .highlight { font-size: 1.3rem; }

    /* Catálogos */
    .catalog { flex-direction: column; }
    .card { width: 100%; flex: 1 1 auto; }
    .card img { height: 100%; }
    .arrow { display: none !important; }

    /* Hero Content (Seção two-columns) */
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }
    .two-columns {
        height: 100%;
        padding-top: 100px;
        flex-direction: column;
    }
    .two-columns .col { width: 100%; }

    /* CTAs */
    .ctas { display: block !important; }
    .ctas-item { margin-top: 35px !important; }
}
    .card {
    display: grid;
}