/* ===== VMCC SHARED STYLES - Sub-pages ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary: #0a1a2f;
    --accent: #00d4ff;
    --accent2: #7c3aed;
    --dark: #060d1a;
    --white: #fff;
    --text: #334155;
    --text-light: #64748b;
    --border: #e2e8f0;
    --glass: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.12);
    --transition: all 0.3s ease;
    --radius: 16px;
    --radius-lg: 24px
}

[data-theme="dark"] {
    --bg: #060d1a;
    --bg2: #0d1b2e;
    --surface: #0f2440;
    --text: #e2e8f0;
    --text-light: #94a3b8;
    --border: #1e3a5f
}

[data-theme="light"] {
    --bg: #f0f4ff;
    --bg2: #fff;
    --surface: #fff;
    --text: #0f172a;
    --text-light: #64748b;
    --border: #e2e8f0
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    transition: background .4s, color .4s
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: .8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideDown .8s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(6, 13, 26, .9);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition)
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none
}

.logo-img {
    width: 65px;
    height: 65px;
    border-radius: 14px;
    object-fit: contain;
    animation: pulse 4s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4)
}

.logo-video {
    width: 65px;
    height: 65px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6), 0 0 40px rgba(124, 58, 237, 0.4);
    border: 2px solid rgba(0, 212, 255, 0.3)
}

.logo-text h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.5px
}

.logo-text span {
    font-size: .75rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center
}

nav ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
    font-size: .9rem;
    position: relative;
    padding: .4rem 0;
    transition: var(--transition)
}

nav ul li a:hover {
    color: var(--accent)
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width .3s
}

nav ul li a:hover::after {
    width: 100%
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent), #0099bb) !important;
    color: var(--dark) !important;
    padding: .5rem 1.4rem !important;
    border-radius: 30px;
    font-weight: 700 !important
}

.nav-cta::after {
    display: none !important
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, .4);
    color: var(--dark) !important
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem
}

.theme-toggle {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    cursor: pointer;
    color: var(--accent);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition)
}

.theme-toggle:hover {
    background: var(--accent);
    color: var(--dark)
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: rgba(255, 255, 255, .9);
    font-size: 1.4rem;
    cursor: pointer
}

.page-hero {
    background: linear-gradient(135deg, #060d1a, #0a1a2f, #0d2545);
    padding: 6rem 5% 4rem;
    text-align: center;
    position: relative;
    overflow: hidden
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('hero_bg.png') center/cover no-repeat;
    opacity: .12
}

.page-hero-content {
    position: relative;
    z-index: 1
}

.page-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(0, 212, 255, .12);
    border: 1px solid rgba(0, 212, 255, .3);
    color: var(--accent);
    padding: .4rem 1.2rem;
    border-radius: 30px;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: .5px
}

.page-hero h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    animation: fadeUp .8s ease
}

.page-hero p {
    color: rgba(255, 255, 255, .8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeUp .8s ease .1s both
}

.page-content {
    padding: 5rem 5%;
    background: var(--bg2)
}

.section-tag {
    display: inline-block;
    background: rgba(0, 212, 255, .1);
    border: 1px solid rgba(0, 212, 255, .25);
    color: var(--accent);
    padding: .35rem 1rem;
    border-radius: 30px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem
}

.section-title {
    text-align: center;
    margin-bottom: 3rem
}

.section-title h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: .8rem
}

.section-title p {
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto
}

footer {
    background: linear-gradient(135deg, #04080f, #070f1c);
    padding: 3.5rem 5% 1.5rem;
    position: relative
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent)
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem
}

.footer-brand img {
    width: 50px;
    border-radius: 10px;
    margin-bottom: .8rem
}

.footer-brand p {
    color: #64748b;
    font-size: .88rem;
    line-height: 1.6;
    margin-bottom: 1.2rem
}

.social-row {
    display: flex;
    gap: .6rem
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    font-size: .9rem
}

.social-btn:hover {
    background: var(--accent);
    color: var(--dark);
    border-color: transparent;
    transform: translateY(-3px)
}

.footer-col h5 {
    font-family: 'Outfit', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 1rem;
    padding-bottom: .6rem;
    position: relative
}

.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--accent)
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.footer-col ul li a,
.footer-col ul li span {
    color: #64748b;
    text-decoration: none;
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: .4rem;
    transition: var(--transition)
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 4px
}

.footer-col ul li i {
    color: var(--accent);
    font-size: .82rem;
    min-width: 14px
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem
}

.footer-bottom p {
    color: #475569;
    font-size: .82rem
}

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25d366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    z-index: 900;
    box-shadow: 0 8px 20px rgba(37, 211, 102, .35);
    animation: pulse 3s ease-in-out infinite
}

.whatsapp-float:hover {
    background: #1db954;
    transform: scale(1.1)
}

[data-aos] {
    opacity: 0;
    transition: opacity .7s ease, transform .7s ease
}

[data-aos="fade-up"] {
    transform: translateY(30px)
}

[data-aos="fade-right"] {
    transform: translateX(-40px)
}

[data-aos="fade-left"] {
    transform: translateX(40px)
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--accent);
    color: var(--dark);
    padding: .8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
    margin-top: 2rem
}

.btn-back:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, .4)
}

@media(max-width:768px) {
    nav {
        position: fixed;
        top: 73px;
        left: 0;
        width: 100%;
        background: rgba(6, 13, 26, .97);
        border-bottom: 1px solid var(--glass-border);
        padding: 1.5rem;
        display: none;
        backdrop-filter: blur(20px)
    }

    nav.open {
        display: block
    }

    nav ul {
        flex-direction: column;
        gap: .5rem;
        align-items: stretch
    }

    nav ul li a {
        display: block;
        padding: .8rem 1rem;
        border-radius: 10px
    }

    nav ul li a:hover {
        background: rgba(0, 212, 255, .08)
    }

    nav ul li a::after {
        display: none
    }

    .menu-toggle {
        display: block
    }

    .footer-grid {
        grid-template-columns: 1fr
    }
}