body {
    font-family: 'Inter', sans-serif;
    background-color: #0c0a09;
    color: #e5e7eb;
}

.gradient-text {
    background: -webkit-linear-gradient(45deg, #4f46e5, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-bg {
    position: relative;
    overflow: hidden;
    background-color: #111827;
    background-image: radial-gradient(circle at top right, rgba(79, 70, 229, 0.15), transparent 40%),
        radial-gradient(circle at bottom left, rgba(236, 72, 153, 0.15), transparent 50%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.cta-button {
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.5), 0 0 15px rgba(236, 72, 153, 0.5);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 25px rgba(79, 70, 229, 0.8), 0 0 25px rgba(236, 72, 153, 0.8);
}

.ai-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.ai-background .line {
    position: absolute;
    bottom: 0;
    background: linear-gradient(to top, rgba(79, 70, 229, 0.3), rgba(236, 72, 153, 0.3), transparent);
    width: 1px;
    animation: move-up 20s infinite linear;
}

@keyframes move-up {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
    padding-left: 2.5rem;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background-color: #374151;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#veo-intro {
    position: relative;
    height: auto;           /* <-- chave pra matar o “buraco” */
    min-height: 0;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .veo-sticky-container {
    position: static;       /* nada de sticky aqui */
    top: auto;
    height: auto;
    width: 100%;
    overflow: visible;
    display: block;
  }

.veo-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    color: white;
    text-align: center;
    z-index: 10;
}

.veo-card {
    background: rgba(10, 8, 9, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2.5rem;
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    visibility: visible !important;
}

.flow-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('../images/Flow_Sizzle_Thumbnail_1280_x_720_.width-700.format-webp.webp');
    background-size: cover;
    background-position: center;
    transform: scale(1) !important;
    filter: blur(0px) brightness(0.7) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.sheen-card {
    position: relative;
    overflow: hidden;
}

.sheen-card::after {
    content: '';
    position: absolute;
    top: 0;
    transform: translateX(-150%) skewX(-25deg);
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
    transition: transform 0.85s cubic-bezier(0.23, 1, 0.32, 1);
}

.sheen-card:hover::after {
    transform: translateX(250%) skewX(-25deg);
}

#depoimento-imgs-container img {
    max-height: 220px;
    width: auto;
    border-radius: 0.75rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
    background: #18181b;
    object-fit: contain;
    transition: box-shadow 0.3s;
}

#depoimento-imgs-container img:hover {
    box-shadow: 0 4px 32px #4F46E5, 0 4px 32px #EC4899;
}

#depoimento-imgs-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media (max-width: 640px) {
    #depoimento-imgs-container img {
        max-width: 90vw;
        max-height: 160px;
    }
}

@media (min-width: 641px) and (max-width: 1023px) {
    #depoimento-imgs-container img {
        max-width: 45vw;
        max-height: 180px;
    }
}

@media (min-width: 1024px) {
    #depoimento-imgs-container img {
        max-width: 30vw;
        max-height: 220px;
    }

/* Badge de BÔNUS */
.bonus-badge {
    display: inline-block;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: .06em;
    padding: .25rem .5rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #facc15 0%, #fde047 100%);
    color: #1a1a1a;
    border: 1px solid rgba(255,255,255,.15);
  }
  
}