  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --purple: #8B5CF6;
            --purple-dark: #6D28D9;
            --blue-dark: #1E3A8A;
            --blue: #3B82F6;
            --black: #0a0a0f;
            --white: #ffffff;
            --gray: #a1a1aa;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            background: var(--black);
            color: var(--white);
            overflow-x: hidden;
            position: relative;
        }

        /* fundo */
        .bg-gradient {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background: 
        radial-gradient(circle at top left, #761c8d 0%, transparent 30%),
        radial-gradient(circle at bottom right, #1E3A8A 0%, transparent 35%),
        radial-gradient(ellipse at center, #0a0a0f 0%, #0a0a0f 100%);
        background-color: #0a0a0f;
        }

   
        /* navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0 2rem;
            background: rgba(10, 10, 15, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 0 2rem;
            background: rgba(10, 10, 15, 0.95);
        }

        .navbar-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.2rem;
            font-weight: 600;
            background: linear-gradient(135deg, var(--purple), var(--blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .logo-icon {
            font-size: 1.5rem;
        }

        .navbar-logo-img {
            height: 108px;
            width: auto;
            filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
            transition: filter 0.3s ease, transform 0.3s ease;
        }

        .navbar-logo-img:hover {
            filter: drop-shadow(0 0 16px rgba(139, 92, 246, 0.85));
            transform: scale(1.04);
        }

        .links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--gray);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--purple), var(--blue));
            transition: width 0.3s ease;
        }
        .nav-links {
        display: flex;
        gap: 2rem;
        list-style: none;
        }

        .nav-links a:hover {
            color: var(--white);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, var(--purple), var(--blue));
            border: none;
            border-radius: 50px;
            color: var(--white);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 0.8rem;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
        }

        /* hamburguer */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 2px;
            background: var(--white);
            transition: all 0.3s ease;
        }

        /* inicio herozito */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8rem 2rem 4rem;
            position: relative;
        }

        .hero-content {
            max-width: 1200px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .free-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1.5rem;
            background: rgba(139, 92, 246, 0.2);
            border: 1px solid rgba(139, 92, 246, 0.5);
            border-radius: 50px;
            font-size: 0.6rem;
            font-weight: 600;
            color: var(--purple);
            margin-bottom: 2rem;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
            }
            50% {
                box-shadow: 0 0 20px 10px rgba(139, 92, 246, 0);
            }
        }

        .hero-title {
            font-size: clamp(2.7rem, 9vw, 5.7rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            animation: slideUp 1s ease-out;
        }

        .hero-title .highlight {
            background: linear-gradient(135deg, var(--purple), var(--blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-info {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin: 2rem 0;
            flex-wrap: wrap;
            animation: slideUp 1s ease-out 0.2s both;
        }

        .hero-info-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.8rem;
        }

        .hero-info-item svg {
            width: 24px;
            height: 24px;
            color: var(--purple);
        }

        .hero-description {
            font-size: 0.9rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto 2.5rem;
            line-height: 1.7;
        }

        .hero-sponsor {
            display: inline-block;
            color: var(--gray);
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }

        .hero-sponsor strong {
            color: var(--white);
            font-weight: 600;
        }

        .hero-cta-group {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            animation: slideUp 1s ease-out 0.6s both;
            flex-wrap: wrap;
        }

        .btn-primary {
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, var(--purple), var(--blue));
            border: none;
            border-radius: 50px;
            color: var(--white);
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
        }

        .btn-secondary {
            padding: 1rem 2.5rem;
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            color: var(--white);
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--white);
        }

        /* redes */
        .social-circles {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            animation: slideUp 1s ease-out 0.8s both;
        }

        .social-circle {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-circle:hover {
            background: linear-gradient(135deg, var(--purple), var(--blue));
            transform: translateY(-5px) scale(1.1);
            border-color: transparent;
        }

        .social-circle svg {
            width: 24px;
            height: 24px;
        }

        /* parceria, so 1 */
        .partners {
            padding: 4rem 2rem;
            position: relative;
        }

        .partners-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .partners-title {
            font-size: 1.1rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 2rem;
        }

        .partners-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
            opacity: 0.6;
            transition: opacity 0.3s ease;
        }

        .partners-grid:hover {
            opacity: 1;
        }

        .partner-logo {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--gray);
            transition: all 0.3s ease;
            cursor: default;
        }

        .partner-logo:hover {
            color: var(--white);
            transform: scale(1.1);
        }

        /* programação */
        .schedule {
            padding: 6rem 2rem 2rem;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(139, 92, 246, 0.2);
            border-radius: 50px;
            font-size: 0.6rem;
            font-weight: 600;
            color: var(--purple);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            color: var(--gray);
            font-size: 0.8rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .schedule-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .schedule-timeline {
            position: relative;
            padding-left: 2rem;
        }

        .schedule-timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, var(--purple), var(--blue), var(--purple));
        }

        .schedule-item {
            position: relative;
            padding: 2rem;
            margin-bottom: 2rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateX(-30px);
        }

        .schedule-item.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .schedule-item:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(139, 92, 246, 0.5);
            transform: translateX(10px);
        }

        .schedule-item::before {
            content: '';
            position: absolute;
            left: -2.5rem;
            top: 2.5rem;
            width: 16px;
            height: 16px;
            background: linear-gradient(135deg, var(--purple), var(--blue));
            border-radius: 50%;
            border: 3px solid var(--black);
        }

        .schedule-time {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background: linear-gradient(135deg, var(--purple), var(--blue));
            border-radius: 50px;
            font-size: 0.6rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .schedule-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .schedule-speaker {
            color: var(--purple);
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .schedule-description {
            color: var(--gray);
            line-height: 1.6;
        }

        .schedule-tags {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }

        .schedule-tag {
            padding: 0.25rem 0.75rem;
            background: rgba(59, 130, 246, 0.2);
            border-radius: 50px;
            font-size: 0.6rem;
            color: var(--blue);
        }

        

        /* Location Section */
        .location {
            padding: 2rem 2rem;
            position: relative;
        }

        .location-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .location-info h3 {
            font-size: 2.0rem;
            margin-bottom: 1.5rem;
        }

        .location-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .location-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .location-icon {
            width: 60px;
            height: 60px;
            background: rgba(139, 92, 246, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .location-icon svg {
            width: 30px;
            height: 30px;
            color: var(--purple);
        }

        .location-text h4 {
            font-size:18px;
            font-weight: 600px;
            margin-bottom: 0.25rem;
        }

        .location-text p {
            color: var(--gray);
            font-size: 1.1rem;
        }

        .location-map {
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            height: 400px;
            position: relative;
        }
        
        .location-map{
        height:400px;
        border-radius:20px;
        overflow:hidden;
        }

        #map {
            width: 100%;
            height: 100%;
        }

        /*  garantir vaga */
        .cta {
            padding: 6rem 2rem;
            position: relative;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 4rem;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(30, 58, 138, 0.2));
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 30px;
            position: relative;
            overflow: hidden;
        }

        .cta-content::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
            animation: rotateBg 20s linear infinite;
        }

        @keyframes rotateBg {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        .cta-title {
            font-size: 1.7rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
        }

        .cta-subtitle {
            color: var(--gray);
            font-size: 0.8rem;
            margin-bottom: 2rem;
            position: relative;
        }

        .cta-buttons {
            position: relative;
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }


        /* Footer */
        .footer {
            padding: 4rem 2rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand .logo {
            margin-bottom: 1rem;
        }

        .footer-brand p {
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-title {
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--white);
            padding-left: 5px;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            color: var(--gray);
            font-size: 0.7rem;
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* bolinhas */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--purple);
            border-radius: 50%;
            animation: particleFloat 20s linear infinite;
            opacity: 0.5;
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.5;
            }
            90% {
                opacity: 0.5;
            }
            100% {
                transform: translateY(-100vh) rotate(720deg);
                opacity: 0;
            }
        }

        /* trocar as palavras */
        .typing-text {
            display: inline-block;
            border-right: 3px solid var(--purple);
            animation: blink 1s step-end infinite;
        }

        @keyframes blink {
            50% {
                border-color: transparent;
            }
        }

        /* tremidinha */
        .glitch {
            position: relative;
        }

        .glitch:hover {
            animation: glitch 0.3s ease;
        }

        @keyframes glitch {
            0%, 100% {
                transform: translate(0);
            }
            20% {
                transform: translate(-2px, 2px);
            }
            40% {
                transform: translate(-2px, -2px);
            }
            60% {
                transform: translate(2px, 2px);
            }
            80% {
                transform: translate(2px, -2px);
            }
        }

        /* responsivo */
        @media (max-width: 1024px) {
            .location-content {
                grid-template-columns: 1fr;
            }

            .footer-main {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px){
            .logo{
             display:flex;
             justify-content: center;
             text-align:center;
            }
            .mobile-menu-btn {
                display: flex;
            }

            .hero-info {
                flex-direction: row;
                gap: 1rem;
            }

            .hero-cta-group {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .footer-main {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .schedule-timeline {
                padding-left: 1.5rem;
            }

            .schedule-item::before {
                left: -2rem;
            }
        }
        @media (max-width:768px){

    .nav-links{
        display:none;
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background: rgba(10,10,15,0.98);
        backdrop-filter: blur(20px);

        flex-direction:column;
        align-items:center;
        gap:1.5rem;

        padding:2rem 0;
        border-bottom:1px solid rgba(255,255,255,0.1);
    }

    .nav-links a{
        font-size:0.8rem;
    }

    .mobile-menu-btn{
        display:flex;
    }

}

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--black);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--purple), var(--blue));
            border-radius: 4px;
        }

        /* Selection */
        ::selection {
            background: var(--purple);
            color: var(--white);
        }

        /* chuvinha */
        .code-rain {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            opacity: 0.03;
        }

        .code-column {
            position: absolute;
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            color: var(--purple);
            writing-mode: vertical-rl;
            animation: codeRain 15s linear infinite;
        }

        @keyframes codeRain {
            0% {
                transform: translateY(-100%);
            }
            100% {
                transform: translateY(100vh);
            }
        }
        @media (max-width:768px){
    .nav-cta{
        display:none;
    }
}

        /* logo do evento no hero */
        .hero-logo-img {
            max-width: 260px;
            width: 100%;
            margin-bottom: 1.5rem;
            animation: slideUp 1s ease-out;
            filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.4));
        }

        /* seção iniciante */
        .iniciante-section {
            padding: 4rem 2rem 3rem;
            text-align: center;
            position: relative;
        }

        .iniciante-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .iniciante-top {
            font-size: clamp(1.6rem, 4vw, 3rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 0.2rem;
        }

        .iniciante-word {
            display: block;
            font-size: clamp(3.5rem, 10vw, 8rem);
            font-weight: 700;
            font-style: italic;
            text-transform: uppercase;
            background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            letter-spacing: -2px;
        }

        .iniciante-bar {
            width: 50%;
            height: 5px;
            background: linear-gradient(90deg, var(--blue), var(--purple));
            border-radius: 3px;
            margin: 0.8rem auto 0;
        }

        /* parceiros redesign */
        .partners-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2.5rem;
        }

        .partners-label {
            font-size: 0.7rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gray);
            margin-bottom: 1.2rem;
        }

        .patrocinio-block {
            text-align: center;
        }

        .patrocinador-img {
            max-width: 340px;
            width: 100%;
            opacity: 0.85;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .patrocinador-img:hover {
            opacity: 1;
            transform: scale(1.03);
        }

        .partners-sep {
            width: 80%;
            max-width: 600px;
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
        }

        .apoio-block {
            text-align: center;
        }

        .apoio-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .apoio-img {
            max-height: 90px;
            max-width: 160px;
            object-fit: contain;
            opacity: 0.8;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .apoio-img:hover {
            opacity: 1;
            transform: scale(1.05);
        }

        .apoio-img-dark {
            border-radius: 10px;
        }

        .apoio-line {
            width: 1px;
            height: 70px;
            background: rgba(255, 255, 255, 0.2);
        }

        @media (max-width: 768px) {
            .hero-logo-img {
                max-width: 200px;
            }

            .iniciante-bar {
                width: 80%;
            }

            .apoio-logos {
                gap: 2rem;
            }

            .apoio-line {
                display: none;
            }
        }
