/* ===================================
   PETZOO - DESIGN FUTURISTA
   Cores Neon + Glassmorphism
   =================================== */

:root {
    /* ── Identidade PetZoo — Padrão Claro ──────────────────── */
    --neon-cyan: #1565C0;
    /* azul principal               */
    --neon-magenta: #FFB300;
    /* amarelo/accent                */
    --neon-yellow: #FFB300;
    /* amarelo                       */
    --neon-green: #1976D2;
    /* azul médio                    */
    --neon-purple: #F49A0A;
    /* laranja intenso               */
    --neon-orange: #F49A0A;

    /* ── Fundo do site ─────────────────────────────────────── */
    /* ☀️ CLARO (padrão ativo)                                  */
    --dark-bg: #F4F8FE;
    --darker-bg: #FFFFFF;

    /* 🌙 ESCURO — descomente para ativar:                      */
    /* --dark-bg:   #0a0e27; */
    /* --darker-bg: #050811; */

    /* 🔵 AZUL MÉDIO — descomente para ativar:                  */
    /* --dark-bg:   #1a2f5e; */
    /* --darker-bg: #0f1e3d; */

    /* ── Glassmorphism ─────────────────────────────────────── */
    --glass-bg: rgba(21, 101, 192, 0.06);
    --glass-border: rgba(21, 101, 192, 0.15);

    /* ── Textos ─────────────────────────────────────────────── */
    --text-main: #0D1B2E;
    --text-muted: #4A6080;
    --text-light: #8CA3BF;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6,
.brand-futuristic {
    font-family: 'Orbitron', sans-serif;
}

/* ===================================
   NAVBAR FUTURISTA
   =================================== */
.glass-navbar {
    position: fixed !important;
    top: 88px !important;
    /* 48px (patrocinadores) + 40px (noticias) */
    left: 0;
    right: 0;
    z-index: 1029;
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    min-height: 66px;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .glass-navbar {
        top: 88px !important;
        min-height: 56px !important;
        padding: .75rem 0 !important;
    }
}

.brand-futuristic {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1565C0, #1976D2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(21, 101, 192, 0.4);
}

.nav-link {
    font-weight: 600;
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.neon-border {
    border: 1px solid var(--neon-cyan) !important;
    box-shadow: 0 0 10px var(--neon-cyan);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #E3F2FD 0%, #F4F8FE 100%);
    overflow: hidden;
    padding-top: 80px;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.logo-container {
    position: relative;
    z-index: 2;
}

.logo-animated {
    max-width: 200px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 60px rgba(21, 101, 192, 0.5),
        0 0 100px rgba(255, 179, 0, 0.3);
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

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

.text-gradient {
    background: linear-gradient(135deg, #1565C0 0%, #1976D2 50%, #FFB300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* .neon-text {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan),
        0 0 20px var(--neon-cyan),
        0 0 40px var(--neon-cyan);
} */

.neon-text {
    color: #4BA3E8;
    text-shadow: 0 0 10px rgba(21, 101, 192, 0.5),
        0 0 20px rgba(21, 101, 192, 0.3),
        0 0 40px rgba(21, 101, 192, 0.15);
}

.text-glow {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Botões Neon */
.btn-neon {
    background: linear-gradient(135deg, #1565C0, #1976D2);
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(21, 101, 192, 0.5),
        0 0 40px rgba(255, 179, 0, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-neon:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(21, 101, 192, 0.8),
        0 0 60px rgba(255, 179, 0, 0.5);
    color: #fff;
}

.btn-outline-neon {
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(21, 101, 192, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-neon:hover {
    background: linear-gradient(135deg, #1565C0, #1976D2);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 30px rgba(21, 101, 192, 0.6);
    transform: translateY(-3px);
}

/* Cards Flutuantes */
.hero-image-container {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: floatCard 4s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: 5%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: 3s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0px);
    }

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

.glass-card {
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(21, 101, 192, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Scroll Indicator */
/* .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    animation: bounce 2s infinite;
} */

/* .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--neon-cyan);
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
} */

/* .wheel {
    width: 4px;
    height: 10px;
    background: var(--neon-cyan);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
} */

/* @keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
} */

@keyframes bounce {

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

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

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

/* ===================================
   SEÇÕES
   =================================== */
.section-futuristic {
    background: #F4F8FE;
    position: relative;
}

.section-dark {
    background: #EEF5FC;
}

.section-header {
    margin-bottom: 3rem;
}

.neon-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #1565C0, #FFB300);
    box-shadow: 0 0 10px var(--neon-cyan);
    margin-top: 1rem;
}

/* ===================================
   NEWS CARDS
   =================================== */
.news-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(21, 101, 192, 0.3),
        0 0 40px rgba(255, 179, 0, 0.2);
    border-color: var(--neon-cyan);
}

.news-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image {
    transform: scale(1.1);
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.8), rgba(255, 179, 0, 0.8));
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card:hover .news-overlay {
    opacity: 1;
}

.badge-neon {
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
}

/* ===================================
   CATEGORY CARDS
   =================================== */
.category-card {
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem !important;
    border: 1px solid var(--glass-border);
}

.category-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(21, 101, 192, 0.4);
    border-color: var(--neon-cyan);
}

.category-card:hover .category-icon i {
    transform: scale(1.2) rotate(5deg);
}

.category-card h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.text-cyan {
    color: var(--neon-cyan);
}

.text-magenta {
    color: var(--neon-magenta);
}

.text-yellow {
    color: var(--neon-yellow);
}

.text-green {
    color: var(--neon-green);
}

.text-purple {
    color: var(--neon-purple);
}

.text-orange {
    color: var(--neon-orange);
}

.text-gray {
    color: #4A6080;
}

/* ===================================
   PARTNER & EVENT CARDS
   =================================== */
.partner-card,
.event-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    min-height: 450px;
    border-radius: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.partner-card:hover,
.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 179, 0, 0.3);
    border-color: var(--neon-magenta);
}

.event-card .event-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
}

.event-card .event-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image {
    transform: scale(1.05);
}

.event-card .event-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.5rem;
    text-align: center;
}

.event-card .event-content h5 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.event-card .event-content p {
    flex: 1;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.event-card .event-content .btn {
    margin-top: auto;
}

/* ===================================
   NEWSLETTER
   =================================== */
.newsletter-card {
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.1), rgba(255, 179, 0, 0.1));
    border: 2px solid var(--glass-border);
}

.glass-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: #fff;
    backdrop-filter: blur(10px);
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(21, 101, 192, 0.3);
    color: #fff;
}

/* ===================================
   SOCIAL LINKS
   =================================== */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 2px solid var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(21, 101, 192, 0.3);
}

.social-icon:hover {
    background: linear-gradient(135deg, #1565C0, #1976D2);
    color: #fff;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 0 30px rgba(21, 101, 192, 0.6);
}

.social-lg {
    width: 60px;
    height: 60px;
    font-size: 2rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer-futuristic {
    background: var(--darker-bg);
    border-top: 1px solid var(--glass-border);
}

.hover-neon:hover {
    color: var(--neon-cyan) !important;
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* ===================================
   BACK TO TOP
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(21, 101, 192, 0.6);
}

/* ===================================
   RESPONSIVO MOBILE
   =================================== */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 100px;
    }

    .logo-animated {
        max-width: 150px;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .hero-image-container {
        display: none;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .brand-futuristic {
        font-size: 1.4rem;
    }

    .display-3 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.5rem;
    }

    .display-6 {
        font-size: 1.3rem;
    }

    .btn-neon,
    .btn-outline-neon {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .news-card,
    .partner-card,
    .event-card {
        margin-bottom: 1rem;
    }

    .newsletter-card {
        padding: 2rem 1rem !important;
    }

    .input-group-lg .form-control,
    .input-group-lg .btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .display-3 {
        font-size: 1.8rem;
    }

    .display-5 {
        font-size: 1.3rem;
    }

    .logo-animated {
        max-width: 100px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .social-lg {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* ===================================
   ANIMAÇÕES AOS (Animate On Scroll)
   =================================== */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--neon-cyan);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Blog & Q&A Styles */
.nav-pills .nav-link {
    border-radius: 50px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active {
    background: linear-gradient(135deg, #1565C0, #1976D2);
    color: #fff !important;
    box-shadow: 0 0 20px rgba(21, 101, 192, 0.5);
}

.glass-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(21, 101, 192, 0.4);
    color: #fff;
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Centralizar imagens dos eventos */
.event-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.event-image {
    max-width: 200px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.event-content {
    text-align: center;
    width: 100%;
}

/* ===================================
QUEM SOMOS & CONTATO
=================================== */
.team-card {
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(21, 101, 192, 0.3);
    transform: translateY(-5px);
}

.avatar-neon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(21, 101, 192, 0.4);
}

.contact-card {
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
}

.contact-card:hover {
    border-color: var(--neon-cyan);
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(21, 101, 192, 0.3);
}

.contact-info .btn {
    transition: all 0.3s ease;
}

/* Responsivo */
@media (max-width: 768px) {
    .avatar-neon {
        width: 100px;
        height: 100px;
    }

    .display-1 {
        font-size: 3rem !important;
    }
}

/* Navbar - Link Ativo */
.nav-link.active {
    color: var(--neon-cyan) !important;
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
}

.nav-link.active::after {
    width: 100%;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(21, 101, 192, 0.6);
}

/* ===================================
   PATROCINADORES
   =================================== */
.sponsor-card {
    transition: transform .3s, border-color .3s, box-shadow .3s;
    cursor: pointer;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(21, 101, 192, .2);
}

.sponsor-card.sponsor-gold:hover {
    box-shadow: 0 10px 30px rgba(255, 215, 0, .25);
}

.sponsor-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logo-sm {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-img {
    max-height: 80px;
    max-width: 180px;
    object-fit: contain;
}

.sponsor-img-sm {
    max-height: 55px;
    max-width: 120px;
    object-fit: contain;
}

.sponsor-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.sponsor-avatar.gold {
    background: rgba(255, 215, 0, .15);
    border: 2px solid rgba(255, 215, 0, .4);
    color: #ffd700;
}

.sponsor-avatar.cyan {
    background: rgba(21, 101, 192, .12);
    border: 1px solid rgba(21, 101, 192, .3);
    color: #4BA3E8;
    font-size: 1.3rem;
    width: 48px;
    height: 48px;
}

.sponsor-badge {
    border-radius: 20px;
    padding: 2px 12px;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: inline-block;
}

.sponsor-badge.gold {
    background: rgba(255, 215, 0, .15);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, .3);
}

.sponsor-badge.cyan {
    background: rgba(21, 101, 192, .1);
    color: #4BA3E8;
    border: 1px solid rgba(21, 101, 192, .25);
}

/* ===================================
   BARRA TICKER PATROCINADORES
   =================================== */
.sponsors-ticker-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1031;
    background: #1565C0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(21, 101, 192, 0.2);
    border-top: 1px solid rgba(21, 101, 192, 0.1);
    display: flex;
    align-items: center;
    height: 48px;
    max-height: 48px;
    /* ← ADICIONADO: JS lê este valor */
    overflow: hidden;
}

.sponsors-ticker-label {
    flex-shrink: 0;
    padding: 0 16px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: #4BA3E8;
    border-right: 1px solid rgba(21, 101, 192, 0.2);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(21, 101, 192, 0.06);
    white-space: nowrap;
}

.sponsors-ticker-label i {
    color: #ffd700;
    font-size: .75rem;
}

.sponsors-ticker-track {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

.sponsors-ticker {
    display: flex;
    align-items: center;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
}

.sponsors-ticker:hover {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

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

.sponsor-tick-item {
    display: inline-flex;
    align-items: center;
    padding: 0 24px;
    height: 48px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: background .2s;
    flex-shrink: 0;
    overflow: hidden;
}

.sponsor-tick-item:hover {
    background: rgba(21, 101, 192, 0.08);
}

.sponsor-tick-item img {
    max-height: 30px;
    max-width: 110px;
    object-fit: contain;
    width: auto;
    display: block;
}

.sponsor-tick-fallback {
    color: rgba(255, 255, 255, 0.65);
    font-size: .88rem;
    font-weight: 700;
    white-space: nowrap;
}

.sponsor-tick-item:hover .sponsor-tick-fallback {
    color: #4BA3E8;
}

/* ===================================
   BARRA TICKER NOTICIAS
   =================================== */
.news-ticker-wrap {
    position: fixed;
    top: 48px;
    /* JS sobrescreve via style inline */
    left: 0;
    right: 0;
    z-index: 1030;
    background: rgba(10, 14, 39, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 179, 0, 0.15);
    display: flex;
    align-items: center;
    height: 40px;
    max-height: 40px;
    /* ← ADICIONADO: JS lê este valor */
    overflow: hidden;
}

.news-ticker-label {
    flex-shrink: 0;
    padding: 0 14px;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: #F8C200;
    border-right: 1px solid rgba(255, 179, 0, 0.2);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 179, 0, 0.06);
    white-space: nowrap;
}

.news-ticker-track {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
}

.news-ticker {
    display: flex;
    align-items: center;
    animation: tickerScroll 40s linear infinite;
    white-space: nowrap;
}

.news-ticker:hover {
    animation-play-state: paused;
}

.news-tick-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 28px;
    height: 40px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: .88rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    transition: color .2s, background .2s;
    flex-shrink: 0;
    overflow: hidden;
}

.news-tick-item:hover {
    color: #fff;
    background: rgba(255, 179, 0, 0.06);
}

.news-tick-cat {
    display: inline-block;
    background: rgba(255, 179, 0, 0.15);
    color: #F8C200;
    border: 1px solid rgba(255, 179, 0, 0.3);
    border-radius: 20px;
    padding: 1px 8px;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Hero padding */
.hero-section {
    padding-top: 162px !important;
}

/* ===================================
   TICKERS RESPONSIVO
   =================================== */
@media (max-width: 991px) {
    .sponsors-ticker-wrap {
        height: 48px !important;
        max-height: 48px !important;
        overflow: hidden !important;
    }

    .news-ticker-wrap {
        height: 40px !important;
        max-height: 40px !important;
        overflow: hidden !important;
    }

    .sponsor-tick-item {
        height: 48px !important;
        max-height: 48px !important;
        overflow: hidden !important;
    }

    .news-tick-item {
        height: 40px !important;
        max-height: 40px !important;
        overflow: hidden !important;
    }

    .hero-section {
        padding-top: 152px;
    }
}

@media (max-width: 768px) {
    .sponsors-ticker-wrap {
        height: 56px !important;
        max-height: 56px !important;
        overflow: hidden !important;
    }

    .news-ticker-wrap {
        height: 44px !important;
        max-height: 44px !important;
        overflow: hidden !important;
    }

    .sponsor-tick-item {
        height: 56px !important;
        max-height: 56px !important;
        overflow: hidden !important;
        padding: 0 14px !important;
    }

    .sponsor-tick-item img {
        max-height: 32px !important;
        max-width: 90px !important;
        width: auto !important;
        display: block !important;
        flex-shrink: 0 !important;
    }

    .sponsor-tick-fallback {
        font-size: 1rem !important;
    }

    .news-tick-item {
        height: 44px !important;
        max-height: 44px !important;
        overflow: hidden !important;
        font-size: .95rem !important;
        font-weight: 600 !important;
        padding: 0 14px !important;
    }

    .news-tick-cat {
        display: inline-block !important;
    }

    .sponsors-ticker-label,
    .news-ticker-label {
        min-width: 78px !important;
        max-width: 78px !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        padding: 0 6px !important;
        font-size: .65rem !important;
        line-height: 1.2 !important;
        white-space: normal !important;
    }

    .sponsors-ticker-label i,
    .news-ticker-label i {
        display: block !important;
        font-size: .95rem !important;
    }

    .hero-section {
        padding-top: 164px;
    }
}

@media (max-width: 480px) {
    .sponsors-ticker-wrap {
        height: 52px !important;
        max-height: 52px !important;
        overflow: hidden !important;
    }

    .news-ticker-wrap {
        height: 42px !important;
        max-height: 42px !important;
        overflow: hidden !important;
    }

    .sponsor-tick-item {
        height: 52px !important;
        max-height: 52px !important;
        overflow: hidden !important;
        padding: 0 12px !important;
    }

    .sponsor-tick-item img {
        max-height: 28px !important;
        max-width: 80px !important;
        width: auto !important;
        display: block !important;
    }

    .news-tick-item {
        height: 42px !important;
        max-height: 42px !important;
        overflow: hidden !important;
        font-size: .88rem !important;
        padding: 0 12px !important;
    }

    .sponsors-ticker-label,
    .news-ticker-label {
        min-width: 68px !important;
        max-width: 68px !important;
    }

    .hero-section {
        padding-top: 158px;
    }
}

/* ===================================
   PATROCINADORES - CARDS HOVER
   =================================== */
.sponsor-card {
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease !important;
}

.sponsor-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 50px rgba(21, 101, 192, 0.2) !important;
}

.sponsor-card.sponsor-gold:hover {
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.25) !important;
    border-color: rgba(255, 215, 0, 0.5) !important;
}

.sponsor-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logo-sm {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-img {
    max-height: 80px;
    max-width: 180px;
    object-fit: contain;
}

.sponsor-img-sm {
    max-height: 55px;
    max-width: 120px;
    object-fit: contain;
}

.sponsor-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.sponsor-avatar.gold {
    background: rgba(255, 215, 0, .15);
    border: 2px solid rgba(255, 215, 0, .4);
    color: #ffd700;
}

.sponsor-avatar.cyan {
    background: rgba(21, 101, 192, .12);
    border: 1px solid rgba(21, 101, 192, .3);
    color: #4BA3E8;
    font-size: 1.3rem;
    width: 48px;
    height: 48px;
}

.sponsor-badge {
    border-radius: 20px;
    padding: 2px 12px;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: inline-block;
}

.sponsor-badge.gold {
    background: rgba(255, 215, 0, .15);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, .3);
}

.sponsor-badge.cyan {
    background: rgba(21, 101, 192, .1);
    color: #4BA3E8;
    border: 1px solid rgba(21, 101, 192, .25);
}

/* ===================================
   FILTRO DE CATEGORIAS — BLOG
   =================================== */
.cat-filter-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    padding: 4px 0;
}

.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
    white-space: nowrap;
}

.cat-pill:hover {
    background: rgba(21, 101, 192, 0.12);
    border-color: rgba(21, 101, 192, 0.4);
    color: #4BA3E8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.2);
}

.cat-pill.active {
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.2), rgba(255, 179, 0, 0.15));
    border-color: var(--neon-cyan);
    color: #fff;
    box-shadow: 0 0 15px rgba(21, 101, 192, 0.3);
}

.cat-count {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1px 7px;
    font-size: .72rem;
    font-weight: 700;
}

.cat-pill.active .cat-count {
    background: rgba(21, 101, 192, 0.25);
    color: #4BA3E8;
}

@media (max-width: 576px) {
    .cat-pill {
        font-size: .78rem;
        padding: 5px 12px;
    }
}

/* ===================================
   HERO — CARD TV PETZOO (lado direito)
   =================================== */
.tv-card-hero {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    padding: 0;
    margin-top: -1.5rem;
    /* sobe para alinhar com o topo da logo */
}

.tv-card-inner {
    background: linear-gradient(135deg, #1a3a6b 0%, #0e2147 60%, #1a1060 100%);
    border: 1px solid rgba(255, 165, 0, 0.25);
    border-radius: 20px;
    padding: 2rem 2rem 1.6rem;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.tv-card-inner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.tv-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #ffa500;
    margin-bottom: .75rem;
    line-height: 1.3;
}

.tv-card-title span {
    color: #ffcc44;
}

.tv-card-title i {
    font-size: 1.2rem;
    margin-right: 6px;
    opacity: .85;
}

.tv-card-desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
}

.tv-card-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.1rem;
    border: 1px solid rgba(255, 165, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.tv-card-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.tv-card-inner:hover .tv-card-img {
    transform: scale(1.03);
}

.tv-card-overlay-badge {
    position: absolute;
    bottom: 10px;
    left: 12px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    color: #ffcc44;
    font-size: .78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 200, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.tv-card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tv-card-tags span {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    font-size: .75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Rajdhani', sans-serif;
}

/* ===================================
   EVENTOS — COLLAPSE TOGGLE
   =================================== */
.btn-eventos-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 100%;
}

.btn-eventos-toggle:focus {
    outline: none;
    box-shadow: none;
}

.btn-eventos-toggle:hover h2 {
    opacity: .85;
}

.eventos-chevron {
    font-size: 1.8rem;
    vertical-align: middle;
    transition: transform .35s ease;
    color: var(--neon-cyan);
}

/* ===================================
   CARROSSEL YOUTUBE — TV CARD
   =================================== */
.yt-carousel {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: .75rem;
    border: 1px solid rgba(255, 165, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.yt-slide {
    display: none;
}

.yt-slide.active {
    display: block;
    animation: ytFadeIn .5s ease;
}

@keyframes ytFadeIn {
    from {
        opacity: 0;
        transform: scale(1.02);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.yt-slide a {
    text-decoration: none;
    display: block;
    position: relative;
}

.yt-slide .tv-card-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.yt-slide:hover .tv-card-img {
    transform: scale(1.03);
}

.yt-slide-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    padding: 20px 10px 8px;
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.yt-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 6px 0 4px;
}

.yt-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    padding: 0;
    transition: all .25s ease;
}

.yt-dot.active {
    background: #ffa500;
    transform: scale(1.3);
    box-shadow: 0 0 6px rgba(255, 165, 0, 0.6);
}

/* Título do vídeo FORA da imagem — entre imagem e bolinhas */
.yt-slide-title-ext {
    display: none;
    /* só aparece no slide ativo */
    color: rgba(255, 255, 255, 0.9);
    font-size: .82rem;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.35;
    padding: 6px 4px 2px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.yt-slide.active .yt-slide-title-ext {
    display: block;
}

/* Reduz espaço carrossel mobile no hero */
@media (max-width: 991px) {
    #ytMobileWrap {
        margin-bottom: 8px !important;
    }

    #ytMobileWrap .yt-dots {
        margin: 4px 0 2px;
    }

    #ytMobileWrap .yt-slide-title-ext {
        padding: 4px 4px 0;
        font-size: .78rem;
    }

    .yt-carousel-mobile .tv-card-img {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .yt-carousel-mobile .tv-card-img {
        height: 140px;
    }
}

/* ===================================
   PADRÃO CLARO — AJUSTES GLOBAIS
   =================================== */

/* Textos que eram brancos → agora escuros */
.text-white {
    color: #0D1B2E !important;
}

.card-body h4,
.card-body h5,
.card-body h3 {
    color: #0D1B2E;
}

.glass-card h3,
.glass-card h4,
.glass-card h5 {
    color: #0D1B2E;
}

.glass-card p {
    color: #4A6080;
}

.glass-card strong {
    color: #0D1B2E;
}

/* Navbar links → azul escuro */
.nav-link {
    color: #4A6080 !important;
}

.nav-link:hover {
    color: #1565C0 !important;
}

.nav-link.active {
    color: #1565C0 !important;
}

/* Tickers — texto branco (fundo azul) */
.sponsors-ticker-wrap .sponsor-tick-item,
.sponsors-ticker-label,
.news-ticker-wrap,
.news-ticker-label,
.news-tick-item {
    color: #fff !important;
}

/* Hero texto */
.hero-section h1,
.hero-section .display-3,
.hero-section .display-4 {
    color: #0D1B2E;
}

.hero-section .lead {
    color: #1a1a1a; 
    font-family: poppins, sans-serif;
}

/* Cards de notícias */
.news-card .card-body h4 {
    color: #0D1B2E;
}

.news-card .text-gray {
    color: #4A6080;
}

/* Glass input */
.glass-input {
    background: #fff !important;
    border-color: rgba(21, 101, 192, 0.25) !important;
    color: #0D1B2E !important;
}

.glass-input::placeholder {
    color: #8CA3BF !important;
}

/* Footer */
.footer-futuristic {
    background: #0D47A1 !important;
}

.footer-futuristic .text-gray {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Badge neon → azul */
.badge-neon {
    background: #1565C0 !important;
    color: #fff !important;
}

/* Scroll indicator → azul */
.scroll-indicator .mouse {
    border-color: #1565C0;
}

.scroll-indicator .wheel {
    background: #1565C0;
}

/* Partículas — mais suaves no claro */
#particles-js canvas {
    opacity: 0.15 !important;
}
/* ===================================
   NAVBAR TOGGLER — TEMA CLARO
   =================================== */
.navbar-toggler {
    border: 2px solid #1565C0 !important;
    border-radius: 8px !important;
    padding: 6px 10px !important;
    background: rgba(21,101,192,0.08) !important;
    box-shadow: none !important;
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(21,101,192,0.2) !important;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231565C0' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ===================================
   BOTÕES SOCIAIS NAVBAR — Instagram e YouTube
   =================================== */
.navbar .btn-outline-neon {
    padding: 0.4rem 0.75rem !important;
    border-radius: 8px !important;
    font-size: 1.1rem !important;
    line-height: 1 !important;
    border-width: 2px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    box-shadow: none !important;
    transition: all .25s ease !important;
}
/* Instagram — rosa */
.navbar a[href*="instagram"].btn-outline-neon {
    border-color: #E1306C !important;
    color: #E1306C !important;
    background: transparent !important;
}
.navbar a[href*="instagram"].btn-outline-neon:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
    border-color: transparent !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(220,39,67,0.4) !important;
}
/* YouTube — vermelho */
.navbar a[href*="youtube"].btn-outline-neon {
    border-color: #FF0000 !important;
    color: #FF0000 !important;
    background: transparent !important;
}
.navbar a[href*="youtube"].btn-outline-neon:hover {
    background: #FF0000 !important;
    border-color: transparent !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(255,0,0,0.4) !important;
}

/* Centralizar botões sociais no mobile */
@media (max-width: 991px) {
    .navbar .ms-lg-3 {
        justify-content: center !important;
        width: 100% !important;
        margin-top: .5rem !important;
        padding-bottom: .5rem !important;
    }
}
