html {
    scroll-behavior: smooth;
}

:root {
    --bg-color: #0d0d0d;
    --red: #e60000;
    --white: #ffffff;
    --gray-text: #a0a0a0;

    /* Tema claro */
    --theme-bg: #0d0d0d;
    --theme-text: #ffffff;
    --theme-subtext: #a0a0a0;
    --theme-nav-bg: rgba(15, 15, 15, 0.55);
    --theme-nav-bg-scrolled: rgba(10, 10, 10, 0.88);
    --theme-nav-border: rgba(255, 255, 255, 0.08);
    --theme-nav-border-scrolled: rgba(255, 255, 255, 0.15);
    --theme-nav-link: #e0e0e0;
    --theme-nav-link-hover: #ffffff;
    --theme-marquee-bg: rgba(0, 0, 0, 0.5);
    --theme-marquee-text: #666;
    --theme-exp-border: rgba(255,255,255,0.06);
    --theme-exp-border-hover: rgba(230,0,0,0.35);
    --theme-exp-role: #ffffff;
    --theme-exp-company: #e60000;
    --theme-exp-date: #777;
    --theme-video-opacity: 0.8;
    --theme-transition: 0.4s ease;
}

/* === TEMA CLARO === */
body.light-theme {
    --theme-bg: #f0f0f0;
    --theme-text: #0d0d0d;
    --theme-subtext: #555555;
    --theme-nav-bg: rgba(255, 255, 255, 0.65);
    --theme-nav-bg-scrolled: rgba(245, 245, 245, 0.92);
    --theme-nav-border: rgba(0, 0, 0, 0.1);
    --theme-nav-border-scrolled: rgba(0, 0, 0, 0.18);
    --theme-nav-link: #333333;
    --theme-nav-link-hover: #0d0d0d;
    --theme-marquee-bg: rgba(220, 220, 220, 0.7);
    --theme-marquee-text: #999;
    --theme-exp-border: rgba(0,0,0,0.08);
    --theme-exp-border-hover: rgba(230,0,0,0.3);
    --theme-exp-role: #0d0d0d;
    --theme-exp-company: #cc0000;
    --theme-exp-date: #888;
    --theme-video-opacity: 0.12;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--theme-bg);
    color: var(--theme-text);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    transition: background-color 0.8s ease, color var(--theme-transition);
}

body.dark-bg {
    background-color: #000000 !important;
    color: #ffffff !important;
}

body.dark-bg::after {
    opacity: 0 !important;
}

body.dark-bg .bg-video {
    opacity: 0 !important;
}

body.dark-bg .section-title,
body.dark-bg .exp-role,
body.dark-bg .section-subtitle,
body.dark-bg .exp-company,
body.dark-bg .exp-date {
    color: #ffffff !important;
}

body.dark-bg .badge-label {
    color: var(--red) !important;
}

body.dark-bg .experience-item {
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

/* Fundo branco sólido no tema claro (sobrepõe o vídeo) */
body.light-theme::after {
    content: '';
    position: fixed;
    inset: 0;
    background: #f0f0f0;
    z-index: -1;
    pointer-events: none;
}

/* VÍDEO DE FUNDO */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    opacity: var(--theme-video-opacity);
    transition: opacity var(--theme-transition);
}

/* NAVBAR - MENU FIXO */
.navbar {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--theme-nav-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--theme-nav-border);
    padding: 7px 50px;
    border-radius: 50px;
    z-index: 1000;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1), background var(--theme-transition), border-color var(--theme-transition);
}

.navbar.scrolled {
    max-width: 750px;
    background: var(--theme-nav-bg-scrolled);
    border-color: var(--theme-nav-border-scrolled);
    padding: 7px 40px;
}

.nav-logo {
    height: 26px;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--theme-nav-link);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s, color var(--theme-transition);
}

.nav-links a:hover {
    color: var(--theme-nav-link-hover);
}

.nav-icon {
    color: var(--theme-nav-link);
    display: flex;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: color var(--theme-transition), transform 0.4s ease;
}

.nav-icon:hover {
    color: var(--red);
    transform: scale(1.15);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 100px 5%;
    flex-grow: 1;
}

/* LADO ESQUERDO: IMAGEM E BADGE */
.hero-image-wrapper {
    position: relative;
    width: 400px;
    max-width: 100%;
}

/* ============================================
   CARROSSEL 3D DE FOTOS
   ============================================ */
.photo-carousel {
    position: relative;
    width: 100%;
    perspective: 900px;
}

.photo-slide {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: rotateY(-90deg) scale(0.85);
    transform-style: preserve-3d;
    transition:
        opacity       0.7s cubic-bezier(0.4, 0, 0.2, 1),
        transform     0.7s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.photo-slide.active {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
    position: relative;   /* ocupa espaço no fluxo */
    pointer-events: auto;
}

.photo-slide.exit {
    opacity: 0;
    transform: rotateY(90deg) scale(0.85);
    position: absolute;
}

.image-mask {
    width: 100%;
    background-color: transparent;
    border-radius: 0 0 250px 250px;
    overflow: hidden;
    display: flex;
}

.main-photo {
    width: 100%;
    height: auto;
    display: block;
}

.badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 160px;
    height: 160px;
    animation: rotateBadge 15s linear infinite;
}

@keyframes rotateBadge {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* LADO DIREITO: TEXTO */
.hero-text-wrapper {
    max-width: 800px;
}

.hero-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.5rem); /* Reduzido o tamanho */
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px; /* Ajuste leve no espaçamento acompanhando a redução */
    margin-bottom: 30px;
    white-space: nowrap; /* Impede completamente que as palavras quebrem sozinhas */
}

.red-text {
    color: #e60000; /* Vermelho vibrante do print */
}



.hero-desc {
    font-size: 0.8rem;
    color: var(--theme-subtext);
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 680px;
    text-align: justify;
    text-indent: 1.5rem;
    transition: color var(--theme-transition);
}

.hero-desc strong {
    color: var(--red);
    font-weight: 600;
}

/* Botão agora usa o wrapper BorderGlow — apenas ajustes internos */
.hero-btn {
    display: inline-block;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    color: var(--theme-text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    background: transparent;
    white-space: nowrap;
    transition: color var(--theme-transition);
}

/* ============================================
   BORDER GLOW — Contorno vazado (mask-composite)
   ============================================ */
.border-glow-card {
    --edge-proximity: 0;
    --cursor-angle: 45deg;
    --edge-sensitivity: 20;
    --border-radius: 50px;
    --glow-padding: 20px;

    display: inline-grid;
    position: relative;
    border-radius: var(--border-radius);
    isolation: isolate;
    transform: translate3d(0, 0, 0.01px);
    background: transparent;
    border: 1px solid var(--theme-nav-border);
    overflow: visible;
    cursor: pointer;
    transition: border-color var(--theme-transition);
}

/* Borda colorida — donut via mask-composite */
.border-glow-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1.5px;                    /* espessura da borda colorida */

    background: conic-gradient(
        from var(--cursor-angle) at center,
        #ff0000, #ff4444, #cc0000, #ff2222, #ff0000
    );

    /* Máscara "donut": remove o interior, deixa só a borda */
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}

.border-glow-card:hover::before {
    opacity: 1;
    transition: opacity 0.25s ease-out;
}

/* Glow externo — brilha ao redor do contorno */
.border-glow-card > .edge-light {
    content: '';
    position: absolute;
    inset: calc(var(--glow-padding) * -1);
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    mix-blend-mode: plus-lighter;
}

.border-glow-card:hover > .edge-light {
    opacity: calc((var(--edge-proximity) - var(--edge-sensitivity)) / (100 - var(--edge-sensitivity)));
    transition: opacity 0.25s ease-out;
}

.border-glow-card > .edge-light::before {
    content: '';
    position: absolute;
    inset: var(--glow-padding);
    border-radius: inherit;
    box-shadow:
        0 0 6px  2px hsl(0deg 100% 50% / 60%),
        0 0 15px 4px hsl(0deg 100% 45% / 40%),
        0 0 35px 8px hsl(0deg 100% 40% / 25%);
}

.border-glow-inner {
    display: flex;
    position: relative;
    overflow: auto;
    z-index: 1;
    border-radius: inherit;
}

/* MARQUEE INFERIOR */
.marquee-bottom {
    border-top: 1px solid var(--theme-exp-border);
    padding: 30px 0;
    overflow: hidden;
    white-space: nowrap;
    background-color: #000000 !important;
    position: relative;
    z-index: 10;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scrollMarquee 30s linear infinite;
    width: max-content;
}

.marquee-track img {
    height: 35px;
    width: auto;
    object-fit: contain;
    opacity: 0.6;
    filter: grayscale(100%) brightness(1.2);
    transition: all 0.4s ease;
    cursor: pointer;
}

body.light-theme .marquee-track img {
    filter: grayscale(100%) contrast(0.8);
}

.marquee-track img:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* SEÇÃO EXPERIÊNCIA / CATEGORIAS */
.experience-section {
    padding: 100px 5%;
    background-color: #000000 !important;
    position: relative;
    z-index: 10;
}

.categories-container {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.categories-header {
    flex: 1;
    margin-bottom: 0;
    position: sticky;
    top: 150px;
}

.categories-list {
    flex: 2;
    border-top: none;
}

.categories-list .experience-item:first-child {
    border-top: 1px solid var(--theme-exp-border);
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 968px) {
    .categories-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .categories-header {
        position: static;
        flex: none;
        width: 100%;
    }

    .categories-header .section-subtitle {
        margin: 12px auto 0 auto;
    }

    .categories-list {
        flex: none;
        width: 100%;
    }

    .experience-item {
        flex-direction: column;
        text-align: center;
        padding: 40px 0;
    }

    .exp-content {
        flex-direction: column;
        gap: 10px;
    }

    .exp-role {
        min-width: 0;
    }
}

.section-header {
    margin-bottom: 50px;
}

.badge-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--theme-text);
    transition: color var(--theme-transition);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--theme-subtext);
    max-width: 500px;
    margin-top: 12px;
    line-height: 1.6;
    transition: color var(--theme-transition);
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--theme-exp-border);
    transition: border-color var(--theme-transition);
}

.experience-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--theme-exp-border);
    transition: border-color var(--theme-transition), background-color 0.3s;
}

.experience-item:hover {
    border-bottom-color: var(--theme-exp-border-hover);
}

.exp-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.exp-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exp-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

.exp-role {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--theme-exp-role);
    transition: color var(--theme-transition);
    min-width: 250px;
}

.exp-company {
    font-size: 1rem;
    font-weight: 500;
    color: var(--theme-exp-company);
    transition: color var(--theme-transition);
}

.exp-date {
    font-size: 0.9rem;
    color: var(--theme-exp-date);
    margin-left: auto;
    transition: color var(--theme-transition);
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }
    
    .image-mask {
        border-radius: 20px; /* Mais simples no mobile */
    }

    .badge {
        bottom: -20px;
        right: -20px;
        width: 120px;
        height: 120px;
    }

    .hero-desc {
        margin: 0 auto 40px auto;
    }
}

/* ============================================
   ANIMATED LIST (NOTIFICATION STYLE)
   ============================================ */
.animated-list-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 0;
    z-index: 10;
}

.animated-list-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.notification-card {
    --edge-proximity: 0;
    --cursor-angle: 45deg;
    --edge-sensitivity: 25;
    --color-sensitivity: 45;
    --border-radius: 24px;
    --glow-padding: 30px;
    --cone-spread: 15; /* Mais focado no contorno */
    
    /* Cores do Gradiente da Borda (Tons de Vermelho) */
    --gradient-one: radial-gradient(at 80% 55%, #ff0000 0px, transparent 50%);
    --gradient-two: radial-gradient(at 69% 34%, #ff4444 0px, transparent 50%);
    --gradient-three: radial-gradient(at 8% 6%, #cc0000 0px, transparent 50%);
    --gradient-four: radial-gradient(at 41% 38%, #ff3333 0px, transparent 50%);
    --gradient-five: radial-gradient(at 86% 85%, #ff0000 0px, transparent 50%);

    display: flex;
    width: 100%;
    max-width: 380px;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    background: #0a0a0a; /* Fundo sólido e escuro para destacar a borda */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    position: relative;
    isolation: isolate;
    cursor: pointer;
    overflow: visible;

    /* Preparação para 3D */
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: background 0.4s ease, border-color 0.4s ease;
}

/* Brilho sofisticado na linha do contorno */
.notification-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1.8px;
    background: 
        radial-gradient(circle at var(--mouse-x) var(--mouse-y), #fff 0%, #ff0000 20%, transparent 60%),
        var(--gradient-one), var(--gradient-two), var(--gradient-three), 
        var(--gradient-four), var(--gradient-five);
    
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    mask-image: radial-gradient(
        180px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        black 0%,
        transparent 80%
    );

    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 2;
    transform: translateZ(10px); /* Traz o brilho para frente */
}

/* Reflexo interno sutil para sofisticação */
.notification-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        250px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 0, 0, 0.08) 0%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
    transform: translateZ(5px);
}

.notification-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.notification-card:hover::before,
.notification-card:hover::after {
    opacity: 1;
}

/* Brilho externo removido a pedido do usuário - efeito apenas no contorno */
.notification-card > .edge-light {
    display: none;
}

.notif-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.notif-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notif-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateZ(30px); /* Traz o texto para frente no 3D */
}

.notif-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notif-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.notif-time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.notif-msg {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

@media (max-width: 768px) {
    .notification-card {
        max-width: 90%;
    }
}


    height: 100%;
    width: fit-content;
    will-change: transform;
}

.flowing-marquee__part {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* ============================================
   SOCIAL MEDIA SECTION
   ============================================ */
.social-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    min-width: 220px;
}

.social-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #ff3333;
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.1);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.social-info {
    display: flex;
    flex-direction: column;
}

.social-name {
    font-size: 1rem;
    font-weight: 700;
}

.social-handle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 1rem;
}

.contact-item i {
    color: #ff3333;
    font-size: 1.2rem;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 12px;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #ff3333;
    background: rgba(255, 255, 255, 0.08);
}

.submit-btn {
    background: #ff3333;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #cc0000;
    transform: scale(1.02);
}

/* ============================================
   RESPONSIVE CLEAN LAYOUT ADJUSTMENTS
   ============================================ */

/* Global Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section Responsiveness */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
        padding-top: 150px;
    }
    
    .hero-text-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        white-space: normal;
        font-size: 2.8rem;
    }
    
    .hero-desc {
        text-align: center;
        text-indent: 0;
    }
}

/* Categories Grid Responsiveness */
.animated-list-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    width: 100%;
}

@media (max-width: 768px) {
    .animated-list-inner {
        grid-template-columns: 1fr;
    }
    
    .notification-card {
        max-width: 100%;
    }
}

/* Social Section */
.social-links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Contact Section Grid */
@media (max-width: 992px) {
    .contact-section .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* ============================================
   BOUNCE CARDS COMPONENT
   ============================================ */
.bounceCardsContainer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 400px;
}

.bounce-card {
    position: absolute;
    width: 240px;
    height: auto;
    border: 4px solid #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        inset 0 0 15px rgba(255, 255, 255, 0.1),
        0 0 20px rgba(255, 51, 51, 0.3), 
        0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1;
    background: #000;
    cursor: pointer;
}

.bounce-card:hover {
    border-color: #fff;
    box-shadow: 
        inset 0 0 20px rgba(255, 255, 255, 0.2),
        0 0 35px rgba(255, 51, 51, 0.6), 
        0 15px 50px rgba(0, 0, 0, 0.6);
    z-index: 100 !important;
}

.bounce-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

@media (max-width: 768px) {
    .bounceCardsContainer {
        width: 100%;
        height: 300px;
        scale: 0.8;
    }
    .bounce-card {
        width: 160px;
    }
}

/* Typography Clean-up */
h2.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.badge-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

@media (max-width: 768px) {
    .premium-form {
        padding: 25px;
    }
}


/* ============================================
   LIGHTBOX MODAL
   ============================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.8);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(255, 51, 51, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: #ff3333;
}

/* CATEGORIAS ANIMADAS FIX */
.animated-list-container {
    padding: 20px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.animated-list-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.notification-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.notification-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.02);
    border-color: rgba(255, 51, 51, 0.4);
}
.notif-name {
    font-weight: 800;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.notif-msg {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* ============================================
   MOBILE RESPONSIVE FIXES
   ============================================ */
@media (max-width: 768px) {
    .navbar {
        padding: 8px 15px !important;
        width: 95% !important;
        top: 15px !important;
    }
    .nav-links {
        gap: 12px !important;
    }
    .nav-links a {
        font-size: 0.75rem !important;
    }
    .nav-logo {
        height: 18px !important;
    }
    .hero-container {
        flex-direction: column !important;
        padding-top: 120px !important;
        gap: 40px !important;
        text-align: center !important;
    }
    .hero-image-wrapper {
        width: 100% !important;
        max-width: 300px !important;
    }
    .hero-title {
        font-size: 2rem !important;
    }
    .hero-desc {
        font-size: 0.9rem !important;
    }
    .badge {
        width: 80px !important;
        height: 80px !important;
    }
    .marquee-track img {
        height: 25px !important;
    }
    .categories-container {
        flex-direction: column !important;
        gap: 30px !important;
    }
    .notification-card {
        padding: 15px !important;
    }
    .notif-name {
        font-size: 1.1rem !important;
    }
}

/* GRID DE CATEGORIAS PREMIUM */
.animated-list-container {
    padding: 80px 20px !important;
    max-width: 1300px !important;
    margin: 0 auto !important;
}
.animated-list-inner {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 30px !important;
    justify-content: center !important;
}
.notification-card {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 40px 30px !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
}
.notification-card:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    transform: translateY(-10px) scale(1.03) !important;
    border-color: rgba(255, 51, 51, 0.5) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(255, 51, 51, 0.1) !important;
}
.notif-name {
    font-size: 1.5rem !important;
    color: #ff3333 !important;
    margin-bottom: 15px !important;
    line-height: 1.2 !important;
}
.notif-msg {
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

@media (max-width: 768px) {
    .animated-list-inner {
        grid-template-columns: 1fr !important;
    }
    .notification-card {
        padding: 30px 20px !important;
    }
}
