/* ================================================= */
/* CRONOGRAMER V2 - GUIA */
/* ================================================= */

:root {

    --bg: #070b14;
    --bg-secondary: #0f172a;

    --card: rgba(15, 23, 42, 0.82);

    --border: rgba(255,255,255,0.08);

    --text: #f8fafc;
    --text-secondary: #94a3b8;

    --primary: #3b82f6;

}

/* ================================================= */
/* RESET */
/* ================================================= */

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

html {
    scroll-behavior: smooth;
}

body {

    display: flex;

    min-height: 100vh;

    background:
        radial-gradient(circle at top,
        rgba(59,130,246,0.10),
        transparent 30%),
        var(--bg);

    color: var(--text);

    font-family: 'Segoe UI', sans-serif;

    overflow-x: hidden;
}

img {

    max-width: 100%;
    display: block;
}

/* ================================================= */
/* SIDEBAR */
/* ================================================= */

.sidebar {

    position: fixed;

    top: 0;
    left: 0;

    width: 300px;
    height: 100vh;

    padding: 30px 24px;

    background: rgba(7,11,20,0.95);

    border-right: 1px solid rgba(255,255,255,0.05);

    backdrop-filter: blur(12px);

    overflow-y: auto;

    z-index: 999;
    
    scrollbar-width: thin; scrollbar-color: rgba(59,130,246,0.3) transparent;
}

.sidebar-top {

    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 40px;
}

.sidebar-logo {

    width: 220px;
}

.sidebar-top h2 {

    font-size: 20px;
    margin-bottom: 4px;
}

.sidebar-top span {

    color: var(--text-secondary);
    font-size: 14px;
}

.sidebar-nav {

    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-nav a {

    position: relative;

    display: flex;
    align-items: center;

    padding: 14px 16px;

    border-radius: 14px;

    color: #cbd5e1;

    font-size: 15px;
    font-weight: 500;

    text-decoration: none;

    transition: all 0.25s ease;

    border: 1px solid transparent;
}

/* EFECTO HOVER */
.sidebar-nav a:hover {

    background: rgba(59,130,246,0.10);

    border-color: rgba(59,130,246,0.18);

    color: white;

    transform: translateX(4px);
}

/* INDICADOR LATERAL */
.sidebar-nav a::before {

    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 3px;
    height: 0%;

    background: #3b82f6;

    border-radius: 999px;

    transform: translateY(-50%);

    transition: 0.25s ease;
}

.sidebar-nav a:hover::before {

    height: 60%;
}


.sidebar-nav2 {

align-content:center;
}

.sidebar-nav2 a {

    position: center;

    display: fixed;
    align-items: center;

    padding: 14px 16px;

    border-radius: 14px;

    color: #cbd5e1;

    font-size: 15px;
    font-weight: 500;

    text-decoration: none;

    transition: all 0.25s ease;

    border: 1px solid transparent;
}

/* EFECTO HOVER */
.sidebar-nav2 a:hover {

    background: rgba(59,130,246,0.10);

    border-color: rgba(59,130,246,0.18);

    color: white;

    transform: translateX(4px);
}

/* INDICADOR LATERAL */
.sidebar-nav2 a::before {

    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 3px;
    height: 0%;

    background: #3b82f6;

    border-radius: 999px;

    transform: translateY(-50%);

    transition: 0.25s ease;
}

.sidebar-nav2 a:hover::before {

    height: 60%;
}
/* ================================================= */
/* CONTENT */
/* ================================================= */

.content {

    margin-left: 300px;

    width: calc(100% - 300px);

    padding: 70px 70px 120px 70px;
}

/* ================================================= */
/* HERO */
/* ================================================= */

.guide-hero {

    margin-bottom: 100px;
}

.guide-badge {

    display: inline-block;

    margin-bottom: 24px;

    padding: 10px 16px;

    border-radius: 999px;

    background: rgba(59,130,246,0.12);

    border: 1px solid rgba(59,130,246,0.2);

    color: #93c5fd;

    font-size: 14px;
    font-weight: 600;
}

.guide-hero h1 {

    font-size: 46px;

    line-height: 1.3;

    margin-bottom: 26px;

    background:
        linear-gradient(
            to right,
            white,
            #93c5fd
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.guide-hero p {

    max-width: 760px;

    color: var(--text-secondary);

    font-size: 19px;

    line-height: 1.8;
}

/* ================================================= */
/* GUIDE SECTION */
/* ================================================= */

.guide-section {

    margin-bottom: 100px;
}

.guide-section h2 {

    font-size: 38px;

    margin-bottom: 26px;
}

.guide-section p {

    color: var(--text-secondary);

    line-height: 1.8;

    margin-bottom: 22px;
}

.guide-section ul {

    margin-left: 24px;
    margin-bottom: 28px;
}

.guide-section li {

    margin-bottom: 12px;

    color: var(--text-secondary);

    line-height: 1.7;
}

.guide-section img {

    width: 100%;

    margin-top: 30px;

    border-radius: 22px;

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 25px 70px rgba(0,0,0,0.45);
}

/* ================================================= */
/* GUIDE CARD */
/* ================================================= */

.guide-card {

    padding: 34px;

    margin-bottom: 28px;

    border-radius: 24px;

    background: var(--card);

    border: 1px solid var(--border);

    backdrop-filter: blur(10px);
}

.guide-card h3 {

    font-size: 24px;

    margin-bottom: 18px;
}

.guide-card p {

    margin-bottom: 18px;
}

/* ================================================= */
/* GRID */
/* ================================================= */

.guide-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

    gap: 22px;

    margin-top: 40px;
}

.mini-card {

    padding: 28px;

    border-radius: 20px;

    background: var(--card);

    border: 1px solid var(--border);
}

.mini-card h3 {

    margin-bottom: 14px;
}

/* ================================================= */
/* FAQ */
/* ================================================= */

.faq-item {

    padding: 32px;

    margin-bottom: 24px;

    border-radius: 24px;

    background: var(--card);

    border: 1px solid var(--border);
}

.faq-item h3 {

    font-size: 22px;

    margin-bottom: 16px;
}

/* ================================================= */
/* FOOTER */
/* ================================================= */

.guide-footer {

    padding-top: 40px;

    border-top: 1px solid rgba(255,255,255,0.05);
}

.guide-footer p {

    color: #64748b;
}

/* ================================================= */
/* SCROLLBAR */
/* ================================================= */

::-webkit-scrollbar {

    width: 10px;
}

::-webkit-scrollbar-track {

    background: #0b1120;
}

::-webkit-scrollbar-thumb {

    background: rgba(59,130,246,0.35);

    border-radius: 999px;
}

/* ================================================= */
/* MOBILE */
/* ================================================= */

@media (max-width: 1100px) {

    body {

        display: block;
    }

    .sidebar {

        position: relative;

        width: 100%;
        height: auto;

        border-right: none;

        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .content {

        width: 100%;

        margin-left: 0;

        padding: 60px 24px 100px 24px;
    }

}

@media (max-width: 768px) {

    .guide-hero h1 {

        font-size: 40px;
    }

    .guide-section h2 {

        font-size: 30px;
    }

    .guide-card,
    .faq-item {

        padding: 26px;
    }

}

@media (max-width: 520px) {

    .sidebar {

        padding: 24px 18px;
    }

    .content {

        padding: 50px 18px 90px 18px;
    }

    .guide-hero h1 {

        font-size: 34px;
    }

    .guide-hero p {

        font-size: 17px;
    }

    .guide-section h2 {

        font-size: 28px;
    }

}