:root {
    --yellow: #FFD248;
    --yellow-dark: #c9a200;
    --pink: #DA4B95;
    --pink-light: #e87bbf;
    --purple: #61488A;
    --purple-light: #8b6fba;
    --purple-dark: #3d2a5e;
    --teal: #0C7385;
    --teal-light: #3a9aaa;
    --teal-dark: #074f5c;
    --bg: #f5f4fa;
    --bg-teal: #eaf5f7;
    --white: #ffffff;
    --text: #1a1228;
    --text-soft: #4a4060;
    --text-muted: #9088a8;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #f0e8ff;
    padding: 14px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--purple), var(--teal));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.nav-logo-text {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 17px;
    color: var(--purple);
    line-height: 1;
}

.nav-logo-text span {
    color: var(--pink);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-soft);
    text-decoration: none;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--purple);
}

.nav-cta {
    background: var(--pink) !important;
    color: #fff !important;
    padding: 9px 20px;
    border-radius: 30px;
    font-weight: 700 !important;
    transition: background .2s, transform .2s !important;
}

.nav-cta:hover {
    background: #c03080 !important;
    transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(150deg, var(--purple-dark) 0%, var(--purple) 45%, var(--teal-dark) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 32px 60px;
}

/* Decorative blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: rgba(218, 75, 149, 0.12);
    top: -120px;
    right: -120px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 210, 72, 0.08);
    bottom: -80px;
    left: -60px;
}

.blob-3 {
    width: 180px;
    height: 180px;
    background: rgba(12, 115, 133, 0.2);
    top: 40%;
    left: 40%;
}

/* Grid lines decorativas */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--yellow);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.hero h1 {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    color: var(--yellow);
    position: relative;
    display: inline-block;
}

.hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 460px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--pink);
    color: #fff;
    padding: 15px 30px;
    border-radius: 40px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 24px rgba(218, 75, 149, 0.4);
    transition: transform .2s, box-shadow .2s;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(218, 75, 149, 0.5);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 15px 26px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
}

/* Hero visual side */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(8px);
    animation: floatIn .6s ease both;
}

.stat-card:nth-child(2) {
    animation-delay: .15s;
    margin-left: 24px;
}

.stat-card:nth-child(3) {
    animation-delay: .3s;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.stat-icon.pink {
    background: rgba(218, 75, 149, 0.25);
}

.stat-icon.teal {
    background: rgba(12, 115, 133, 0.25);
}

.stat-icon.yellow {
    background: rgba(255, 210, 72, 0.2);
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 3px;
}

.stat-value {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
}

/* Scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {

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

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

/* ── SECTIONS ── */
.section {
    padding: 72px 32px;
}

.section-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink), var(--teal));
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 900;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-title span {
    color: var(--pink);
}

.section-title .teal {
    color: var(--teal);
}

.section-sub {
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.7;
    max-width: 580px;
}

/* ── SOBRE A CIDADE ── */
.cidade {
    background: var(--white);
}

.cidade-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 40px;
}

.cidade-texto p {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 16px;
}

.cidade-numeros {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.num-card {
    background: var(--bg);
    border: 2px solid #ece6f8;
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    transition: border-color .2s, transform .2s;
}

.num-card:hover {
    border-color: var(--purple-light);
    transform: translateY(-2px);
}

.num-card .nc-value {
    font-family: 'Nunito', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--purple);
    line-height: 1;
    margin-bottom: 6px;
}

.num-card:nth-child(2) .nc-value {
    color: var(--teal);
}

.num-card:nth-child(3) .nc-value {
    color: var(--pink);
}

.num-card:nth-child(4) .nc-value {
    color: var(--yellow-dark);
}

.num-card .nc-label {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ── O PROJETO ── */
.projeto {
    background: var(--bg-teal);
}

.projeto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.projeto-card {
    background: var(--white);
    border: 2px solid #dde8ef;
    border-radius: 16px;
    padding: 28px 22px;
    transition: border-color .2s, transform .2s;
}

.projeto-card:hover {
    border-color: var(--teal);
    transform: translateY(-3px);
}

.projeto-card .pc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.pc-icon.purple {
    background: #f0ebff;
}

.pc-icon.teal {
    background: #eaf5f7;
}

.pc-icon.pink {
    background: #fce4f0;
}

.pc-icon.yellow {
    background: #fffbde;
}

.projeto-card h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}

.projeto-card p {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.6;
}

.em-breve {
    display: inline-block;
    background: var(--yellow);
    color: var(--purple-dark);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 9px;
    border-radius: 20px;
    margin-top: 10px;
}

.disponivel {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 9px;
    border-radius: 20px;
    margin-top: 10px;
}

/* ── CURSO DESTAQUE ── */
.curso-destaque {
    background: var(--white);
}

.curso-card {
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 55%, var(--teal-dark) 100%);
    border-radius: 24px;
    padding: 48px 44px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.curso-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(218, 75, 149, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.curso-card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 30%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.curso-card-content {
    position: relative;
    z-index: 2;
}

.curso-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--yellow);
    color: var(--purple-dark);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.curso-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
}

.curso-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 28px;
}

.curso-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.cbadge {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
}

.btn-curso {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pink);
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(218, 75, 149, 0.4);
    transition: transform .2s, box-shadow .2s;
}

.btn-curso:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(218, 75, 149, 0.5);
}

/* Vagas mini */
.vagas-mini {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 18px 20px;
    position: relative;
    z-index: 2;
}

.vagas-mini .vm-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.vagas-mini .vm-num {
    font-family: 'Nunito', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 4px;
}

.vagas-mini .vm-total {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 14px;
}

.vm-bar {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 14px;
}

.vm-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--yellow), #e8a000);
    border-radius: 10px;
}

.vagas-mini .vm-alert {
    font-size: 12px;
    color: var(--yellow);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot-pulse {
    width: 8px;
    height: 8px;
    background: var(--yellow);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

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

    50% {
        opacity: .5;
        transform: scale(1.4);
    }
}

/* ── SOBRE ── */
.sobre {
    background: var(--bg);
}

.sobre-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 52px;
    align-items: center;
    margin-top: 40px;
}

.sobre-visual {
    background: linear-gradient(135deg, #eaf5f7, #f0ebff);
    border: 2px solid #dde8ef;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
}

.sobre-foto {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--teal), var(--purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 16px;
    overflow: hidden;
}

.sobre-visual h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--purple);
    margin-bottom: 4px;
}

.sobre-role {
    font-size: 12px;
    font-weight: 700;
    color: var(--pink);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.sobre-visual p {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.6;
}

.sobre-texto h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.3;
}

.sobre-texto h3 span {
    color: var(--teal);
}

.sobre-texto p {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 14px;
}

.sobre-valores {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.valor-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.5;
}

.vi-dot {
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

/* ── FOOTER ── */
footer {
    background: linear-gradient(135deg, var(--purple-dark), var(--teal-dark));
    border-top: 3px solid var(--yellow);
    padding: 40px 32px 28px;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .fb-logo {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

.footer-brand .fb-logo span {
    color: var(--pink-light);
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.footer-col h5 {
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1000px;
    margin: 20px auto 0;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .cidade-grid {
        grid-template-columns: 1fr;
    }

    .projeto-grid {
        grid-template-columns: 1fr 1fr;
    }

    .curso-card {
        grid-template-columns: 1fr;
    }

    .sobre-inner {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    nav {
        padding: 12px 20px;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 560px) {
    .projeto-grid {
        grid-template-columns: 1fr;
    }

    .cidade-numeros {
        grid-template-columns: 1fr 1fr;
    }

    .section {
        padding: 52px 20px;
    }

    .curso-card {
        padding: 32px 24px;
    }
}