/* Reset e Variáveis - RISE Brand Colors */
:root {
    /* Cores principais do logo RISE */
    --rise-gold: #D4AF37;
    --rise-gold-light: #F4E4BC;
    --rise-gold-dark: #B8941F;
    --rise-bronze: #8B6914;
    --rise-bronze-dark: #5C4510;
    --rise-dark: #1A1A1A;
    --rise-dark-light: #2D2D2D;
    
    /* Cores de apoio */
    --rise-white: #FFFFFF;
    --rise-light: #FAFAFA;
    --rise-gray: #6C757D;
    --rise-light-gray: #E9ECEF;
    --rise-gray-dark: #4A4A4A;
    
    /* Gradientes elegantes */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    --gradient-bronze: linear-gradient(135deg, #8B6914 0%, #5C4510 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    --gradient-hero: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 50%, #1A1A1A 100%);
    
    /* Sombras elegantes */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --shadow-gold-lg: 0 8px 40px rgba(212, 175, 55, 0.4);
    
    /* Espaçamento */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
    
    /* Bordas */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Bordas e raios */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Transições suaves */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--rise-dark);
    background: var(--rise-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navegação Elegante - Transparente e acompanha scroll */
.navbar-rise {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border: none;
    padding: 1rem 0;
    width: 100%;
    margin: 0;
    border-radius: 0;
}

/* Header com fundo em páginas sem hero */
.navbar-rise:not(.on-hero) {
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-rise.scrolled {
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Estilos padrão do header - sempre fixo */

/* Mobile: header fixo no topo */
@media (max-width: 768px) {
    .navbar-rise {
        padding: 1rem 0 !important;
    }
}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    background: transparent !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}


@media (min-width: 769px) {
    .nav-container {
        flex-wrap: nowrap;
    }
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: brightness(1.2) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* Logo sempre com boa visibilidade */
.navbar-rise .logo {
    filter: brightness(1.2) drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}

.logo:hover {
    transform: scale(1.05);
}

.brand-text {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

/* Texto sempre com gradiente dourado */
.navbar-rise .brand-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-subtitle {
    font-size: 0.875rem;
    color: var(--rise-gray);
    margin-left: 8px;
    transition: var(--transition);
}

/* Subtitle sempre escuro */
.navbar-rise .brand-subtitle {
    color: var(--rise-gray);
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .nav-menu {
        gap: 1rem;
    }
}

.nav-link {
    text-decoration: none;
    color: var(--rise-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

/* Links - sempre brancos no header escuro */
.navbar-rise .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600;
}

.navbar-rise .nav-link:hover {
    color: var(--rise-gold) !important;
}

.navbar-rise .nav-link.active {
    color: var(--rise-gold) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 3px;
    box-shadow: var(--shadow-gold);
}

.navbar-rise .nav-link.active::after {
    box-shadow: var(--shadow-gold);
}

.nav-auth {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Botões no header - sempre com estilo fixo */
.navbar-rise .btn-outline {
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.navbar-rise .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(212, 175, 55, 0.5) !important;
    color: white !important;
}

.navbar-rise .btn-primary {
    background: var(--gradient-gold) !important;
    color: var(--rise-dark) !important;
    box-shadow: var(--shadow-gold) !important;
}

.navbar-rise .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

/* Botões */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--rise-dark);
    font-weight: 700;
    border: none;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
    background: linear-gradient(135deg, #E5C158 0%, #C9A42A 100%);
}

.btn-outline {
    background: transparent;
    color: var(--rise-gold);
    border: 2px solid var(--rise-gold);
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--gradient-gold);
    color: var(--rise-dark);
    border-color: var(--rise-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline-hero {
    background: transparent;
    color: white;
    border: none;
    font-weight: 600;
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-outline-hero:hover {
    background: transparent;
    color: var(--rise-gold);
    transform: translateY(-2px);
    box-shadow: none;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Event Banner - Moderno e Chamativo */
.event-banner {
    position: relative;
    display: inline-block;
    background: var(--gradient-gold);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-gold-lg);
    overflow: hidden;
    transition: var(--transition);
}

.event-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(212, 175, 55, 0.5);
}

.event-banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.event-banner-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--rise-dark);
    flex-shrink: 0;
}

.event-banner-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.event-banner-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(26, 26, 26, 0.7);
    opacity: 0.9;
}

.event-banner-date {
    font-size: 1rem;
    font-weight: 700;
    color: var(--rise-dark);
    line-height: 1.2;
}

.event-banner-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    color: var(--rise-dark);
    font-size: 0.875rem;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.event-banner-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-banner-time::before {
    content: '🕐';
    font-size: 1rem;
}

.event-banner-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 70%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-banner:hover .event-banner-shine {
    opacity: 1;
}


/* Responsividade do Banner */
@media (max-width: 768px) {
    .event-banner {
        padding: 0.875rem 1.25rem;
        width: 100%;
        max-width: 100%;
    }
    
    .event-banner-content {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .event-banner-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .event-banner-date {
        font-size: 0.9rem;
    }
    
    .event-banner-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   HERO SECTION - ESTILO POLLITUS
   ========================================================================== */
.hero {
    position: relative;
    padding: calc(var(--space-lg) + 80px) 0 var(--space-4xl);
    overflow: hidden;
    background: linear-gradient(135deg, var(--rise-dark) 0%, #25282c 50%, #ffbb3fcf 100%);
    min-height: 90vh;
    display: block;
    width: 100%;
    clear: both;
}

.hero-background {
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    opacity: 0.5;
    background-image: url('../assets/images/reuniao-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(66, 53, 10, 0.7);
    z-index: 1;
}

.gradient-animation {
    position: absolute;
    top: -30%;
    left: -20%;
    width: 140%;
    height: 160%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 167, 53, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 20%, rgba(45, 55, 72, 0.4) 0%, transparent 50%);
    opacity: 0.8;
    filter: blur(120px);
    animation: gradientShift 20s ease-in-out infinite;
    border-radius: 50%;
    z-index: 2;
}

@keyframes gradientShift {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(5%, 5%) scale(1.1);
    }
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 40%, transparent 70%);
    opacity: 0.6;
    z-index: 3;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto var(--space-3xl);
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    color: white;
}

.hero-title .highlight-text {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--rise-gold);
    opacity: 0.3;
}

.title-line {
    display: block;
}

.highlight {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.highlight-text {
    position: relative;
    z-index: 1;
}

.highlight-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 60%;
    background: linear-gradient(135deg, var(--rise-dark) 0%, var(--rise-gold) 100%);
    border-radius: 0.5rem;
    opacity: 0.15;
    z-index: 0;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-top: 4rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: block;
}

/* Botões estilo Pollitus */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--rise-gold) 0%, var(--rise-bronze) 100%);
    color: var(--rise-dark);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--rise-gold);
    transform: translateY(-2px);
}

.btn-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-hero-primary:hover .btn-hover-effect {
    left: 100%;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    }
}

/* CTAs Integrados nas Seções */
.section-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--rise-dark) 0%, #2D2D2D 100%);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.cta-content-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.cta-content-inline .cta-text h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content-inline .cta-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 500px;
}

.cta-content-inline .cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-shrink: 0;
}

/* Variação para cada seção */
.benefits-section .section-cta {
    background: linear-gradient(135deg, #25282c 0%, var(--rise-dark) 100%);
}

.testimonials-section .section-cta {
    background: linear-gradient(135deg, var(--gradient-bronze) 0%, var(--rise-dark) 100%);
}

.testimonials-section .section-cta::before {
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .section-cta {
        margin-top: 3rem;
        padding: 2rem;
    }
    
    .cta-content-inline {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .cta-content-inline .cta-text h3 {
        font-size: 1.75rem;
    }
    
    .cta-content-inline .cta-text p {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .cta-content-inline .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .cta-content-inline .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

.hero-greeting {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 1.5rem 0 2rem;
    position: relative;
    letter-spacing: -0.02em;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-title .highlight {
    color: var(--rise-gold);
    display: inline;
}

.highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.highlight-secondary {
    color: var(--rise-gold);
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-subtitle i {
    color: var(--rise-gold);
    font-size: 1.1rem;
}

.hero-subtitle .divider {
    margin: 0 0.5rem;
    opacity: 0.6;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 550px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.hero-actions .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-actions .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-actions .btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-actions .btn span,
.hero-actions .btn i {
    position: relative;
    z-index: 1;
}

.hero-actions .btn-primary {
    background: var(--gradient-gold);
    color: var(--rise-dark);
    font-weight: 700;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    border: none;
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
    transition: left 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
    position: relative;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Hero Visual Container - Design Moderno */
.hero-image {
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRightImage 1s ease-out 0.4s forwards;
    background-image: url('../assets/images/reuniao-banner.jpg');
    background-size: cover;
    background-position: center;
}

.hero-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Imagem/Ilustração Central - Estilo Tablet/Dashboard */
.hero-person {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 380px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9) rotate(-5deg);
    animation: fadeInScalePerson 1s ease-out 1s forwards;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

.hero-person-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.hero-person-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.hero-image-wrapper {
    position: relative;
    background: rgb(22, 18, 53);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.2);
    width: 100%;
    max-width: 100%;
}

.network-image-container {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.12);
    border-radius: var(--radius-md);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding: 2rem;
}

.dashboard-preview {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: white;
    font-family: 'Inter', sans-serif;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-title {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.dashboard-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 175, 55, 0.2);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    color: var(--rise-gold);
}

.dashboard-badge i {
    font-size: 10px;
}

.dashboard-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.stat-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--rise-gold);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-change {
    font-size: 10px;
    font-weight: 600;
}

.stat-change.positive {
    color: #00C896;
}

.dashboard-chart {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-title {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
    margin-bottom: 8px;
    position: relative;
}

.bar {
    flex: 1;
    background: linear-gradient(180deg, #00C896 0%, #00A896 100%);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    position: relative;
}

.bar::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(212, 175, 55, 0.6);
}

.chart-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    margin-top: 5px;
}

.dashboard-metrics {
    display: flex;
    gap: 10px;
    font-size: 10px;
}

.metric {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.metric i {
    color: var(--rise-gold);
    font-size: 12px;
}

/* SVG de pessoa profissional */
.hero-person-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-person-placeholder i {
    font-size: 10rem;
    opacity: 0.3;
    color: var(--rise-gold);
    z-index: 1;
}

/* Formas Abstratas Decorativas - Mais sutis para fundo escuro */
.abstract-shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    top: 5%;
    right: -5%;
    border-radius: 50% 40% 60% 30% / 30% 60% 40% 70%;
    opacity: 0;
    animation: fadeInScale 1.2s ease-out 0.6s forwards;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 105, 20, 0.12) 0%, transparent 70%);
    bottom: 10%;
    left: -8%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0;
    animation: fadeInScale 1.2s ease-out 0.8s forwards;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    top: 45%;
    left: 15%;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0;
    animation: fadeInScale 1.2s ease-out 1s forwards;
}

/* Network Visualization - Oculto */
.network-visualization {
    display: none;
}

.node {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.node:hover {
    transform: scale(1.15);
    z-index: 10;
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.main-node {
    background: var(--gradient-gold);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    font-size: 2.25rem;
    color: var(--rise-dark);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.5);
    z-index: 3;
}

.main-node:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 12px 50px rgba(212, 175, 55, 0.7);
}

.node-1 {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    top: 15%;
    left: 15%;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.node-2 {
    background: linear-gradient(135deg, #00A896 0%, #02C39A 100%);
    top: 15%;
    right: 15%;
    box-shadow: 0 8px 24px rgba(0, 168, 150, 0.4);
}

.node-3 {
    background: linear-gradient(135deg, #8A2BE2 0%, #9370DB 100%);
    bottom: 15%;
    left: 25%;
    box-shadow: 0 8px 24px rgba(138, 43, 226, 0.4);
}

/* Cards Flutuantes com Estatísticas - Estilo Moderno para fundo escuro */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 4;
    transition: all 0.3s ease;
    min-width: 180px;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.floating-card.card-2 {
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

.floating-card.card-3 {
    animation: fadeInUp 0.8s ease-out 1.4s forwards;
}

.floating-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--rise-dark);
    flex-shrink: 0;
}

.floating-card-content {
    display: flex;
    flex-direction: column;
}

.floating-card-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--rise-dark);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.floating-card-label {
    font-size: 0.8rem;
    color: var(--rise-gray);
    font-weight: 500;
}

.card-1 {
    top: 8%;
    left: -5%;
}

.card-2 {
    top: 12%;
    right: -10%;
}

.card-3 {
    bottom: 15%;
    right: -3%;
}

/* Pontos Decorativos - Mais visíveis no fundo escuro */
.decorative-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.dot:nth-child(1) {
    top: 25%;
    left: 8%;
}

.dot:nth-child(2) {
    top: 55%;
    right: 12%;
}

.dot:nth-child(3) {
    bottom: 35%;
    left: 18%;
}

.dot:nth-child(4) {
    top: 45%;
    right: 22%;
}

.dot:nth-child(5) {
    bottom: 20%;
    right: 8%;
}

/* Seções */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--rise-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
}

.section-title i {
    color: var(--rise-gold);
    font-size: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--rise-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Cards de Eventos - Estilo SMART */
.events-grid-smart {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.events-grid-smart.single-event {
    grid-template-columns: minmax(280px, 420px);
    justify-content: center;
}

.events-grid-smart.two-events {
    grid-template-columns: repeat(2, minmax(280px, 420px));
    justify-content: center;
}

@media (max-width: 1200px) {
    .events-grid-smart {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .events-grid-smart {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .events-grid-smart {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .events-grid-smart.single-event {
        grid-template-columns: 1fr;
    }
}

/* Card Estilo SMART */
.event-card-smart {
    background: white;
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card-smart:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.event-card-smart.featured {
    border: 2px solid var(--rise-gold);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
}

.event-badge-smart {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--rise-gold);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.event-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}

.event-icon {
    width: 64px;
    height: 64px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--rise-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.event-title-smart {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rise-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.event-description-smart {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.event-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.event-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #666666;
}

.event-features li i {
    color: var(--rise-gold);
    font-size: 0.875rem;
    width: 18px;
    text-align: center;
}

.event-explore-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
    margin-top: auto;
}

.event-explore-link:hover {
    color: var(--rise-gold);
    transform: translateX(5px);
}

/* Modal de Detalhes do Evento */
.event-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.event-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.event-modal-content {
    background-color: white;
    margin: auto;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.event-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: var(--rise-gray);
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 10;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.05);
}

.event-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--rise-dark);
    transform: rotate(90deg);
}

#eventModalBody {
    padding: 2.5rem;
}

.event-modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--rise-dark);
    margin-bottom: 1.5rem;
    padding-right: 3rem;
}

.event-modal-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-modal-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.event-modal-detail-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--rise-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-modal-detail-value {
    font-size: 1rem;
    color: var(--rise-dark);
    line-height: 1.6;
}

.event-modal-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
    margin-top: 0.5rem;
}

.event-modal-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards de Eventos - Estilos antigos (mantidos para compatibilidade) */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.event-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--rise-light-gray);
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.event-card:hover::before {
    transform: scaleX(1);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--rise-gold);
}

.event-card.featured {
    border: 2px solid var(--rise-gold);
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.event-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    pointer-events: none;
}

.event-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.event-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-primary {
    background: var(--gradient-gold);
    color: var(--rise-dark);
    font-weight: 700;
    box-shadow: var(--shadow-gold);
}

.badge-secondary {
    background: var(--gradient-bronze);
    color: white;
    font-weight: 700;
}

.event-date {
    background: var(--rise-light);
    padding: 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--rise-light-gray);
}

.date-day {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.date-month {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--rise-dark);
}

.date-year {
    font-size: 0.875rem;
    color: var(--rise-gray);
    margin-top: 0.25rem;
}

.event-content {
    padding: 1.5rem;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--rise-dark);
}

.event-description {
    color: var(--rise-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--rise-gray);
    font-size: 0.9rem;
}

.event-actions {
    display: flex;
    gap: 1rem;
}

.event-participants {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--rise-light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.participant-avatars {
    display: flex;
}

.avatar-placeholder {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--rise-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    border: 2px solid white;
    margin-left: -8px;
}

.avatar-placeholder:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--rise-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rise-gray);
    margin-left: -8px;
    border: 2px solid white;
}

.participant-count {
    font-size: 0.875rem;
    color: var(--rise-gray);
}

/* Seção de Networking com Decorações */
.network-section {
    position: relative;
    overflow: hidden;
}

.network-illustration-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 3rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.network-visualization-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Imagem de Networking */
.network-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: var(--radius-md);
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.network-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.2));
}

@media (max-width: 768px) {
    .hero-image-wrapper {
        padding: 1.5rem;
    }
    
    .network-image-container {
        min-height: 300px;
        padding: 1rem;
    }
    
    .network-image {
        max-width: 100%;
    }
}

/* Elementos decorativos - Ícones */
.network-decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rise-gold);
    font-size: 1.5rem;
    z-index: 1;
    animation: floatDecoration 6s ease-in-out infinite;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.decoration-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.decoration-2 {
    top: 15%;
    right: 8%;
    animation-delay: 1.5s;
}

.decoration-3 {
    bottom: 20%;
    left: 8%;
    animation-delay: 3s;
}

.decoration-4 {
    bottom: 15%;
    right: 5%;
    animation-delay: 4.5s;
}

@keyframes floatDecoration {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 1;
    }
}

.network-decoration:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
    border-color: rgba(212, 175, 55, 0.4);
}

/* Formas decorativas abstratas */
.network-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

.shape-circle-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--rise-gold) 0%, transparent 70%);
    border-radius: 50%;
    top: 5%;
    left: 2%;
    animation: pulseShape 8s ease-in-out infinite;
}

.shape-circle-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--rise-gold) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 10%;
    right: 3%;
    animation: pulseShape 10s ease-in-out infinite;
    animation-delay: 2s;
}

.shape-circle-3 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    right: 10%;
    animation: pulseShape 12s ease-in-out infinite;
    animation-delay: 4s;
}

.shape-organic-1 {
    width: 180px;
    height: 180px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
    top: 20%;
    right: 5%;
    animation: rotateShape 15s linear infinite;
}

.shape-organic-2 {
    width: 160px;
    height: 160px;
    background: radial-gradient(ellipse, rgba(139, 105, 20, 0.15) 0%, transparent 70%);
    border-radius: 60% 40% 70% 30% / 30% 70% 40% 60%;
    bottom: 15%;
    left: 3%;
    animation: rotateShape 18s linear infinite reverse;
}

@keyframes pulseShape {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

@keyframes rotateShape {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .network-illustration-wrapper {
        padding: 2rem 1rem;
    }
    
    .network-decoration {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .shape-circle-1,
    .shape-circle-2,
    .shape-circle-3,
    .shape-organic-1,
    .shape-organic-2 {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .network-visualization-container {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .network-visualization {
        max-height: 400px;
    }
}

/* Filtros de Networking - Mantidos para compatibilidade */
.network-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.filter-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 2px solid var(--rise-light-gray);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.filter-input:focus {
    outline: none;
    border-color: var(--rise-primary);
    box-shadow: 0 0 0 3px rgba(42, 75, 140, 0.1);
}

.filter-group .fa-search {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--rise-gray);
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--rise-light-gray);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    background: white;
    min-width: 200px;
    cursor: pointer;
}

/* Grid de Networking */
.network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.member-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-gold);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.member-card:hover::before {
    transform: scaleY(1);
}

.member-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
    border-color: var(--rise-gold);
}

.member-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.member-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--rise-light);
}

.member-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--rise-dark);
    margin-bottom: 0.25rem;
}

.member-company {
    color: var(--rise-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.member-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.tag {
    background: var(--rise-light);
    color: var(--rise-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.member-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-icon {
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    border: none;
    background: var(--rise-light);
    color: var(--rise-dark);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover {
    background: var(--gradient-gold);
    color: var(--rise-dark);
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

/* Content Categories */
.content-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--rise-light-gray);
    background: white;
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--rise-gray);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.category-btn:hover::before {
    width: 300px;
    height: 300px;
}

.category-btn span,
.category-btn i {
    position: relative;
    z-index: 1;
}

.category-btn:hover {
    border-color: var(--rise-gold);
    color: var(--rise-gold);
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--gradient-gold);
    color: var(--rise-dark);
    border-color: var(--rise-gold);
    font-weight: 700;
    box-shadow: var(--shadow-gold);
    transform: scale(1.05);
}

.category-btn.active::before {
    background: rgba(255, 255, 255, 0.2);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* Footer Elegante */
.footer {
    background: var(--gradient-dark);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
    transition: var(--transition);
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.6));
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-newsletter {
    grid-column: span 1;
}

.newsletter-form {
    display: flex;
    margin: 1rem 0;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    font-family: 'Inter', sans-serif;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient-gold) !important;
    color: var(--rise-dark);
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-gold);
}

/* Versão usada em cards de perfil: botão com texto + ícone */
.profile-card .social-links {
    flex-wrap: wrap;
}

.profile-card .social-links a {
    width: auto !important;
    height: auto !important;
    padding: 0.2rem 0.2rem;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--rise-dark) !important;
    justify-content: flex-start;
    box-shadow: none !important;
    text-decoration: none;
}

.profile-card .social-links a i {
    margin-right: 0.35rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: white;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--rise-dark);
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
}

/* Toggle branco no hero */
/* Toggle - mais escuro quando transparente (exceto sobre hero escuro) */
.navbar-rise:not(.scrolled):not(.on-hero) .mobile-toggle {
    color: rgba(26, 26, 26, 0.9);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(26, 26, 26, 0.2);
}

.navbar-rise.scrolled .mobile-toggle {
    color: white;
    background: transparent;
    border: none;
}

.mobile-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.navbar-rise.on-hero .mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-close {
    display: none;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 80px 1.5rem 1.5rem;
        gap: 0.5rem;
        z-index: 10000;
        opacity: 0;
        transform: translateY(-10%);
        transition: opacity 0.25s ease, transform 0.25s ease;
        height: 100vh;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu .nav-link {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--rise-light-gray);
    }
    
    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    .navbar-rise .nav-menu .nav-link {
        color: var(--rise-dark) !important;
    }
    
    .navbar-rise .nav-menu .nav-link:hover {
        color: var(--rise-gold) !important;
        background: rgba(212, 175, 55, 0.06);
    }
    
    .navbar-rise .nav-menu .nav-link.active {
        color: var(--rise-gold) !important;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.05;
        letter-spacing: -0.01em;
        margin-bottom: 1.25rem;
    }
    
    .hero-title .highlight {
        font-size: 2.2rem;
        display: inline;
    }
    
    .hero-image {
        height: 400px;
        margin-top: 2rem;
    }
    
    .hero-visual-container {
        max-width: 100%;
    }
    
    .network-visualization {
        width: 280px;
        height: 280px;
    }
    
    .floating-card {
        padding: 1rem 1.25rem;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 0.5rem;
        display: inline-block;
    }
    
    .abstract-shape {
        display: none;
    }
    
    .nav-auth {
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 20px;
        background: transparent;
        flex-direction: column;
        padding: 0 1.5rem;
        gap: 1rem;
        z-index: 1003;
    }
    
    .nav-auth.active {
        display: flex;
    }
    
    .nav-auth .btn {
        width: 100%;
        justify-content: center;
    }
    
    .navbar-rise .nav-auth .btn-outline {
        border-color: var(--rise-dark) !important;
        color: var(--rise-dark) !important;
        background: transparent !important;
    }
    
    .navbar-rise .nav-auth .btn-outline:hover {
        background: var(--rise-light) !important;
        border-color: var(--rise-gold) !important;
        color: var(--rise-gold) !important;
    }
    
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 9999;
        opacity: 0;
        transition: opacity 0.25s ease;
    }
    
    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
    
    .mobile-close {
        display: none;
        position: fixed;
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
        border: none;
        border-radius: 12px;
        background: var(--rise-dark);
        color: white;
        z-index: 10001;
    }
    
    .navbar-rise.mobile-open .mobile-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .navbar-rise.mobile-open .mobile-toggle {
        display: none;
    }
    
    body.mobile-nav-open .whatsapp-float,
    body.mobile-nav-open #scrollToTopBtn {
        pointer-events: none;
        z-index: 0;
        opacity: 0.3;
    }
    
    
    .mobile-toggle {
        display: block;
    }
    
    .navbar-rise {
        padding: 1rem 0;
    }
    
    .navbar-rise.scrolled {
        padding: 0.75rem 0;
    }
    
    /* Menu mobile com fundo de vidro quando scrollar */
    .navbar-rise.scrolled .nav-menu.active {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    .navbar-rise.scrolled .nav-auth.active {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
}

@media (max-width: 420px) {
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.05;
        letter-spacing: -0.01em;
    }
    .hero-title .highlight {
        font-size: 2rem;
    }
}
    .section-title {
        font-size: 2rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .network-filters {
        flex-direction: column;
    }
    
    .filter-group {
        min-width: 100%;
    }
    
    .filter-select {
        min-width: 100%;
    }


/* Efeitos Hover Elegantes */
.step-card:hover,
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

/* Design Limpo - Sem Animações de Entrada */

/* Efeitos de Brilho no Gold */
.btn-primary,
.step-icon,
.testimonial-avatar {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

/* Melhorias nos Cards de Eventos */
.event-card {
    position: relative;
    overflow: hidden;
}

.event-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transition: left 0.5s;
}

.event-card:hover::after {
    left: 100%;
}

/* Efeitos de Glass Morphism */
.testimonial-card {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Melhorias Tipográficas */
.section-title {
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

@media (max-width: 576px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .steps-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Animações de Entrada Leves */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRightImage {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInScalePerson {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Header: botão Meu Perfil em modo mobile apenas com ícone */
@media (max-width: 768px) {
    .user-profile-btn .btn-label {
        display: none;
    }
    .user-profile-btn {
        padding: 0.35rem 0.5rem;
        min-width: auto;
    }
}

/* Botão Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--rise-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-gold);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold-lg);
    background: linear-gradient(135deg, #E5C04A 0%, #C9A52A 100%);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

.scroll-to-top i {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-2px);
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}

