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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
    cursor: default;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Fundo principal com imagem */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('FUNDO.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed removido para melhor performance em mobile */
    z-index: -3;
    opacity: 0.5;
    /* Animation removida para melhor performance */
    transform-origin: center center;
}

/* Animação removida para melhor performance */

/* Overlay escuro para melhor legibilidade */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(0, 0, 0, 0.7) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.8) 0%, transparent 50%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -2;
    pointer-events: none;
}

/* Animações de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 102, 255, 0.5),
                    0 0 40px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 102, 255, 0.8),
                    0 0 60px rgba(0, 212, 255, 0.5);
    }
}

/* Classes de animação */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-down {
    animation: fadeInDown 0.8s ease-out forwards;
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Partículas flutuantes */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* Efeito de ondas animadas no fundo */
@keyframes wave {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateX(50px) translateY(-20px) rotate(180deg);
        opacity: 0.5;
    }
}

.wave-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    overflow: hidden;
    opacity: 0.2;
}

.wave-effect::before,
.wave-effect::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse at center, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at center, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    animation: wave 20s ease-in-out infinite;
}

.wave-effect::before {
    top: -50%;
    left: -50%;
    animation-delay: 0s;
}

.wave-effect::after {
    top: -50%;
    right: -50%;
    animation-delay: 10s;
    animation-direction: reverse;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 212, 255, 0.5);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 8s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; animation-duration: 10s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; animation-duration: 7s; }
.particle:nth-child(4) { left: 40%; animation-delay: 0.5s; animation-duration: 9s; }
.particle:nth-child(5) { left: 50%; animation-delay: 1.5s; animation-duration: 8s; }
.particle:nth-child(6) { left: 60%; animation-delay: 2.5s; animation-duration: 11s; }
.particle:nth-child(7) { left: 70%; animation-delay: 0.8s; animation-duration: 9s; }
.particle:nth-child(8) { left: 80%; animation-delay: 1.8s; animation-duration: 10s; }
.particle:nth-child(9) { left: 90%; animation-delay: 0.3s; animation-duration: 8s; }

/* Hero Section */
.hero {
    min-height: auto;
    background: 
        radial-gradient(ellipse at 50% 20%, rgba(0, 102, 255, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 60%);
    position: relative;
    padding: 0;
    overflow: hidden;
    z-index: 1;
}

/* Camada interativa de fundo no hero */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 102, 255, 0.03) 10px, rgba(0, 102, 255, 0.03) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(0, 212, 255, 0.02) 10px, rgba(0, 212, 255, 0.02) 20px);
    pointer-events: none;
    opacity: 0.6;
    z-index: 0;
    animation: background-pulse 8s ease-in-out infinite, gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(20px, 20px);
    }
}

/* Efeito de brilho animado no hero que segue o mouse */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 400px 400px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 102, 255, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 300px 300px at calc(100% - var(--mouse-x, 50%)) calc(100% - var(--mouse-y, 50%)), rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
    transition: opacity 0.5s ease;
    mix-blend-mode: screen;
    /* will-change removido para melhor performance */
}

.hero-container {
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

/* Conteúdo sobreposto na imagem */
.hero-content-overlay {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    max-width: 50%;
    padding: 40px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.hero-content {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* CTA após benefícios */
.benefits-cta {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

/* CTA após depoimentos */
.testimonials-cta {
    margin-top: 50px;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

/* Estilos para benefits-container dentro do hero - integrado com a imagem */
.hero .benefits-container {
    max-width: 1200px;
    margin: -60px auto 0;
    padding: 80px 20px;
    position: relative;
    z-index: 5;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(0, 102, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(0, 212, 255, 0.1) 0%, transparent 60%);
    border-radius: 20px 20px 0 0;
}

/* Estilos para about-container dentro do hero */
.hero .about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #ffffff;
    animation: fadeInDown 1s ease-out 0.3s backwards;
    position: relative;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.event-date {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #ffffff;
    animation: fadeInUp 1s ease-out 0.5s backwards;
    position: relative;
}

.event-date .calendar-icon {
    animation: pulse 2s ease-in-out infinite;
    display: inline-block;
}

.calendar-icon {
    font-size: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #e0e0e0;
    max-width: 100%;
    animation: fadeInUp 1s ease-out 0.7s backwards;
}

.cta-button {
    display: inline-block !important;
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%) !important;
    color: #ffffff !important;
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px solid rgba(0, 212, 255, 0.3);
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 
        0 4px 20px rgba(0, 102, 255, 0.5),
        0 0 30px rgba(0, 212, 255, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) translateY(0) !important;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 
            0 4px 20px rgba(0, 102, 255, 0.5),
            0 0 30px rgba(0, 212, 255, 0.3),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 6px 30px rgba(0, 102, 255, 0.7),
            0 0 50px rgba(0, 212, 255, 0.5),
            inset 0 0 30px rgba(255, 255, 255, 0.15);
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
    border-radius: 12px;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease, opacity 0.3s ease;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
}

/* Garantir que o texto do botão esteja sempre visível em todos os estados */
a.cta-button,
.cta-button:link,
.cta-button:visited {
    color: #ffffff !important;
    text-decoration: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover::after {
    width: 200px;
    height: 200px;
    opacity: 1;
}

.cta-button:hover {
    background: linear-gradient(135deg, #0052CC 0%, #00B8E6 100%) !important;
    transform: translateY(-8px) scale(1.08) !important;
    box-shadow: 
        0 15px 50px rgba(0, 102, 255, 0.9),
        0 0 80px rgba(0, 212, 255, 0.7),
        inset 0 0 40px rgba(255, 255, 255, 0.25);
    border-color: rgba(0, 212, 255, 1);
    opacity: 1 !important;
    visibility: visible !important;
    color: #ffffff !important;
    animation: none;
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02) !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: #ffffff !important;
}

.cta-button:focus {
    outline: 2px solid rgba(0, 212, 255, 0.5);
    outline-offset: 2px;
}

.cta-button.large {
    padding: 25px 60px;
    font-size: 1.3rem;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
}

/* Regra final para garantir que os botões nunca sejam escondidos */
a.cta-button,
a.cta-button.large {
    pointer-events: auto !important;
    user-select: auto !important;
}

/* Container para botão e texto de atenção */
.cta-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
    flex-wrap: wrap;
    margin: 30px 0 20px 0;
}

.cta-container .cta-button {
    margin-bottom: 0;
    flex: 0 0 auto;
}

.attention-text {
    color: #00D4FF;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    animation: fadeInUp 1s ease-out 1.1s backwards;
    display: flex;
    align-items: center;
    position: relative;
    margin: 0;
    white-space: nowrap;
    flex: 0 0 auto;
    line-height: 1.4;
    height: fit-content;
}

.attention-text::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #0066FF, #00D4FF);
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
    align-self: stretch;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 40vh;
    min-height: 350px;
    max-height: 500px;
    overflow: hidden;
    background: 
        linear-gradient(135deg, #000000 0%, #0a0a1a 50%, #000000 100%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 102, 255, 0.3) 0%, rgba(0, 0, 0, 0.8) 70%);
    animation: fadeIn 1.2s ease-out 0.1s backwards;
    transition: all 0.5s ease;
    cursor: pointer;
}


/* Efeito de fundo preto e azul atrás da imagem */
.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(0, 102, 255, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(0, 212, 255, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #001122 30%, #000000 70%, #001133 100%);
    z-index: 0;
    pointer-events: none;
    opacity: 0.9;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0, 102, 255, 0.03) 20px, rgba(0, 102, 255, 0.03) 40px),
        repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(0, 212, 255, 0.02) 20px, rgba(0, 212, 255, 0.02) 40px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.image-3d-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.image-3d-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.person-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 0;
    border: none;
    box-shadow: none;
    position: relative;
    z-index: 2;
    mix-blend-mode: normal;
    animation: fadeIn 1.5s ease-out 0.2s backwards;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

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

.image-shadow {
    display: none;
}

/* Wrapper para permitir overflow no zoom */
.image-3d-wrapper {
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

/* CTA sobreposto na imagem */
.image-cta-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.image-cta {
    padding: 18px 40px;
    font-size: 1.1rem;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.8),
        0 4px 20px rgba(0, 102, 255, 0.6),
        0 0 40px rgba(0, 212, 255, 0.4);
    backdrop-filter: blur(5px);
}

.image-cta:hover {
    transform: translateY(-6px) scale(1.06) !important;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.9),
        0 6px 30px rgba(0, 102, 255, 0.8),
        0 0 60px rgba(0, 212, 255, 0.6);
}

/* Overlay sutil na imagem para integrar com o fundo preto e azul */
.person-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.5) 100%
    );
    pointer-events: none;
    z-index: 3;
}

/* Efeito de brilho azul sutil nas bordas da imagem */
.image-3d-wrapper::before {
    content: '';
    position: absolute;
    top: -5%;
    left: -5%;
    right: -5%;
    bottom: -5%;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 30%, rgba(0, 102, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
    filter: blur(40px);
    opacity: 0.7;
}

/* Testimonials Section */
.testimonials {
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 102, 255, 0.02) 2px, rgba(0, 102, 255, 0.02) 4px);
    pointer-events: none;
    z-index: 0;
    animation: gridMove 20s linear infinite reverse;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0066FF, #00D4FF, #0066FF, transparent);
    opacity: 0.5;
    z-index: 1;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.testimonials-title.animated {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-title .highlight {
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.videos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto 80px;
    padding: 0 20px;
    position: relative;
}

.videos-container::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0066FF, #00D4FF, #0066FF, transparent);
    opacity: 0.6;
}

.video-wrapper {
    position: relative;
    border: 3px solid #0066FF;
    border-radius: 16px;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at var(--glow-x, 50%) var(--glow-y, 50%), rgba(0, 102, 255, 0.25) 0%, transparent 70%),
        linear-gradient(135deg, #0a0a1a 0%, #1a1a2a 100%);
    padding: 6px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(0, 102, 255, 0.4),
        inset 0 0 20px rgba(0, 102, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    cursor: pointer;
}

.video-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.2);
    }
}

.video-border-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 3px;
    background: linear-gradient(45deg, #0066FF, #00D4FF, #0066FF);
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
    animation: borderFlow 3s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

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

.video-wrapper.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: videoEntrance 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes videoEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.video-wrapper:hover {
    border-color: #00D4FF;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.9),
        0 0 60px rgba(0, 212, 255, 0.8),
        0 0 100px rgba(0, 102, 255, 0.5),
        inset 0 0 30px rgba(0, 212, 255, 0.2);
    transform: translateY(-15px) scale(1.03);
    z-index: 10;
}

.video-wrapper:hover .video-glow {
    opacity: 0.6;
}

.video-wrapper:hover .video-border-animation {
    opacity: 1;
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 212, 255, 0.15));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
    border-radius: 12px;
}

.video-wrapper:hover::before {
    opacity: 1;
}

.video-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
}

.video-wrapper:hover::after {
    width: 200%;
    height: 200%;
    opacity: 1;
}

.video-wrapper iframe {
    width: 100%;
    height: 400px;
    display: block;
    border: none;
    border-radius: 12px;
    position: relative;
    z-index: 3;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.95);
}

.video-wrapper:hover iframe {
    transform: scale(1.02);
    filter: brightness(1.05);
}

/* Loading placeholder para vídeos */
.video-wrapper.loading::before {
    opacity: 0.5;
}

.video-label {
    background: linear-gradient(180deg, rgba(10, 10, 26, 0.95) 0%, rgba(0, 0, 0, 0.95) 100%);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    border-top: 2px solid #0066FF;
    position: relative;
    z-index: 4;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.video-icon {
    display: inline-block;
    color: #00D4FF;
    font-size: 1.2rem;
    animation: playPulse 2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

@keyframes playPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.video-wrapper:hover .video-label {
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.2) 0%, rgba(0, 0, 0, 0.95) 100%);
    border-top-color: #00D4FF;
    box-shadow: 0 -5px 20px rgba(0, 212, 255, 0.3);
}

.video-wrapper:hover .video-icon {
    color: #00D4FF;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
    transform: scale(1.2);
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Hero Repeat Section */
.hero-repeat {
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

.hero-repeat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(0, 212, 255, 0.02) 15px, rgba(0, 212, 255, 0.02) 30px);
    pointer-events: none;
    z-index: 0;
    animation: gridMove 25s linear infinite;
}

.hero-repeat::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0066FF, #00D4FF, #0066FF, transparent);
    opacity: 0.5;
    z-index: 1;
}

.hero-repeat .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
}

.hero-repeat .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-repeat .hero-description {
    max-width: 100%;
}

/* Benefits Section */
.benefits-section {
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(0, 102, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(0, 212, 255, 0.1) 0%, transparent 60%);
    padding: 100px 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

.benefits-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% var(--scroll-progress, 50%), rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    opacity: calc(var(--scroll-progress, 0) * 0.5);
    transition: opacity 0.3s ease;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0, 102, 255, 0.02) 20px, rgba(0, 102, 255, 0.02) 40px);
    pointer-events: none;
    z-index: 0;
    animation: gridMove 35s linear infinite;
    opacity: 0.4;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
    box-sizing: border-box;
}

.benefits-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.benefits-header.animated {
    opacity: 1;
    transform: translateY(0);
}

.benefits-tagline {
    font-size: 1.3rem;
    color: #00D4FF;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    animation: pulse 3s ease-in-out infinite;
}

.benefits-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.3;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.benefits-title .highlight {
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 4s linear infinite;
}

.hero-video-container {
    margin: 40px auto;
    width: 100%;
    max-width: 1200px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(0, 102, 255, 0.3);
    border: 2px solid rgba(0, 102, 255, 0.3);
    transition: all 0.3s ease;
    box-sizing: border-box;
    padding: 0;
    aspect-ratio: 16 / 9;
}

.hero-video-container:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.9),
        0 0 50px rgba(0, 102, 255, 0.4);
    transform: translateY(-5px);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    border-radius: 15px;
    background: #000;
    /* Otimizações de performance */
    will-change: auto;
    transform: translateZ(0); /* Aceleração de hardware */
}

/* Estilo para o poster do vídeo */
.hero-video[poster] {
    background-size: cover;
    background-position: center;
}

/* Indicador de loading para conexões lentas */
.hero-video-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 212, 255, 0.3);
    border-top-color: #00D4FF;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.hero-video-container.loading::after {
    opacity: 1;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out 0.5s;
}

.hero-stats.animated {
    opacity: 1;
    transform: translateY(0);
}

.hero-stat-item {
    text-align: center;
    padding: 25px 20px;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(0, 102, 255, 0.25) 0%, transparent 70%),
        linear-gradient(135deg, rgba(10, 10, 26, 0.8) 0%, rgba(26, 26, 42, 0.8) 100%);
    border: 2px solid #0066FF;
    border-radius: 16px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(0, 102, 255, 0.4),
        inset 0 0 20px rgba(0, 102, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.hero-stat-item:hover::before {
    opacity: 1;
}

.hero-stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
    transition: transform 0.3s ease;
}

.hero-stat-item:hover {
    transform: translateY(-5px);
    border-color: #00D4FF;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(0, 212, 255, 0.6),
        inset 0 0 25px rgba(0, 212, 255, 0.15);
}

.hero-stat-item:hover .hero-stat-number {
    transform: scale(1.05);
}

.hero-stat-label {
    font-size: 1rem;
    color: #d7e0ff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-item {
    background: 
        radial-gradient(ellipse at var(--glow-x, 50%) var(--glow-y, 50%), rgba(0, 102, 255, 0.15) 0%, transparent 70%),
        linear-gradient(135deg, rgba(10, 10, 26, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    border: 2px solid rgba(0, 102, 255, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: rotate 20s linear infinite;
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-item.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.benefit-item:hover {
    border-color: #00D4FF;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(0, 212, 255, 0.4),
        inset 0 0 30px rgba(0, 212, 255, 0.1);
}

.benefit-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.3;
    position: relative;
    z-index: 1;
}

.benefit-content {
    position: relative;
    z-index: 2;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.benefit-description strong {
    color: #00D4FF;
    font-weight: 700;
}

/* About Section */
.about-section {
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(0, 102, 255, 0.15) 0%, transparent 60%);
    padding: 100px 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(-45deg, transparent, transparent 25px, rgba(0, 212, 255, 0.02) 25px, rgba(0, 212, 255, 0.02) 50px);
    pointer-events: none;
    z-index: 0;
    animation: gridMove 40s linear infinite reverse;
    opacity: 0.3;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% calc(100% - var(--scroll-progress, 50%) * 100%), rgba(0, 102, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    opacity: calc(var(--scroll-progress, 0) * 0.6);
    transition: opacity 0.3s ease;
    mix-blend-mode: screen;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.about-header.animated {
    opacity: 1;
    transform: translateY(0);
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-subtitle {
    font-size: 1.5rem;
    color: #00D4FF;
    font-weight: 600;
    font-style: italic;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-story {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease-out 0.3s;
}

.about-story.animated {
    opacity: 1;
    transform: translateX(0);
}

.story-text {
    max-width: 800px;
    margin: 0 auto;
}

.story-paragraph {
    font-size: 1.2rem;
    line-height: 2.1;
    color: #f0f0f0;
    margin-bottom: 30px;
    text-align: justify;
    letter-spacing: 0.2px;
    max-width: 90ch;
}

.story-paragraph strong {
    color: #00D4FF;
    font-weight: 700;
}

.highlight-paragraph {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    padding: 30px;
    background: 
        radial-gradient(ellipse at center, rgba(0, 102, 255, 0.2) 0%, transparent 70%),
        linear-gradient(135deg, rgba(10, 10, 26, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-left: 4px solid #00D4FF;
    border-radius: 10px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.highlight-paragraph::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 70px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out 0.6s;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.about-stats.animated {
    opacity: 1;
    transform: translateY(0);
}

.stat-item {
    background: linear-gradient(135deg, #0a1a3a 0%, #0d1f3d 50%, #081428 100%);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 15px;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(0, 102, 255, 0.2),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.stat-item::before {
    display: none;
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    padding: 40px 20px 20px 20px;
    margin: 0;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    letter-spacing: -2px;
    animation: shimmer 4s linear infinite;
}


.stat-label {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.6;
    position: relative;
    z-index: 3;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(0, 0, 0, 0.3);
    padding: 0 20px 35px 20px;
    background: transparent;
    letter-spacing: 0.3px;
}


.about-media {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease-out 0.9s;
    max-width: 800px;
    margin: 0 auto;
}

.about-media.animated {
    opacity: 1;
    transform: translateX(0);
}

.media-text,
.media-conclusion {
    font-size: 1.2rem;
    line-height: 2;
    color: #e0e0e0;
    margin-bottom: 25px;
    text-align: center;
}

.media-text strong,
.media-conclusion strong {
    color: #00D4FF;
    font-weight: 700;
}

.media-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: #ffffff;
    text-align: center;
    padding: 30px;
    background: 
        radial-gradient(ellipse at center, rgba(0, 212, 255, 0.15) 0%, transparent 70%),
        linear-gradient(135deg, rgba(10, 10, 26, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-radius: 15px;
    margin-top: 40px;
    position: relative;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.media-quote::before {
    content: '"';
    font-size: 5rem;
    color: rgba(0, 212, 255, 0.3);
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: serif;
}

.media-quote em {
    color: #00D4FF;
    font-style: normal;
    font-weight: 700;
}

/* About Image Container */
.about-image-container {
    margin-top: 60px;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 1s ease-out 1.2s;
    position: relative;
    z-index: 2;
}

.about-image-container.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.about-image-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background: 
        radial-gradient(ellipse at var(--glow-x, 50%) var(--glow-y, 50%), rgba(0, 102, 255, 0.2) 0%, transparent 70%),
        linear-gradient(135deg, rgba(10, 10, 26, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-radius: 20px;
    overflow: visible;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #0066FF, #00D4FF, #0066FF);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: borderGlow 3s ease-in-out infinite;
}

.about-image-wrapper:hover::before {
    opacity: 0.6;
}

.about-image-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(0, 102, 255, 0.5),
        0 0 80px rgba(0, 212, 255, 0.4),
        inset 0 0 40px rgba(0, 212, 255, 0.1);
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.3;
        filter: blur(5px);
    }
    50% {
        opacity: 0.6;
        filter: blur(10px);
    }
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    filter: brightness(0.95) contrast(1.05);
}

.about-image-wrapper:hover .about-image {
    filter: brightness(1.1) contrast(1.1);
    transform: scale(1.01);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    border-radius: 15px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite;
}

.about-image-wrapper:hover .image-glow {
    opacity: 0.8;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.image-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    z-index: 3;
    pointer-events: none;
    transition: all 0.4s ease;
}

.about-image-wrapper:hover .image-border {
    border-color: rgba(0, 212, 255, 0.8);
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.5),
        inset 0 0 20px rgba(0, 212, 255, 0.2);
}

/* Efeito de partículas ao redor da imagem */
.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 102, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.2) 0%, transparent 50%);
    border-radius: 20px;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotate 15s linear infinite;
}

.about-image-wrapper:hover::after {
    opacity: 1;
}

/* Access Section */
.access-section {
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(0, 102, 255, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(0, 212, 255, 0.15) 0%, transparent 60%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.access-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(0, 102, 255, 0.03) 20px, rgba(0, 102, 255, 0.03) 40px);
    pointer-events: none;
    z-index: 0;
    animation: gridMove 30s linear infinite;
    opacity: 0.5;
}

.access-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0066FF, #00D4FF, #0066FF, transparent);
    opacity: 0.5;
    z-index: 1;
}

.access-container {
    max-width: 600px;
    margin: 0 auto;
    border: 3px solid #0066FF;
    border-radius: 15px;
    padding: 50px 40px;
    background: 
        radial-gradient(ellipse at var(--glow-x, 50%) var(--glow-y, 50%), rgba(0, 102, 255, 0.1) 0%, transparent 70%),
        linear-gradient(135deg, #0a0a1a 0%, #000000 100%);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(0, 102, 255, 0.3),
        inset 0 0 30px rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.access-container:hover {
    border-color: #00D4FF;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.9),
        0 0 50px rgba(0, 102, 255, 0.4),
        inset 0 0 40px rgba(0, 212, 255, 0.15);
    transform: translateY(-5px);
}

.access-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.access-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.access-title.animated {
    opacity: 1;
    transform: translateY(0);
}

.access-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out 0.2s;
}

.access-subtitle.animated {
    opacity: 1;
    transform: translateY(0);
}

.features {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.feature {
    background: 
        radial-gradient(ellipse at var(--glow-x, 50%) var(--glow-y, 50%), rgba(0, 212, 255, 0.15) 0%, transparent 70%),
        linear-gradient(135deg, #0a0a1a 0%, #1a1a2a 100%);
    padding: 12px 24px;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    border: 2px solid #0066FF;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: scale(0.8);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.feature:hover::before {
    left: 100%;
}

.feature.animated {
    opacity: 1;
    transform: scale(1);
}

.feature:hover {
    border-color: #00D4FF;
    box-shadow: 
        0 8px 25px rgba(0, 212, 255, 0.5),
        0 0 30px rgba(0, 212, 255, 0.3);
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, #1a1a2a 0%, #2a2a3a 100%);
}

.bonus-list {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.bonus-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 12px;
    background: 
        radial-gradient(ellipse at var(--glow-x, 50%) var(--glow-y, 50%), rgba(0, 212, 255, 0.1) 0%, transparent 70%),
        linear-gradient(135deg, rgba(10, 10, 26, 0.8) 0%, rgba(26, 26, 42, 0.8) 100%);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.bonus-item:hover::before {
    left: 100%;
}

.bonus-item:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
    transform: translateX(5px);
}

.bonus-name {
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 500;
    flex: 1;
    margin-right: 15px;
}

.bonus-price {
    color: #00D4FF;
    font-size: 1.1rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing {
    margin: 50px 0;
    position: relative;
    z-index: 1;
    padding: 30px 0;
}

.old-price {
    font-size: 1.2rem;
    color: #888;
    text-decoration: line-through;
    margin-bottom: 10px;
    position: relative;
}

.price-label {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.new-price .amount {
    display: inline-block;
    transition: all 0.3s ease;
}

.new-price .amount.price-animated {
    animation: priceReduction 0.1s ease-out;
    transform: scale(1.05);
}

.new-price .amount.price-final {
    animation: priceFinalPulse 0.6s ease-out;
}

@keyframes priceReduction {
    0% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(0.98);
    }
    100% {
        transform: scale(1.05);
    }
}

@keyframes priceFinalPulse {
    0% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

.new-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin: 20px 0;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out 0.4s;
}

.new-price.animated {
    opacity: 1;
    transform: scale(1);
    animation: pulse 2s ease-in-out infinite 1s;
}

.currency {
    font-size: 2rem;
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.amount {
    font-size: 5rem;
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.cents {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.price-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin: 30px 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Plano detalhado */
.section-tag {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00D4FF;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 212, 255, 0.4);
    background: rgba(0, 0, 0, 0.45);
    box-shadow: inset 0 0 12px rgba(0, 212, 255, 0.2);
}

.plan-section {
    padding: 100px 20px;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(0, 102, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(0, 212, 255, 0.1) 0%, transparent 60%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.plan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 102, 255, 0.02) 2px, rgba(0, 102, 255, 0.02) 4px);
    pointer-events: none;
    z-index: 0;
    animation: gridMove 20s linear infinite reverse;
}

.plan-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0066FF, #00D4FF, #0066FF, transparent);
    opacity: 0.5;
    z-index: 1;
}

.plan-header {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
}

.plan-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    line-height: 1.2;
}

.plan-header h2.animated {
    opacity: 1;
    transform: translateY(0);
}

.plan-header h2 .highlight {
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-highlight {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 999px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #a8d7ff;
    font-size: 0.95rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
}

.plan-spark {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00D4FF;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
    animation: pulse 2s ease-in-out infinite;
}

.plan-timeline {
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 10px;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
    transform: translateY(-50%);
    animation: timelineSweep 8s linear infinite;
}

.timeline-node {
    position: relative;
    padding-top: 32px;
    text-align: center;
    font-size: 0.85rem;
    color: #9bb6ff;
    transition: transform 0.4s ease, color 0.4s ease;
}

.timeline-node span {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.25), rgba(0, 0, 0, 0.92));
    border: 1px solid rgba(0, 212, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 14px 25px rgba(0, 0, 0, 0.45);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.timeline-node span::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.35);
    opacity: 0.6;
    animation: timelinePulse 4s ease-in-out infinite;
}

.timeline-node:hover {
    transform: translateY(-6px);
    color: #d7e8ff;
}

.timeline-node:hover span {
    box-shadow: 0 18px 35px rgba(0, 212, 255, 0.45);
    transform: translateX(-50%) scale(1.05);
}

.plan-section::after {
    content: '';
    position: absolute;
    inset: 60px 15%;
    border-radius: 30px;
    border: 1px solid rgba(0, 212, 255, 0.08);
    pointer-events: none;
}

.plan-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}


.plan-subtitle {
    color: #e0e0e0;
    max-width: 720px;
    margin: 0 auto 50px;
    line-height: 1.8;
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out 0.2s;
}

.plan-subtitle.animated {
    opacity: 1;
    transform: translateY(0);
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.plan-grid::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0066FF, #00D4FF, #0066FF, transparent);
    opacity: 0.6;
}

.plan-grid::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0066FF, #00D4FF, #0066FF, transparent);
    opacity: 0.6;
}

.plan-card {
    --glow-x: 50%;
    --glow-y: 50%;
    background:
        radial-gradient(ellipse at var(--glow-x) var(--glow-y), rgba(0, 102, 255, 0.25) 0%, transparent 70%),
        linear-gradient(135deg, #0a0a1a 0%, #1a1a2a 100%);
    border: 3px solid #0066FF;
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(0, 102, 255, 0.4),
        inset 0 0 20px rgba(0, 102, 255, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.plan-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.plan-card::after {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.plan-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.phase-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.phase-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.5);
    font-weight: 700;
    color: #ffffff;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2), rgba(0, 0, 0, 0.9));
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.phase-time {
    font-size: 0.9rem;
    color: #a4beff;
}

.plan-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.plan-card:hover h3 {
    color: #00D4FF;
}

.plan-card p {
    color: #d7e0ff;
    line-height: 1.7;
    font-size: 0.95rem;
}

.plan-card:hover {
    border-color: #00D4FF;
    transform: translateY(-8px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.9),
        0 0 60px rgba(0, 212, 255, 0.8),
        0 0 100px rgba(0, 102, 255, 0.5),
        inset 0 0 30px rgba(0, 212, 255, 0.2);
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card:hover::after {
    opacity: 0.6;
}

.cta-button.secondary {
    margin: 0 auto;
    display: inline-flex;
    box-shadow: 0 20px 45px rgba(0, 122, 255, 0.45);
    background: linear-gradient(120deg, #00A3FF, #005CFF);
    border: none;
}

.cta-button.secondary:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 30px 65px rgba(0, 122, 255, 0.55);
}

/* Para quem é */
.audience-section {
    padding: 100px 20px;
    background:
        radial-gradient(circle at 15% 15%, rgba(0, 212, 255, 0.18), transparent 60%),
        radial-gradient(circle at 85% 10%, rgba(0, 102, 255, 0.15), transparent 65%),
        linear-gradient(120deg, rgba(1, 3, 10, 0.95) 0%, rgba(4, 12, 28, 0.95) 100%),
        url('FUNDO.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.audience-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.audience-container h2 {
    font-size: 2.6rem;
    margin-bottom: 50px;
    background: linear-gradient(120deg, #f9fbff 0%, #6ddcff 50%, #f9fbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
    text-shadow: 0 0 25px rgba(0, 212, 255, 0.25);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.audience-card {
    background: linear-gradient(150deg, rgba(0, 0, 0, 0.95), rgba(10, 25, 55, 0.9));
    border: 1px solid rgba(0, 102, 255, 0.35);
    border-radius: 18px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.12);
    pointer-events: none;
}

.audience-card::after {
    content: '';
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.audience-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.audience-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.55);
    box-shadow:
        0 25px 45px rgba(0, 0, 0, 0.75),
        0 0 30px rgba(0, 212, 255, 0.25);
}

.audience-card:hover::after {
    opacity: 1;
}

.audience-card:hover h3 {
    letter-spacing: 1px;
    text-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
}

.audience-card:hover h3::after {
    width: 90px;
    opacity: 1;
}

.audience-card:hover p {
    color: #f4fbff;
    text-shadow: 0 0 12px rgba(0, 212, 255, 0.2);
}

.audience-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    background: linear-gradient(120deg, #ffffff 0%, #8fd3ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.4px;
    transition: letter-spacing 0.3s ease, text-shadow 0.3s ease;
    position: relative;
}

.audience-card p {
    color: #d8e1ff;
    line-height: 1.6;
    margin-bottom: 15px;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.audience-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0), rgba(0, 212, 255, 0.8), rgba(0, 212, 255, 0));
    transition: width 0.4s ease, opacity 0.4s ease;
    opacity: 0.7;
}

/* Encontros ao vivo */
.live-section {
    padding: 100px 20px;
    background:
        radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.15), transparent 55%),
        #04040c;
}

.live-container {
    --glow-x: 50%;
    --glow-y: 50%;
    max-width: 1100px;
    margin: 0 auto;
    background:
        radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(0, 212, 255, 0.12), transparent 65%),
        rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(0, 102, 255, 0.35);
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
}

.live-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    border: 1px solid rgba(0, 212, 255, 0.18);
    pointer-events: none;
}

.live-container.animated {
    opacity: 1;
    transform: translateY(0);
}

.live-header {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.live-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.live-chip {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(0, 212, 255, 0.35);
    color: #a8d7ff;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.45);
    box-shadow: inset 0 0 12px rgba(0, 212, 255, 0.15);
}

.live-icon {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2), rgba(0, 102, 255, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.25);
}

.live-icon svg {
    width: 80px;
    height: 80px;
    stroke: #00D4FF;
    stroke-width: 2;
    fill: none;
}

.live-subtitle {
    color: #cfd8ff;
    line-height: 1.7;
}

.live-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.live-highlights {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.live-highlights li {
    padding-left: 28px;
    position: relative;
    color: #d7e0ff;
    line-height: 1.7;
}

.live-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.6);
}

.live-stream-preview {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: 20px;
    align-items: center;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    background: rgba(0, 0, 0, 0.55);
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.6);
    position: relative;
}

.live-stream-screen {
    position: relative;
}

.live-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(120deg, #ff3b3b, #ff8b3d);
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    box-shadow: 0 5px 15px rgba(255, 59, 59, 0.4);
}

.live-status::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.85);
}

.live-caption {
    color: #dbe5ff;
    line-height: 1.6;
    margin-bottom: 8px;
}

.live-viewers {
    font-size: 0.9rem;
    color: #8db5ff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.live-viewers::before {
    content: '●';
    color: #00D4FF;
    font-size: 0.7rem;
}

.live-wave {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    background: radial-gradient(circle at 50% 30%, rgba(0, 212, 255, 0.3), transparent 60%);
    filter: blur(20px);
    opacity: 0.8;
    animation: glowPulse 4s ease-in-out infinite;
}

.cta-button.tertiary {
    align-self: flex-start;
    background: transparent;
    border: 1px solid rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.15);
}

.cta-button.tertiary:hover {
    background: rgba(0, 212, 255, 0.1);
}

/* Jonathan na mídia */
.media-section {
    padding: 95px 20px;
    background: #010104;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1200px) {
    .audience-section {
        background-attachment: fixed;
    }
    
    .plan-section {
        background-attachment: fixed;
    }
}

.media-section::before,
.media-section::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.media-section::before {
    background: radial-gradient(circle at 15% 25%, rgba(0, 212, 255, 0.18), transparent 60%),
                radial-gradient(circle at 80% 0%, rgba(0, 102, 255, 0.12), transparent 65%);
    animation: mediaGlow 14s ease-in-out infinite alternate;
    opacity: 0.9;
}

.media-section::after {
    background: repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.03) 0 8px, transparent 8px 16px);
    mix-blend-mode: screen;
    opacity: 0.15;
    animation: mediaScan 18s linear infinite;
}

.media-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.media-container h2 {
    font-size: 2.8rem;
    margin-bottom: 22px;
    text-transform: none;
    letter-spacing: 0.5px;
    background: linear-gradient(120deg, #ffffff 0%, #5fe0ff 40%, #9a7bff 70%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: mediaTitleWave 5s ease-in-out infinite;
    position: relative;
}

.media-container h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -14px;
    width: 160px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(0, 212, 255, 0.9), rgba(255, 255, 255, 0));
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.55);
}

.media-subtitle {
    color: #cfd8ff;
    max-width: 780px;
    margin: 0 auto 40px;
}

.media-highlight {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 30px;
    align-items: stretch;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.media-highlight::before {
    content: '';
    position: absolute;
    inset: -40px;
    border-radius: 40px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.12), transparent 70%);
    filter: blur(35px);
    opacity: 0.6;
    z-index: -1;
    animation: mediaPulse 10s ease-in-out infinite;
}

.media-video-preview {
    --glow-x: 50%;
    --glow-y: 50%;
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 2px solid rgba(0, 212, 255, 0.4);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.7);
    isolation: isolate;
}

.media-video-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(0, 212, 255, 0.08), transparent 70%);
    z-index: 1;
}

.media-video-preview iframe {
    width: 100%;
    height: 320px;
    border: none;
    display: block;
    position: relative;
    z-index: 0;
}

.media-video-controls {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}

.media-video-badge {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(0, 212, 255, 0.5);
    color: #ffffff;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.media-video-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(120deg, #00A3FF, #005CFF);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 15px 30px rgba(0, 122, 255, 0.45);
}

.media-video-button:hover {
    transform: translateY(-2px);
}

.media-excerpt {
    text-align: left;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 22px;
    padding: 25px;
    color: #d7e0ff;
    line-height: 1.7;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
    position: relative;
    overflow: hidden;
}

.media-excerpt::after {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 18px;
    border: 1px solid rgba(0, 212, 255, 0.15);
    opacity: 0.5;
    pointer-events: none;
}

.media-excerpt p {
    margin: 0;
    font-size: 1.05rem;
    color: #e7f2ff;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.media-excerpt:hover p {
    color: #ffffff;
    text-shadow: 0 0 18px rgba(0, 212, 255, 0.35);
}

.media-text-glow {
    position: relative;
    background: linear-gradient(120deg, #00d4ff 0%, #7af0ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textPulse 4s ease-in-out infinite;
    font-weight: 600;
    white-space: nowrap;
}

.media-text-glow::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0), rgba(0, 212, 255, 0.6), rgba(0, 212, 255, 0));
    opacity: 0.8;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.media-text-glow:hover::after {
    transform: scaleX(1);
}
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 35px;
}

.media-card {
    background: linear-gradient(140deg, rgba(0, 0, 0, 0.95), rgba(10, 25, 55, 0.9));
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 18px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.media-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.media-card::before,
.media-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.media-card::before {
    background: radial-gradient(circle at top, rgba(0, 212, 255, 0.2), transparent 70%);
}

.media-card::after {
    border: 1px solid rgba(0, 212, 255, 0.4);
    mix-blend-mode: screen;
}

.media-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.7);
}

.media-card:hover::before,
.media-card:hover::after {
    opacity: 1;
}

.media-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.media-card p {
    color: #d7e0ff;
    line-height: 1.6;
}

.media-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: #00D4FF;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

.media-link::after {
    content: '↗';
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.media-link:hover::after {
    transform: translateY(-2px);
}

.access-assurances {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    text-align: left;
}

.assurance-item {
    background: linear-gradient(140deg, rgba(0, 0, 0, 0.7), rgba(5, 15, 35, 0.85));
    border: 1px solid rgba(0, 102, 255, 0.35);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
    position: relative;
}

.assurance-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(0, 212, 255, 0.15);
    pointer-events: none;
}

.assurance-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.assurance-item p {
    color: #cfd8ff;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        #000000;
    padding: 50px 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 102, 255, 0.3);
    position: relative;
    z-index: 1;
    margin-top: 60px;
}

.footer-links a {
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
}

.footer-links a:focus-visible {
    outline: 2px solid #00D4FF;
    outline-offset: 2px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0066FF, #00D4FF, #0066FF, transparent);
    opacity: 0.5;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00D4FF;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.footer-links span {
    color: #666;
    margin: 0 5px;
}

.copyright {
    color: #888;
    font-size: 0.9rem;
}

/* Melhorias adicionais de UX */
.hero-container {
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Efeito de loading suave */
@keyframes shimmer-load {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

img {
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

/* Animação de entrada para seções */
section {
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho nos textos destacados */
.hero-title .highlight,
.testimonials-title .highlight {
    position: relative;
    background: linear-gradient(90deg, #0066FF 0%, #00D4FF 50%, #0066FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 4s linear infinite;
}

/* Melhorias nos vídeos */
.video-wrapper iframe {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.video-wrapper:hover iframe {
    transform: scale(1.02);
}

/* Efeito de foco nos botões - consolidação */
.cta-button:focus {
    box-shadow: 
        0 0 0 4px rgba(0, 212, 255, 0.3),
        0 10px 40px rgba(0, 102, 255, 0.8),
        0 0 60px rgba(0, 212, 255, 0.6);
}

/* Animação de entrada para preço */
.access-section .old-price {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease-out 0.6s;
}

.access-section .old-price.animated {
    opacity: 1;
    transform: translateX(0);
}


.price-label {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.6s ease-out 0.8s;
}

.access-section .price-label.animated {
    opacity: 1;
    transform: translateY(0);
}

.price-subtitle {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out 1s;
}

.access-section .price-subtitle.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Melhorias de acessibilidade - reduzir animações se preferido */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Melhorias de contraste para acessibilidade */
@media (prefers-contrast: high) {
    .hero-title,
    .benefits-title,
    .about-title,
    .testimonials-title,
    .access-title {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .cta-button {
        border-width: 3px;
        border-color: #00D4FF;
    }
}

/* Focus visible para navegação por teclado */
*:focus-visible {
    outline: 3px solid #00D4FF;
    outline-offset: 3px;
    border-radius: 4px;
}

.cta-button:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 4px;
}

/* Loading state para imagens */
img {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img.loaded {
    opacity: 1;
}

/* Skip to content link para acessibilidade */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #0066FF;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 5px 0;
}

.skip-to-content:focus {
    top: 0;
}

/* Animação sutil de pulsação no fundo do hero */
@keyframes background-pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes planGlow {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-25px);
    }
}

@keyframes planOrbit {
    0% {
        transform: translate(-50%, 0) rotate(0deg);
    }
    100% {
        transform: translate(-50%, 0) rotate(360deg);
    }
}

@keyframes timelinePulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes timelineSweep {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.3;
    }
}

@keyframes mediaGlow {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-30px);
    }
}

@keyframes mediaScan {
    0% {
        transform: translateX(-20%);
    }
    100% {
        transform: translateX(20%);
    }
}

@keyframes mediaPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

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

@keyframes textPulse {
    0%, 100% {
        filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.35));
    }
    50% {
        filter: drop-shadow(0 0 14px rgba(0, 212, 255, 0.85));
    }
}

@keyframes mediaTitleWave {
    0% {
        letter-spacing: 0.4px;
        text-shadow: 0 0 12px rgba(0, 212, 255, 0.3);
        transform: translateY(0);
    }
    25% {
        letter-spacing: 1px;
        text-shadow: 0 5px 18px rgba(0, 212, 255, 0.4);
    }
    50% {
        letter-spacing: 0.6px;
        text-shadow: 0 -3px 15px rgba(154, 123, 255, 0.4);
        transform: translateY(-1px);
    }
    75% {
        letter-spacing: 1px;
        text-shadow: 0 4px 18px rgba(95, 224, 255, 0.5);
    }
    100% {
        letter-spacing: 0.4px;
        text-shadow: 0 0 12px rgba(0, 212, 255, 0.3);
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .plan-section {
        padding: 100px 15px;
        background-attachment: scroll;
    }

    .plan-container {
        padding: 40px 25px 50px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .hero-content-overlay {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        max-width: 100%;
        margin: 20px;
        padding: 30px;
    }
    
    .hero-image {
        height: 35vh;
        min-height: 300px;
        max-height: 450px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .person-image {
        object-position: center 25%;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero .benefits-container {
        margin-top: 0;
        padding: 60px 20px;
    }
    
    .hero-video-container {
        max-width: 100%;
        margin: 30px auto;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .image-cta-overlay {
        bottom: 20px;
        right: 20px;
    }
    
    .image-cta {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .plan-container h2,
    .audience-container h2,
    .media-container h2 {
        font-size: 2.2rem;
    }

    .plan-highlight {
        flex-direction: column;
        text-align: left;
    }

    .plan-timeline {
        flex-wrap: wrap;
        row-gap: 30px;
    }

    .timeline-node {
        flex: 1 1 calc(50% - 20px);
    }

    .plan-grid,
    .audience-grid,
    .media-grid {
        grid-template-columns: 1fr;
    }

    .live-container {
        padding: 40px 25px;
    }

    .live-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .live-metrics {
        gap: 10px;
    }

    .live-icon {
        width: 90px;
        height: 90px;
    }

    .media-highlight {
        grid-template-columns: 1fr;
    }

    .videos-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-wrapper iframe {
        height: 300px;
    }
    
    .video-wrapper:hover {
        transform: translateY(-8px) scale(1.02);
    }
    
    .testimonials-title {
        font-size: 2.2rem;
    }
    
    .access-title {
        font-size: 2rem;
    }
    
    .amount {
        font-size: 4rem;
    }
    
    /* Ajustar CTA container em tablets */
    .cta-container {
        gap: 20px;
    }
    
    .attention-text {
        font-size: 1rem;
    }
    
    /* Ajustar seções de benefícios e sobre em tablets */
    .benefits-title {
        font-size: 2.2rem;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        min-height: 180px;
    }
    
    .stat-number {
        font-size: 3.5rem;
        padding: 35px 20px 15px 20px;
    }
    
    .stat-label {
        font-size: 1rem;
        padding: 0 20px 30px 20px;
    }
}

@media (max-width: 600px) {
    .plan-section {
        padding: 80px 15px;
        background-attachment: scroll;
    }

    .plan-container {
        padding: 28px 18px 38px;
    }

    .plan-highlight {
        align-items: flex-start;
    }

    .hero-content-overlay {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        max-width: 100%;
        margin: 15px;
        padding: 20px;
    }
    
    .hero-image {
        height: 30vh;
        min-height: 250px;
        max-height: 400px;
    }
    
    .person-image {
        object-position: center 20%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    
    .hero-stat-number {
        font-size: 2.2rem;
    }
    
    .hero-stat-label {
        font-size: 0.75rem;
    }
    
    .plan-container h2,
    .audience-container h2,
    .media-container h2 {
        font-size: 1.9rem;
    }

    .plan-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 0;
    }

    .timeline-node {
        width: 100%;
        text-align: left;
        padding-left: 60px;
    }

    .timeline-node span {
        left: 20px;
        transform: none;
    }

    .plan-card,
    .audience-card,
    .media-card {
        padding: 22px;
    }

    .live-container {
        padding: 30px 20px;
    }

    .live-stream-preview {
        grid-template-columns: 1fr;
    }

    .live-highlights li {
        font-size: 0.95rem;
    }

    .media-photo {
        border-radius: 14px;
    }

    .media-video-preview iframe {
        height: 220px;
    }

    .media-excerpt {
        padding: 20px;
    }

    .hero-description {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 18px 35px;
        font-size: 1rem;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
    }
    
    .access-container {
        padding: 30px 20px;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero .benefits-container {
        margin-top: 0;
        padding: 40px 15px;
    }
    
    .hero-video-container {
        max-width: 100%;
        margin: 25px auto;
        padding: 0 5px;
        box-sizing: border-box;
    }
    
    .hero-video {
        border-radius: 10px;
    }
    
    .image-cta-overlay {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
    
    .image-cta {
        width: 100%;
        padding: 14px 25px;
        font-size: 0.95rem;
        text-align: center;
    }
    
    .amount {
        font-size: 3.5rem;
    }
    
    .currency {
        font-size: 1.5rem;
    }
    
    .cents {
        font-size: 2rem;
    }
    
    .floating-particles {
        display: none; /* Ocultar partículas em telas pequenas para melhor performance */
    }
    
    .video-wrapper:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .video-wrapper iframe {
        height: 250px;
    }
    
    .videos-container {
        gap: 25px;
    }
    
    /* Ajustar layout do CTA container em mobile */
    .cta-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin: 25px 0 15px 0;
    }
    
    .cta-container .cta-button {
        width: 100%;
        text-align: center;
    }
    
    .attention-text {
        font-size: 0.95rem;
        white-space: normal;
    }
    
    /* Ajustar fundo em mobile - background-attachment fixed não funciona bem */
    body::before {
        background-attachment: scroll;
        animation: none;
        transform: none;
    }
    
    /* Reduzir efeitos interativos em mobile para melhor performance */
    .hero::after {
        opacity: 0.4;
    }
    
    .interactive-particle {
        display: none;
    }
    
    /* Ajustar seções de benefícios e sobre em mobile */
    .benefits-section,
    .about-section {
        padding: 60px 20px;
    }
    
    .benefits-tagline {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .benefits-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
        padding: 0 15px;
    }
    
    .hero-stat-item {
        padding: 20px 15px;
    }
    
    .hero-stat-number {
        font-size: 2.5rem;
    }
    
    .hero-stat-label {
        font-size: 0.8rem;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .benefit-item {
        padding: 30px 20px;
    }
    
    .benefit-number {
        font-size: 3rem;
    }
    
    .benefit-title {
        font-size: 1.2rem;
    }
    
    .benefit-description {
        font-size: 1rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1.2rem;
    }
    
    .story-paragraph {
        font-size: 1rem;
        text-align: left;
    }
    
    .highlight-paragraph {
        font-size: 1.1rem;
        padding: 20px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        min-height: 160px;
    }
    
    .stat-number {
        font-size: 3rem;
        padding: 30px 20px 15px 20px;
    }
    
    .stat-label {
        font-size: 0.95rem;
        padding: 0 20px 25px 20px;
    }
    
    .media-text,
    .media-conclusion {
        font-size: 1rem;
    }
    
    .media-quote {
        font-size: 1.1rem;
        padding: 20px;
    }
    
    .media-quote::before {
        font-size: 3rem;
        top: -10px;
        left: 10px;
    }
    
    /* Ajustar imagem de Jonathan em mobile */
    .about-image-container {
        margin-top: 40px;
    }
    
    .about-image-wrapper {
        max-width: 100%;
        padding: 15px;
    }
    
    .about-image {
        border-radius: 10px;
    }
    
    .image-border {
        border-radius: 10px;
    }
}

/* Otimizações de performance para mobile */
@media (max-width: 768px) {
    /* Desabilitar background-attachment: fixed em mobile para melhor performance */
    body::before {
        background-attachment: scroll;
    }
    
    /* Reduzir efeitos visuais pesados em mobile */
    .floating-particles {
        display: none;
    }
    
    /* Simplificar animações em mobile */
    .hero-video-container:hover {
        transform: none;
    }
}


