/* ============================================================
   SUMÁRIO DO ESTILO - SOFT ONE
   01. CONFIGURAÇÕES BASE
   02. HEADER & MENU PÍLULA
   03. HERO SLIDER (BANNER)
   04. INTEGRAÇÕES (LOGOS ROLANDO)
   05. BEM-VINDO & DIFERENCIAIS
   06. ESTILO DE GESTÃO (MÓDULOS GRID)
   07. RODAPÉ PREMIUM (FOOTER)
   08. BOTÕES FLUTUANTES & TABS
   ============================================================ */

/* --- 01. CONFIGURAÇÕES BASE --- */
:root {
    --azul-profundo: #1e2e45;
    --azul-botao: #43619c;
    --verde-limao: #d4f18e;
    --cinza-texto: #4b5563;
    --verde-musgo: #a8c46a;
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    color: var(--azul-profundo);
}

.highlight {
    font-family: 'Playfair Display', serif;
    color: var(--verde-limao);
    font-style: italic;
    font-weight: 400;
}

/* --- 02. HEADER & MENU --- */
.logo-box {
    width: 40px;
    height: 40px;
    background-color: var(--azul-botao);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    color: white;
}

.nav-pill {
    background-color: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    padding: 8px 30px;
    display: flex;
    gap: 24px;
}

.nav-link {
    color: var(--cinza-texto);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-link.active {
    color: black;
    border-bottom: 2px solid var(--verde-limao);
    padding-bottom: 2px;
}

.btn-primary {
    background-color: var(--azul-botao);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

/* --- 03. HERO SLIDER --- */
.hero-container {
    height: 90vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    transition: 1s;
    position: relative;
    overflow: hidden;
    background-color: #020617;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(2, 6, 23, 0.8), rgba(57, 91, 134, 0.4));
    z-index: 1;
}

.bg-slide-1 {
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600');
}

.bg-slide-2 {
    background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1600');
}

.bg-slide-3 {
    background-image: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?w=1600');
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-arrow.left {
    left: 20px;
}

.nav-arrow.right {
    right: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: 0.3s;
    cursor: pointer;
}

.dot.active {
    width: 30px;
    border-radius: 10px;
    background: var(--verde-limao);
}

/* --- 04. INTEGRAÇÕES --- */
.integrations-bar {
    border-top: 6px solid #6d7e6e;
    padding: 40px 0;
    background: white;
}

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

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

.animate-marquee {
    display: flex;
    width: max-content;
    animation: scrollLeft 35s linear infinite;
}

.logo-item {
    filter: grayscale(100%);
    opacity: 0.5;
    transition: 0.4s;
    font-size: 18px;
    font-weight: 700;
    color: #334155;
}

.dot-ping {
    position: relative;
    display: inline-flex;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #22c55e;
}

.dot-ping::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: #22c55e;
    animation: ping 1.5s infinite;
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* --- 05. BEM-VINDO & SOBRE --- */
.zoom-image-container {
    overflow: hidden;
    border-radius: 24px;
    transition: 0.3s;
    border: 10px solid white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.zoom-image-container:hover img {
    transform: scale(1.05);
    transition: 0.6s;
}

.badge-dashed-box {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background-color: #0f172a;
    color: white;
    padding: 20px;
    border-radius: 20px;
    border: 2px dashed var(--verde-musgo);
    text-align: center;
    z-index: 30;
}

.check-badge {
    width: 22px;
    height: 22px;
    background-color: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
}

/* --- 06. ESTILO DE GESTÃO --- */
.sandbox-link {
    font-size: 11px;
    font-weight: 800;
    color: var(--verde-musgo);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: 0.3s;
}

/* --- 07. RODAPÉ PREMIUM --- */
footer {
    background-color: #1e2e45;
}

.footer-title {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--verde-musgo);
    margin-bottom: 25px;
    display: block;
}

.social-circle-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
}

.social-circle-btn:hover {
    background: var(--verde-musgo);
    color: #1e2e45;
    transform: translateY(-5px);
}

/* --- 08. ANIMAÇÕES --- */
@keyframes subtleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-subtle-float {
    animation: subtleFloat 3s ease-in-out infinite;
}

@keyframes floatCircle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.animate-float-circle {
    animation: floatCircle 4s ease-in-out infinite;
}

@keyframes blinkFade {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.blink-dot {
    width: 12px;
    height: 12px;
    background: #cbd5e1;
    border-radius: 50%;
    animation: blinkFade 2s infinite;
    display: inline-block;
}

.btn-scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--verde-musgo);
    color: white;
    border-radius: 50%;
    border: none;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 100;
    cursor: pointer;
}

.btn-scroll-top.visible {
    opacity: 1;
    visibility: visible;
}


/* --- ESTILOS DA PÁGINA MÓDULOS --- */

/* --- ESTILOS DA PÁGINA MÓDULOS --- */

.tab-btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: 1px solid #B1C9EF33;
}

.tab-btn.active {
    background-color: #395B86;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(57, 91, 134, 0.2);
}

.tab-btn.inactive {
    background-color: white;
    color: #395B86;
}

.tab-btn.inactive:hover {
    background-color: #F0F3FA;
}

.custom-input {
    border: 1px solid #B1C9EF55;
    border-radius: 12px;
    outline: none;
    transition: 0.3s;
}

.custom-input:focus {
    border-color: #628ECB;
    background-color: white;
}

.playground-panel {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-title {
    font-size: 11px;
    font-weight: 900;
    color: #98B092;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tab-content.hidden {
    display: none;
}

/* --- ESTILO DO RODAPÉ PREMIUM --- */

/* Títulos das colunas */
.footer-title {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #a8c46a;
    /* O verde oliva do print */
    margin-bottom: 30px;
    display: block;
}

/* Botões sociais circulares */
.social-circle-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-circle-btn:hover {
    background: #a8c46a;
    color: #1e2e45;
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(168, 196, 106, 0.2);
}


/* --- 08. ANIMAÇÕES E BOTÕES FLUTUANTES --- */

@keyframes subtleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-subtle-float {
    animation: subtleFloat 3s ease-in-out infinite;
}

/* Deixa o botão com os cantos bem parecidos com o seu print */
.rounded-\[20px\] {
    border-radius: 20px;
}

/* --- 08. COMPONENTES DE ABAS --- */

/* Força o painel a sumir quando tiver a classe hidden */
.tab-content.hidden {
    display: none !important;
}

/* Estilo do botão Inativo (Branco com borda azul) */
.tab-btn.inactive {
    background-color: white !important;
    color: #395B86 !important;
    border: 1px solid #B1C9EF !important;
}

/* Estilo do botão Ativo (Azul com texto branco) */
.tab-btn.active {
    background-color: #395B86 !important;
    color: white !important;
    box-shadow: 0 10px 15px -3px rgba(57, 91, 134, 0.3);
}

/* Animação suave quando a aba aparece */
.animate-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilo dos itens da playlist da Academy */
.lecture-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.lecture-item:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    transform: translateX(5px);
}

.lecture-item.active {
    border-left: 4px solid #98B092;
    background-color: #f1f5f9;
}

/* Scrollbar fofinha para a lista de vídeos */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #98B092;
}

/* Scrollbar fofinha para a lista de vídeos */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-th

/* Scrollbar fofinha para a lista de vídeos */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #98B092;
}

/* Estilos das mensagens do suporte */
.support-msg {
    background: white;
    padding: 14px;
    border-radius: 16px 16px 16px 0;
    border: 1px solid #e2e8f0;
    font-size: 11px;
    line-height: 1.5;
    color: #334155;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.system-msg {
    background: #eff6ff;
    padding: 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    color: #1d4ed8;
    border-left: 4px solid #3b82f6;
}

/* Ajuste para o menu com muitos itens */
.nav-pill {
    white-space: nowrap;
    /* Impede que o texto quebre em duas linhas sozinho */
}

/* Pode remover o estilo antigo e deixar apenas o padrão do nav-link */
.nav-link {
    color: var(--cinza-texto);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

/* Estilo especial para o item "Suporte & Treino" que é mais alto */
.nav-link.text-center {
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}