:root {
    --primary-color: #ff007f;
    --secondary-color: #ffcc00;
    --accent-color: #00dbde;
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --text-white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; scroll-behavior: smooth; }

body { background-color: var(--dark-bg); color: var(--text-white); overflow-x: hidden; }

/* NAVBAR */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 5%; background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px); position: sticky; top: 0; z-index: 1000;
}
.logo { font-size: 1.6rem; font-weight: 800; color: var(--secondary-color); }
.logo span { color: var(--primary-color); }
.nav-links { display: flex; list-style: none; }
.nav-links li a { color: white; text-decoration: none; margin-left: 25px; font-size: 0.9rem; text-transform: uppercase; transition: 0.3s; }
.nav-links li a:hover { color: var(--accent-color); }

/* HERO */
.hero {
    height: 80vh; background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/festival.jpg');
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.badge { background: var(--primary-color); padding: 5px 15px; border-radius: 50px; font-size: 0.8rem; font-weight: bold; margin-bottom: 15px; display: inline-block; }
.hero h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); font-weight: 800; margin-bottom: 20px; background: linear-gradient(to right, #fff, var(--secondary-color)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.btn-principal { background: var(--primary-color); color: white; padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: bold; display: inline-block; margin: 10px; transition: 0.3s; }
.btn-secundario { border: 2px solid white; color: white; padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: bold; display: inline-block; margin: 10px; }
.btn-principal:hover { transform: scale(1.05); }

/* AGENDA */
.agenda-carnaval { padding: 60px 5%; background: #161616; text-align: center; }
.agenda-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; max-width: 1200px; margin: 0 auto; }
.dia-bloco { background: var(--card-bg); padding: 30px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); }
.dia-bloco.destaque { border-color: var(--secondary-color); box-shadow: 0 0 15px rgba(255,204,0,0.2); }
.dia-bloco .data { color: var(--accent-color); font-weight: bold; display: block; margin-bottom: 10px; }

/* CARROSSEL & LIGHTBOX */
.carrossel { display: flex; gap: 20px; overflow-x: auto; padding: 20px 5%; scrollbar-width: none; }
.carrossel img { width: 300px; height: 200px; object-fit: cover; border-radius: 15px; flex-shrink: 0; cursor: zoom-in; transition: 0.3s; }
.carrossel img:hover { transform: scale(1.05); }
.lightbox { display: none; position: fixed; z-index: 3000; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); align-items: center; justify-content: center; }
.lightbox img { max-width: 90%; max-height: 80%; border-radius: 10px; border: 3px solid var(--secondary-color); }

/* TICKER PARCEIROS */
.parceiros { background: #000; padding: 20px 0; overflow: hidden; border-top: 2px solid var(--secondary-color); }
.ticker-content { display: flex; white-space: nowrap; animation: ticker 60s linear infinite; }
.parceiro-item { color: var(--secondary-color); padding: 0 30px; font-weight: bold; text-transform: uppercase; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* WHATSAPP */
.whatsapp-float { position: fixed; bottom: 25px; right: 25px; background: #25d366; color: white; padding: 12px 25px; border-radius: 50px; text-decoration: none; font-weight: bold; display: flex; align-items: center; gap: 10px; z-index: 2000; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }

/* MOBILE */
@media (max-width: 768px) { .nav-links { display: none; } .whatsapp-float span { display: none; } .whatsapp-float { padding: 15px; border-radius: 50%; } }


Muda a questão das cores apenas e deixa do jeito que ele pediu,se não vamos perde o trampo que tinha ficado bom
