/* CACHE-BUSTING: Sempre use versionamento na URL do arquivo para evitar cache antigo. Exemplo: style.css?v=3 */
/* Optimized Critical CSS - Performance First */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    /* Performance optimizations */
    will-change: auto;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Removido o log visual do CSS no rodapé */

img {
    max-width: 100%;
    height: auto;
    /* Optimize image rendering */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    /* Prevent layout shift */
    aspect-ratio: attr(width / height);
    /* Force hardware acceleration */
    transform: translateZ(0);
}

/* Prevent layout shift for images */
.gallery-image,
.speaker-image {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
    height: auto;
}

.logo-image {
    aspect-ratio: 1/1;
    object-fit: contain;
    width: 256px;
    height: 256px;
}

/* Performance optimizations */
* {
    /* Optimize for animations */
    will-change: auto;
}

/* Only apply will-change to elements that need it */
.hero-title,
.cta-button,
.floating-element,
.particle,
.feature-card,
.speaker-card {
    will-change: transform, opacity;
}

/* Optimize animations for performance */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Reduce animation complexity for better performance */
@keyframes gradient-x {
    0%, 100% {
        background-position: left center;
    }
    50% {
        background-position: right center;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Container Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-large {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Optimized Keyframes and Animations */
@keyframes gradient-x {
    0%, 100% {
        background-size: 200% 200%;
        background-position: left center;
    }
    50% {
        background-size: 200% 200%;
        background-position: right center;
    }
}

/* Performance optimizations */
* {
    /* Optimize for animations */
    will-change: auto;
}

/* Only apply will-change to elements that need it */
.hero-title,
.cta-button,
.floating-element,
.particle,
.feature-card,
.speaker-card {
    will-change: transform, opacity;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes drawLine {
    from {
        stroke-dashoffset: 100;
    }
    to {
        stroke-dashoffset: 0;
    }
}

/* Utility Classes */
.animate-gradient-x {
    animation: gradient-x 15s ease infinite;
}

.animate-gradient {
    animation: gradient 15s ease infinite;
    background-size: 400% 400%;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse-slow {
    animation: pulse 3s ease-in-out infinite;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    width: 100vw;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
    background: none;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(139, 69, 19, 0.2), #000, rgba(30, 64, 175, 0.2));
    animation: gradient 15s ease infinite;
    background-size: 400% 400%;
}

/* Particles */
.particles-container {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #5D1AA0;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.particle[data-index="0"] { left: 7%; top: 11%; animation-delay: 0s; }
.particle[data-index="1"] { left: 14%; top: 22%; animation-delay: 0.2s; }
.particle[data-index="2"] { left: 21%; top: 33%; animation-delay: 0.4s; }
.particle[data-index="3"] { left: 28%; top: 44%; animation-delay: 0.6s; }
.particle[data-index="4"] { left: 35%; top: 55%; animation-delay: 0.8s; }
.particle[data-index="5"] { left: 42%; top: 66%; animation-delay: 1s; }
.particle[data-index="6"] { left: 49%; top: 77%; animation-delay: 1.2s; }
.particle[data-index="7"] { left: 56%; top: 88%; animation-delay: 1.4s; }
.particle[data-index="8"] { left: 63%; top: 99%; animation-delay: 1.6s; }
.particle[data-index="9"] { left: 70%; top: 10%; animation-delay: 1.8s; }
.particle[data-index="10"] { left: 77%; top: 20%; animation-delay: 2s; }
.particle[data-index="11"] { left: 84%; top: 30%; animation-delay: 2.2s; }
.particle[data-index="12"] { left: 91%; top: 40%; animation-delay: 2.4s; }
.particle[data-index="13"] { left: 98%; top: 50%; animation-delay: 2.6s; }
.particle[data-index="14"] { left: 5%; top: 60%; animation-delay: 2.8s; }

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
}

.floating-element {
    position: absolute;
    color: #5D1AA0;
    opacity: 0.3;
    font-size: 40px;
    animation: float 4s ease-in-out infinite;
}

.floating-element[data-x="10"][data-y="20"] { left: 10%; top: 20%; animation-delay: 0s; }
.floating-element[data-x="80"][data-y="30"] { left: 80%; top: 30%; animation-delay: 1s; }
.floating-element[data-x="20"][data-y="70"] { left: 20%; top: 70%; animation-delay: 2s; }
.floating-element[data-x="70"][data-y="60"] { left: 70%; top: 60%; animation-delay: 1.5s; }
.floating-element[data-x="40"][data-y="40"] { left: 40%; top: 40%; animation-delay: 0.5s; }

/* Connection Lines */
.connection-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-line {
    stroke: #5D1AA0;
    stroke-width: 1;
    stroke-dasharray: 5,5;
    opacity: 0.2;
    animation: pulse 3s ease-in-out infinite;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    margin-top: -80px;
}

.hero-logo {
    margin-bottom: 12px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.logo-image {
    height: 256px;
    width: auto;
    margin: 0 auto;
    /* Optimize image loading */
    loading: lazy;
    decoding: async;
}

.hero-text {
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #5D1AA0, #A855F7, #3B82F6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-x 15s ease infinite;
    background-size: 200% 200%;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #D1D5DB;
    max-width: 512px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
    animation: fadeInUp 0.8s ease 0.6s both;
}

.cta-button {
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, #5D1AA0, #9333EA);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.cta-text {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(4px);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #9333EA, #5D1AA0);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-overlay {
    transform: translateX(0);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 0.8s ease 1s both;
}

.scroll-wheel {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    animation: float 1.5s ease-in-out infinite;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    margin-top: 8px;
    animation: float 1.5s ease-in-out infinite;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease both;
}

.title-wrapper {
    position: relative;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #5D1AA0, #A855F7, #60A5FA);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: scaleIn 0.8s ease 0.2s both;
}

.title-decoration {
    height: 4px;
    background: linear-gradient(to right, transparent, #5D1AA0, transparent);
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.5s both;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #9CA3AF;
    margin-top: 1rem;
    max-width: 512px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease 0.4s both;
}

/* Features Section */
.features-section {
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.features-background {
    position: absolute;
    inset: 0;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(147, 51, 234, 0.05), transparent, rgba(93, 26, 160, 0.05));
}

.blur-effect {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(48px);
}

.blur-right {
    top: 0;
    right: 25%;
    background: rgba(147, 51, 234, 0.1);
}

.blur-left {
    bottom: 0;
    left: 25%;
    background: rgba(93, 26, 160, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: linear-gradient(to bottom right, #1F2937, #111827);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(55, 65, 81, 0.5);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease both;
}

.feature-card[data-index="0"] { animation-delay: 0s; }
.feature-card[data-index="1"] { animation-delay: 0.1s; }
.feature-card[data-index="2"] { animation-delay: 0.2s; }

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(93, 26, 160, 0.2);
}

.feature-icon {
    margin-bottom: 1.5rem;
    color: #5D1AA0;
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: #9CA3AF;
}

/* About Section */
.about-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    background: #1a0f2e;
}

.about-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.background-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    background-attachment: fixed;
}

.background-overlay {
    position: absolute;
    inset: 0;
}

.overlay-1 {
    background: linear-gradient(to right, rgba(26, 15, 46, 0.95), rgba(26, 15, 46, 0.2), rgba(26, 15, 46, 0.95));
}

.overlay-2 {
    background: linear-gradient(to right, rgba(26, 15, 46, 0.8), rgba(26, 15, 46, 0.1), rgba(26, 15, 46, 0.8));
}

.overlay-3 {
    background: linear-gradient(to right, rgba(26, 15, 46, 0.9), rgba(26, 15, 46, 0.0), rgba(26, 15, 46, 0.9));
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}

.about-text {
    animation: fadeInLeft 0.8s ease both;
}

.about-description {
    color: #E5E7EB;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(31, 41, 55, 0.7);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(168, 85, 247, 0.3);
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #A855F7;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #D1D5DB;
    font-size: 0.875rem;
}

.about-info {
    animation: fadeInRight 0.8s ease both;
}

.info-card {
    background: rgba(31, 41, 55, 0.7);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(168, 85, 247, 0.3);
    margin: 0 auto;
    max-width: 600px;
}

.info-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #A855F7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    display: flex;
    align-items: center;
    color: #E5E7EB;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.bullet {
    width: 8px;
    height: 8px;
    background: #A855F7;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.premium-card {
    background: linear-gradient(135deg, #A855F7, #7C3AED);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(168, 85, 247, 0.5);
}

.premium-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.premium-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Venue Section */
.venue-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, #111827, #000);
}

.venue-name-wrapper {
    margin-bottom: 2rem;
}

.venue-name-container {
    position: relative;
    display: inline-block;
    animation: scaleIn 0.8s ease 0.2s both;
}

.venue-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(93, 26, 160, 0.2), rgba(147, 51, 234, 0.2));
    filter: blur(48px);
    transform: scale(1.1);
}

.venue-card {
    position: relative;
    background: linear-gradient(to right, rgba(31, 41, 55, 0.9), rgba(0, 0, 0, 0.9));
    backdrop-filter: blur(4px);
    border: 1px solid rgba(93, 26, 160, 0.3);
    border-radius: 1rem;
    padding: 2rem;
}

.venue-name {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(to right, #5D1AA0, #D8B4FE, #60A5FA);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.05em;
}

.venue-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
    gap: 0.5rem;
}

.separator-line {
    width: 32px;
    height: 1px;
    background: linear-gradient(to right, transparent, #5D1AA0, transparent);
}

.venue-subtitle {
    font-size: 0.75rem;
    font-weight: 300;
    color: #9CA3AF;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

/* Venue Gallery */
.venue-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.main-image {
    grid-column: span 1;
}

.image-container {
    position: relative;
    height: 320px;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-container:hover {
    transform: scale(1.02);
}

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

.image-container:hover .gallery-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.image-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
}

.caption-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.caption-text {
    color: #E5E7EB;
}

.secondary-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.secondary-images .image-container {
    height: 144px;
}

.additional-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.gallery-item {
    position: relative;
    height: 256px;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease both;
}

.gallery-item[data-index="0"] { animation-delay: 0s; }
.gallery-item[data-index="1"] { animation-delay: 0.1s; }
.gallery-item[data-index="2"] { animation-delay: 0.2s; }

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.gallery-item .image-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.gallery-item .image-caption {
    transform: translateY(8px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .image-caption {
    transform: translateY(0);
}

/* Speakers Section */
.speakers-section {
    padding: 1rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.speakers-background {
    position: absolute;
    inset: 0;
}

.speakers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.speaker-card {
    position: relative;
    animation: fadeInUp 0.6s ease both;
}

.speaker-card[data-index="0"] { animation-delay: 0s; }
.speaker-card[data-index="1"] { animation-delay: 0.2s; }
.speaker-card[data-index="2"] { animation-delay: 0.4s; }

.speaker-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(to right, #5D1AA0, #9333EA, #3B82F6);
    border-radius: 1.5rem;
    filter: blur(4px);
    opacity: 0.25;
    transition: opacity 0.5s ease;
}

.speaker-card:hover .speaker-glow {
    opacity: 0.4;
}

.speaker-content {
    position: relative;
    background: linear-gradient(to bottom right, rgba(31, 41, 55, 0.95), rgba(0, 0, 0, 0.95));
    backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(55, 65, 81, 0.5);
    transition: all 0.5s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.speaker-card:hover .speaker-content {
    border-color: rgba(93, 26, 160, 0.3);
}

.speaker-image-container {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.speaker-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.5), transparent);
}

.speaker-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
}

.speaker-badge span {
    background: rgba(93, 26, 160, 0.9);
    backdrop-filter: blur(4px);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(93, 26, 160, 0.3);
}

.speaker-info {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 10;
}

.speaker-name {
    font-size: 1.875rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.speaker-card:hover .speaker-name {
    color: #E9D5FF;
}

.speaker-role {
    color: #5D1AA0;
    font-weight: 600;
    font-size: 1.125rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 0.25rem 0.5rem;
    display: inline-block;
}

.speaker-details {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1rem;
}

.speaker-description {
    color: #D1D5DB;
    font-size: 0.875rem;
    line-height: 1.75;
    flex: 1;
}

.speaker-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(55, 65, 81, 0.5);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    position: relative;
    padding: 0.5rem;
    background: rgba(31, 41, 55, 0.5);
    border-radius: 0.75rem;
    border: 1px solid rgba(75, 85, 99, 0.3);
    color: #9CA3AF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1) rotate(-5deg);
    border-color: rgba(93, 26, 160, 0.5);
    color: #5D1AA0;
}

.speaker-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #9CA3AF;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #5D1AA0;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Schedule Section */
.schedule-section {
    padding: 3rem 0 5rem;
    background: linear-gradient(to bottom right, #111827, #000);
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(31, 41, 55, 0.5);
    border-radius: 0.75rem;
    border: 1px solid rgba(55, 65, 81, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeInUp 0.5s ease both;
}

.schedule-item[data-index="0"] { animation-delay: 0s; }
.schedule-item[data-index="1"] { animation-delay: 0.1s; }
.schedule-item[data-index="2"] { animation-delay: 0.2s; }
.schedule-item[data-index="3"] { animation-delay: 0.3s; }
.schedule-item[data-index="4"] { animation-delay: 0.4s; }
.schedule-item[data-index="5"] { animation-delay: 0.5s; }

.schedule-time {
    flex-shrink: 0;
    width: 100%;
    text-align: center;
}

.schedule-time span {
    font-size: 1.25rem;
    font-weight: bold;
    color: #5D1AA0;
}

.schedule-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.schedule-description {
    color: #9CA3AF;
    font-size: 0.875rem;
}

.event-info {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(93, 26, 160, 0.1);
    border-radius: 0.75rem;
    border: 1px solid rgba(93, 26, 160, 0.2);
    animation: fadeInUp 0.5s ease 0.5s both;
}

.event-info-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.event-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.info-item i {
    color: #5D1AA0;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 5rem 1rem;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #5D1AA0, #9333EA);
    opacity: 0.9;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: url('public/grid.svg');
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.8s ease both;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-final-button {
    background: white;
    color: #5D1AA0;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-final-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    background: #F3F4F6;
}

/* Classes para elementos invisíveis inicialmente - SISTEMA SIMPLIFICADO */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Remover todas as animações específicas complexas */
.fade-up,
.fade-left,
.fade-right,
.fade-down,
.fade-scale,
.slide-up,
.slide-left,
.slide-right {
    /* Usar apenas o padrão base */
}

.fade-up.animate-in,
.fade-left.animate-in,
.fade-right.animate-in,
.fade-down.animate-in,
.fade-scale.animate-in,
.slide-up.animate-in,
.slide-left.animate-in,
.slide-right.animate-in {
    /* Usar apenas o padrão base */
}

/* Delays simplificados */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* Remover animações especiais complexas */
.animate-on-scroll.section-header,
.animate-on-scroll.feature-card,
.animate-on-scroll.speaker-card,
.animate-on-scroll.gallery-item,
.animate-on-scroll.image-container,
.animate-on-scroll.stat-card {
    /* Usar apenas o padrão base */
}

/* Hover states muito simples */
.animate-on-scroll.animate-in:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
}

.animate-on-scroll.animate-in.section-header:hover,
.animate-on-scroll.animate-in.cta-content:hover {
    transform: translateY(0);
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .about-description {
        text-align: left;
    }
    
    .info-title {
        text-align: left;
    }
    
    .venue-gallery {
        grid-template-columns: 2fr 1fr;
    }
    
    .secondary-images .image-container {
        height: 176px;
    }
    
    .additional-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .schedule-item {
        flex-direction: row;
        gap: 2rem;
    }
    
    .schedule-time {
        width: 96px;
        text-align: left;
    }
    
    .schedule-time span {
        font-size: 1.5rem;
    }
    
    .event-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 6rem;
    }
    
    .section-title {
        font-size: 3.75rem;
    }
    
    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .speaker-image-container {
        height: 384px;
    }
    
    .speaker-description {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 8rem;
    }
    
    .section-title {
        font-size: 5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .venue-gallery .main-image .image-container {
        height: 384px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, #0F172A, #000);
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(31, 41, 55, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease both;
}

.faq-item[data-index="0"] { animation-delay: 0s; }
.faq-item[data-index="1"] { animation-delay: 0.1s; }
.faq-item[data-index="2"] { animation-delay: 0.2s; }
.faq-item[data-index="3"] { animation-delay: 0.3s; }
.faq-item[data-index="4"] { animation-delay: 0.4s; }
.faq-item[data-index="5"] { animation-delay: 0.5s; }

.faq-item:hover {
    border-color: rgba(93, 26, 160, 0.5);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: rgba(93, 26, 160, 0.7);
    box-shadow: 0 10px 30px rgba(93, 26, 160, 0.2);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(93, 26, 160, 0.1);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #E5E7EB;
    margin: 0;
    flex: 1;
    margin-right: 1rem;
}

.faq-icon {
    color: #5D1AA0;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem 2rem;
}

.faq-answer p {
    color: #D1D5DB;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Banner de Urgência */
.urgency-banner {
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    left: 0;
    top: 0;
    position: fixed;
    background: linear-gradient(90deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    padding: 0.7rem 0;
    z-index: 99999 !important;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 44px;
    box-shadow: 0 2px 12px rgba(220,38,38,0.08);
    overflow-x: hidden;
}
.urgency-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee-led 16s linear infinite;
    font-family: 'Roboto Mono', 'Courier New', Courier, monospace;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 99999 !important;
    letter-spacing: 1.5px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.18);
    gap: 3rem;
}
@keyframes marquee-led {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100vw); }
}
.urgency-text {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 99999 !important;
  letter-spacing: 1.5px;
  padding: 0 2rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.18);
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .urgency-banner {
    padding: 0.5rem 0;
    min-height: 36px;
  }
  .urgency-content {
    font-size: 0.98rem;
    gap: 1.5rem;
    animation-duration: 10s;
  }
  .urgency-text {
    font-size: 0.98rem;
    padding: 0 1rem;
  }
}

/* Hero Headline */
.hero-headline {
    font-size: 2.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #fff;
    max-width: 700px;
    margin-left: 0;
    margin-right: 0;
    line-height: 1.15;
    text-align: left;
}

/* Ajuste do título do evento */
.hero-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #5D1AA0, #A855F7, #3B82F6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Seção de Prova Social */
.social-proof-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, #1F2937, #111827);
    position: relative;
    overflow: hidden;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.proof-card {
    background: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(93, 26, 160, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease both;
}

.proof-card[data-index="0"] { animation-delay: 0s; }
.proof-card[data-index="1"] { animation-delay: 0.1s; }
.proof-card[data-index="2"] { animation-delay: 0.2s; }
.proof-card[data-index="3"] { animation-delay: 0.3s; }

.proof-card:hover {
    border-color: rgba(93, 26, 160, 0.7);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(93, 26, 160, 0.2);
}

.proof-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(to right, #5D1AA0, #A855F7);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.proof-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #E5E7EB;
    margin-bottom: 0.5rem;
}

.proof-description {
    color: #D1D5DB;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Seção WhatsApp */
.whatsapp-section {
    padding: 4rem 0;
    background: linear-gradient(45deg, #25D366, #128C7E);
    position: relative;
    overflow: hidden;
}

.whatsapp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.whatsapp-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.whatsapp-icon {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.whatsapp-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #25D366;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.whatsapp-button i {
    font-size: 1.5rem;
}

/* Responsive adjustments */
@media (min-width: 640px) {
    .hero-headline {
        font-size: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .hero-headline {
        font-size: 3.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .proof-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .whatsapp-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-headline {
        font-size: 4rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

/* Novo Layout da Primeira Dobra - Inspirado no Grupo 220V */
.event-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.main-headline {
    text-align: center;
    margin-bottom: 1.5rem;
}

.sub-headline {
    text-align: center;
    margin-bottom: 2rem;
}

.event-info-banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(93, 26, 160, 0.3);
    border-radius: 1rem;
}

.event-info-banner .info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #E5E7EB;
    font-weight: 500;
}

.event-info-banner .info-item i {
    color: #5D1AA0;
    font-size: 1.125rem;
}

.pricing-section {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(31, 41, 55, 0.9);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(93, 26, 160, 0.5);
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(93, 26, 160, 0.2);
}

.price-info {
    margin-bottom: 1.5rem;
}

.original-price {
    font-size: 1.125rem;
    color: #D1D5DB;
    margin-bottom: 0.5rem;
}

.strike {
    text-decoration: line-through;
    color: #9CA3AF;
}

.installment-price {
    font-size: 2rem;
    font-weight: bold;
    color: #E5E7EB;
    margin-bottom: 0.5rem;
}

.cash-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #E5E7EB;
    margin-bottom: 1rem;
}

.highlight {
    color: #A855F7;
    font-weight: bold;
}

.exclusivity-banner {
    text-align: left;
    padding: 1.5rem;
    background: linear-gradient(45deg, rgba(93, 26, 160, 0.2), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(93, 26, 160, 0.5);
    border-radius: 1rem;
    margin-top: 2rem;
    width: 100%;
}

.exclusivity-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #A855F7;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.exclusivity-text {
    color: #D1D5DB;
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
}

/* Ajustes responsivos para o novo layout */
@media (max-width: 768px) {
    .event-info-banner {
        flex-direction: column;
        gap: 1rem;
    }
    
    .event-info-banner .info-item {
        justify-content: center;
    }
    
    .installment-price {
        font-size: 1.5rem;
    }
    
    .cash-price {
        font-size: 1.25rem;
    }
    
    .exclusivity-title {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .event-info-banner {
        justify-content: space-around;
    }
    
    .pricing-section {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* HERO MAIN ROW - PRIMEIRA DOBRA EM DUAS COLUNAS - MELHOR UX */
.hero-main-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100vw;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
    min-height: 70vh;
    z-index: 2;
    padding-left: 2rem;
}

.hero-main-content {
    max-width: 750px;
    background: transparent;
    padding: 2.5rem 1rem 2.5rem 1rem;
    margin-top: 4.5rem;
    box-shadow: none;
    border-radius: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.5rem;
    text-align: left;
    z-index: 1;
}

.hero-headline {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    max-width: 900px;
    margin: 2rem 0 0.5rem 0;
    text-align: left;
    letter-spacing: -1px;
    word-break: break-word;
    overflow-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 700px) {
    .hero-headline {
        font-size: 2.5rem;
        max-width: 1100px;
    }
}

@media (min-width: 1024px) {
    .hero-headline {
        font-size: 2.8rem;
        max-width: 1300px;
    }
}

@media (max-width: 900px) {
    .hero-main-row {
        flex-direction: column;
        gap: 1.2rem;
        min-height: unset;
        width: 100vw;
        padding: 0 0.5rem;
        padding-left: 1rem;
    }
    .hero-main-logo {
        order: -1;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 0.5rem;
    }
    .hero-main-content {
        max-width: 98vw;
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
        margin-top: 2.5rem;
    }
    .hero-headline {
        max-width: 98vw;
        padding: 0 0.5rem;
    }
}

.hero-main-content .event-info-banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0.7rem;
    background: rgba(93, 26, 160, 0.15);
    border-radius: 1.5rem;
    padding: 1.5rem 2rem;
    margin: 0 0 0.5rem 0;
    width: fit-content;
    box-shadow: 0 8px 32px rgba(93, 26, 160, 0.15);
    border: 1px solid rgba(93, 26, 160, 0.2);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.hero-main-content .event-info-banner:hover {
    background: rgba(93, 26, 160, 0.2);
    box-shadow: 0 12px 40px rgba(93, 26, 160, 0.25);
    transform: translateY(-2px);
}

.hero-main-content .event-info-banner .info-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: #fff;
    background: transparent;
    border-radius: 999px;
    padding: 0.45em 1.1em;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: none;
    letter-spacing: 0.2px;
    transition: background 0.2s;
}

.hero-main-content .event-info-banner .info-item i {
    color: #a855f7;
    font-size: 1.1em;
    margin-right: 0.2em;
}

.hero-main-content .event-info-banner .info-item:hover {
    background: rgba(168,85,247,0.1);
}

.hero-main-content .hero-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0.7rem 0 0.5rem 0;
}

.hero-main-content .cta-button {
    width: auto;
    max-width: 340px;
    font-size: 1.18rem;
    padding: 1.15rem 2rem;
    text-align: center;
    border-radius: 22px;
    background: linear-gradient(90deg,#a855f7 0%,#5d1aa0 100%);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 8px 32px rgba(168,85,247,0.22);
    border: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    position: relative;
    overflow: hidden;
}

.hero-main-content .cta-button .cta-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: inherit;
    font-weight: inherit;
}

.hero-main-content .cta-button .cta-arrow {
    font-size: 1.2em;
    margin-left: 0.2em;
    transition: transform 0.2s;
}

.hero-main-content .cta-button:hover {
    background: linear-gradient(90deg,#5d1aa0 0%,#a855f7 100%);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 40px 0 rgba(168,85,247,0.28), 0 0 16px 2px #a855f7;
}

.hero-main-content .cta-button:hover .cta-arrow {
    transform: translateX(6px) scale(1.1);
}

.hero-main-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    height: 100%;
}

.logo-image-coruja {
    width: 200px;
    height: 200px;
    max-width: 28vw;
    max-height: 32vh;
    object-fit: contain;
    filter: drop-shadow(0 8px 32px rgba(93,26,160,0.18));
    animation: float 4s ease-in-out infinite;
    margin: 0 0 0 1.5rem;
    display: block;
    z-index: 1;
}

@media (max-width: 900px) {
    .logo-image-coruja {
        width: 120px;
        height: 120px;
        max-width: 40vw;
        max-height: 20vh;
        margin: 0 auto 1.2rem auto;
        display: block;
    }
    .hero-main-row {
        flex-direction: column;
        gap: 1.2rem;
        min-height: unset;
        width: 100vw;
        padding: 0 0.5rem;
    }
    .hero-main-logo {
        order: -1;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 0.5rem;
    }
    .hero-main-content {
        margin-top: 0;
    }
} 

@media (max-width: 700px) {
  .logo-image-coruja {
    margin-top: 12px !important;
    margin-bottom: 8px !important;
    width: 100px !important;
    height: 100px !important;
    max-width: 30vw !important;
  }
  
  .hero-main-content {
    padding-top: 12px !important;
    margin-top: 0 !important;
  }
  
  .hero-headline {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
    -webkit-line-clamp: unset !important;
    overflow: visible !important;
    display: block !important;
    max-width: 98vw !important;
    padding: 0 8px !important;
    white-space: normal !important;
    word-break: break-word !important;
    margin-top: 0.5rem !important;
  }
  
  /* Ajustar ordem no mobile */
  .hero-main-row {
    flex-direction: column !important;
    padding-top: 50px !important; /* Espaço para a faixa de urgência */
  }
  
  .hero-main-logo {
    order: -1 !important; /* Coloca a logo antes do conteúdo */
    margin-bottom: 0 !important;
  }
  
  /* Ajustes para a faixa de urgência */
  .urgency-banner {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
  }
  
  /* Ajuste do botão CTA para uma linha só - versão mobile */
  .cta-button {
    font-size: 0.95rem !important;
    padding: 0.9rem 1.2rem !important;
    text-align: center !important;
  }
} 

/* Botão CTA - regras globais para garantir texto em uma linha */
.cta-button {
  white-space: nowrap !important;
  width: auto !important;
  min-width: 220px !important;
}

.cta-text {
  white-space: nowrap !important;
  display: inline !important;
  text-overflow: ellipsis !important;
} 

/* Otimizações para reduzir CLS */
.image-container, 
.gallery-item, 
.speaker-image-container {
  position: relative;
  overflow: hidden;
  height: 0;
  width: 100%;
}

/* Proporções padrão para os diferentes tipos de contêineres de imagem */
.main-image .image-container {
  padding-bottom: 66.67%; /* Proporção 3:2 */
}

.secondary-images .image-container {
  padding-bottom: 66.67%; /* Proporção 3:2 */
}

.gallery-item {
  padding-bottom: 66.67%; /* Proporção 3:2 */
}

.speaker-image-container {
  padding-bottom: 100%; /* Proporção 1:1 (quadrado) */
}

/* Posicionamento absoluto para as imagens dentro dos contêineres */
.gallery-image,
.speaker-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Garantir que a coruja/logo tenha dimensões fixas */
.logo-image-coruja {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

/* Garantir que o banner de urgência tenha altura fixa */
.urgency-banner {
  height: 44px;
  overflow: hidden;
}

/* Otimização para o carregamento de fontes */
@font-face {
  font-display: swap;
}

/* Otimização para animações */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
} 

.event-details-hero {
  display: flex;
  gap: 1.5rem;
  font-size: 1.15rem;
  color: #A855F7;
  font-weight: 600;
  margin: 0.5rem 0 1.2rem 0;
  letter-spacing: 0.5px;
  text-align: left;
  align-items: center;
  flex-wrap: wrap;
}
.event-detail {
  display: flex;
  align-items: center;
  gap: 0.4em;
  background: rgba(168,85,247,0.08);
  border-radius: 999px;
  padding: 0.25em 1em 0.25em 0.8em;
  box-shadow: 0 2px 8px rgba(168,85,247,0.06);
  font-size: 1.08em;
}
.event-detail i {
  color: #a855f7;
  font-size: 1.15em;
  margin-right: 0.3em;
  min-width: 1.2em;
  text-shadow: 0 1px 4px rgba(168,85,247,0.10);
}
@media (max-width: 700px) {
  .event-details-hero {
    font-size: 1rem;
    gap: 0.7rem;
    margin: 0.5rem 0 1rem 0;
    padding-left: 8px;
    padding-right: 8px;
  }
  .event-detail {
    font-size: 1em;
    padding: 0.22em 0.7em 0.22em 0.7em;
    gap: 0.3em;
  }
  .event-detail i {
    font-size: 1em;
    margin-right: 0.2em;
  }
} 

.event-details-program {
  display: flex;
  gap: 1.5rem;
  font-size: 1.08rem;
  color: #A855F7;
  font-weight: 600;
  margin: 0.7rem 0 1.2rem 0;
  letter-spacing: 0.5px;
  text-align: left;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.event-details-program .event-detail {
  display: flex;
  align-items: center;
  gap: 0.4em;
  background: rgba(168,85,247,0.08);
  border-radius: 999px;
  padding: 0.25em 1em 0.25em 0.8em;
  box-shadow: 0 2px 8px rgba(168,85,247,0.06);
  font-size: 1.08em;
}
.event-details-program .event-detail i {
  color: #a855f7;
  font-size: 1.15em;
  margin-right: 0.3em;
  min-width: 1.2em;
  text-shadow: 0 1px 4px rgba(168,85,247,0.10);
}
@media (max-width: 700px) {
  .event-details-program {
    font-size: 0.97rem;
    gap: 0.7rem;
    margin: 0.5rem 0 1rem 0;
    padding-left: 8px;
    padding-right: 8px;
  }
  .event-details-program .event-detail {
    font-size: 1em;
    padding: 0.22em 0.7em 0.22em 0.7em;
    gap: 0.3em;
  }
  .event-details-program .event-detail i {
    font-size: 1em;
    margin-right: 0.2em;
  }
} 