/* landing.css */
.landing-page {
    background-color: #000;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(255, 204, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 10% 30%, rgba(255, 204, 0, 0.02) 0%, transparent 40%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
    position: relative;
    overflow-x: hidden;
}

.content-wrapper {
    width: 100%;
    max-width: 1000px;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 120px;
    align-items: center;
}

/* Sections Common */
section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(20px); /* Subtle travel */
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

section.is-visible, 
section.hero-section { /* Hero always visible or faster */
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 2.8rem; /* Larger */
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.05rem;
    background: linear-gradient(180deg, #fff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #888;
    max-width: 600px;
    margin-bottom: 40px;
}

/* Hero Section with Premium Background */
.hero-section {
    padding-top: 110px; /* 40px + 70px offset */
    margin-top: -70px; /* Offset the main container's padding-top to start background at absolute top */
    background: url('../assets/logoheadline.jpeg') center/cover no-repeat;
    position: relative;
    width: 100%;
    z-index: 1;
}

/* Escurecimento cinematográfico e blend perfeito com a descida da página preta */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Mistura um escurecimento circular e uma base sólida preta no rodapé para grudar invisivelmente na próxima section */
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.85) 80%),
                linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, transparent 60%, rgba(0, 0, 0, 1) 100%);
    z-index: -1;
}

/* Reflexo amarelo suave espalhado igual ao do Login */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(255, 204, 0, 0.08) 0%, transparent 100%);
    z-index: -1;
    pointer-events: none;
}

.main-headline {
    font-size: 4rem; /* Even larger */
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.15rem;
    margin-bottom: 24px;
    max-width: 900px;
    background: linear-gradient(180deg, #fff 0%, #71717a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.highlight-yellow {
    display: inline-block;
    background: linear-gradient(90deg, #ffcc00 50%, #fff 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textSelection 1.5s ease-out forwards;
    animation-delay: 0.8s;
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.15);
}

.sub-headline {
    font-size: 1.4rem;
    color: #a1a1aa;
    margin-bottom: 20px; /* Tighter when below monitor, but now its back to above */
    max-width: 700px;
    line-height: 1.6;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.delayed-pitch-text {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin-bottom: 0 !important;
}

.reveal-pitch {
    opacity: 1;
    max-height: 200px; /* Room for text */
    margin-bottom: 40px !important;
}

.hero-btns-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px; /* Moved further down */
}

/* Action Button Styles */
.teste-gratis-btn {
    position: relative;
    background: #fff;
    color: #000;
    padding: 22px 60px;
    font-size: 1.25rem;
    font-weight: 900;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.2, 1);
    animation: breathingGlow 3s ease-in-out infinite;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    display: inline-block;
}

@keyframes breathingGlow {
    0%, 100% { box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 255, 255, 0.1); }
    50% { box-shadow: 0 15px 50px rgba(255, 255, 255, 0.4), 0 0 40px rgba(255, 255, 255, 0.2); }
}

/* Premium Glint Effect */
.teste-gratis-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    animation: glint 4s infinite;
}

@keyframes glint {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.teste-gratis-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.15);
    background: #f0f0f0;
}

.saber-mais-btn {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.saber-mais-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.comparison-table td {
    padding: 22px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 500;
    transition: all 0.3s ease;
}

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
}

.update-badge {
    font-size: 0.65rem;
    background: rgba(255, 255, 255, 0.1);
    color: #888;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
    text-transform: uppercase;
}

.check-icon {
    color: #4ade80; /* Green */
    font-weight: 900;
    margin-right: 8px;
    display: inline-block;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.is-visible .check-icon {
    opacity: 1;
    transform: scale(1.2);
}

.total-old.strikethrough {
    text-decoration: line-through;
    opacity: 0.5;
    transition: all 1s ease;
}

.price-drop-final {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.is-visible .price-drop-final.active {
    opacity: 1;
    transform: scale(1);
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); text-shadow: 0 0 20px rgba(255,255,255,0.4); }
}

.hero-image-container {
    width: 100%;
    max-width: 850px; /* Reverted to restrict overly huge mockups */
    margin-top: 10px; /* Moved higher up */
    margin-bottom: 40px; /* Increased to move the scroll indicator down */
}

.pc-mockup {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pc-screen {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #111;
    border: 12px solid #1a1a1a;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 20px rgba(255,255,255,0.03);
    background: linear-gradient(180deg, #111 0%, #000 100%);
}

.pc-stand {
    width: 15%; /* Scale with screen */
    min-width: 100px;
    height: 15px;
    background: #1a1a1a;
    margin-top: -2px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    position: relative;
}

.pc-stand::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 160%; /* Proportional to stand */
    height: 6px;
    background: #111;
    border-radius: 10px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
}

.is-visible .benefit-card {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:nth-child(2) { transition-delay: 0.1s; }
.benefit-card:nth-child(3) { transition-delay: 0.2s; }
.benefit-card:nth-child(4) { transition-delay: 0.3s; }
.benefit-card:nth-child(5) { transition-delay: 0.4s; }

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #333;
}

.benefit-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.marquee-section {
    padding: 100px 0;
    overflow: hidden;
    background: #000;
}

.marquee-container {
    padding: 60px 0;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 30s linear infinite;
    gap: 60px;
    align-items: center;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    font-size: 2.2rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: default;
}

.marquee-item:hover {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
    color: #fff;
}

/* Modules List */
.modules-section {
    max-width: 800px;
}

.modules-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    margin-top: 40px;
}

.module-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.module-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    border: 1px solid #333;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.module-item h3 {
    font-size: 1.8rem;
    font-weight: 800;
}

.module-item p {
    color: #888;
    max-width: 500px;
}

/* CTA Section */
.cta-section {
    margin-top: 60px;
}

.price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.price-value {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -0.1rem;
}

.price-info {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

/* Scroll Down Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    padding-bottom: 15px; /* Pushed closer to the bottom edge */
    color: #717171;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    opacity: 0.8;
}

.old-price {
    color: #ff4d4d;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.is-visible .old-price {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered reveal for rows */
.comparison-table tr:nth-child(1) .old-price { transition-delay: 1.0s; }
.comparison-table tr:nth-child(2) .old-price { transition-delay: 1.1s; }
.comparison-table tr:nth-child(3) .old-price { transition-delay: 1.2s; }
.comparison-table tr:nth-child(4) .old-price { transition-delay: 1.3s; }
.comparison-table tr:nth-child(5) .old-price { transition-delay: 1.4s; }
.comparison-table tr:nth-child(n+6) .old-price { transition-delay: 1.5s; }

.table-disclaimer {
    font-size: 0.7rem;
    color: #444;
    margin-top: 10px;
    font-style: italic;
}

.testimonials-section {
    padding: 100px 0;
    background: #000;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 1, 0.2, 1);
}

.testimonials-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: testimonials-scroll 25s linear infinite;
    width: max-content;
}

@keyframes testimonials-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

.testimonials-track:hover {
    animation-play-state: paused; /* Pause on hover so people can read */
}

.testimonial-card {
    min-width: 400px;
    max-width: 400px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    scroll-snap-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: #161616;
    transform: scale(1.02);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #333, #111);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.user-status {
    font-size: 0.85rem;
    color: #717171;
    display: block;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #a1a1aa;
    line-height: 1.7;
    font-style: italic;
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 300px;
        padding: 30px;
    }
    .testimonials-track {
        padding-left: 20px;
    }
}

.saas-pricing-grid {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 1200px;
    margin: 60px auto 0;
    padding-bottom: 100px;
    perspective: 1500px;
}

.saas-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 24px;
    padding: 40px;
    width: 340px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: -20px 0 40px rgba(0,0,0,0.6);
}

/* Stacking Order to create the "Center Pop" effect */
.saas-card:nth-child(1) { 
    z-index: 1; 
}
.saas-card:nth-child(2) { 
    z-index: 3; 
    margin-left: -40px; 
    margin-right: -40px; 
    background: #16161a; 
    transform: translateY(-8px) scale(1.03); 
    border-color: rgba(255, 204, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}
.saas-card:nth-child(3) { 
    z-index: 2; 
    margin-left: 0; 
}

.saas-card:hover {
    transform: translateY(-20px) scale(1.05);
    border-color: #ffcc00;
    z-index: 10 !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.9);
}

.saas-card {
    min-height: 520px; /* Ensure tall aspect ratio */
}

.saas-card.featured {
    border: 1px solid rgba(255, 204, 0, 0.4);
}

.card-brand {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1rem;
    color: #fff;
    margin-bottom: 30px;
    opacity: 0.6;
}

.card-title-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.card-step-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}

.saas-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -0.05rem;
}

.saas-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.saas-price span {
    font-size: 1rem;
    color: #ffd633;
}

.saas-desc {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.card-bottom {
    margin-top: auto; /* Pushes the button to the absolute bottom of the card */
    padding-top: 20px;
}

@media (max-width: 900px) {
    .saas-pricing-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .saas-card {
        width: 100%;
        max-width: 400px;
        min-height: auto;
    }
    .saas-card:nth-child(2),
    .saas-card:nth-child(3) {
        margin-left: 0;
    }
}

.special-glow {
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.05);
    animation: borderPulse 3s infinite ease-in-out;
}

@keyframes borderPulse {
    0% { border-color: rgba(255, 204, 0, 0.1); }
    50% { border-color: rgba(255, 204, 0, 0.5); }
    100% { border-color: rgba(255, 204, 0, 0.1); }
}

.saas-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: #ffcc00;
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.saas-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.saas-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.saas-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

.saas-btn:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.yellow-btn {
    background: linear-gradient(135deg, #ffcc00 0%, #d9ac00 100%) !important;
    border: none !important;
    color: #000 !important;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    font-size: 0.9rem !important;
}

.yellow-btn:hover {
    background: linear-gradient(135deg, #ffd633 0%, #ffcc00 100%) !important;
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.3);
    transform: translateY(-3px) scale(1.02);
}

.saas-link {
    font-size: 0.8rem;
    font-weight: 500;
    color: #555;
    text-align: center;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.saas-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.saas-features li {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dot {
    color: #fff;
    background: #222;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.7rem;
}

.mockup-3d-wrapper {
    perspective: 2000px;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.mockup-3d-container {
    width: 90%;
    max-width: 960px;
    transform: rotateY(-18deg) rotateX(10deg);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.2, 1);
    position: relative;
    box-shadow: -50px 50px 100px rgba(0,0,0,0.8);
}



.mockup-3d-container:hover {
    transform: rotateY(-5deg) rotateX(5deg) scale(1.05);
}

.mockup-3d-screen {
    background: #111;
    border: 12px solid #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1536 / 1024;
    position: relative;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.05), inset 0 0 40px rgba(0,0,0,1);
}

.dashboard-video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder-3d {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.mockup-3d-shadow {
    position: absolute;
    bottom: -60px;
    left: 10%;
    width: 80%;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
    filter: blur(20px);
}

/* Light beam effect over the screen */
.mockup-3d-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-25deg);
    animation: screen-shine 8s infinite;
}

@keyframes screen-shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.dash-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.is-visible .dash-card {
    opacity: 1;
    transform: translateY(0);
}

.is-visible .dash-card:nth-child(2) { transition-delay: 0.2s; }
.is-visible .dash-card:nth-child(3) { transition-delay: 0.4s; }
.is-visible .dash-card:nth-child(4) { transition-delay: 0.6s; }

.dash-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.dash-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.dash-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.dash-card p {
    color: #a1a1aa;
    line-height: 1.6;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.mouse-wheel {
    width: 25px;
    height: 42px;
    border: 2px solid #333;
    border-radius: 20px;
    position: relative;
}

.mouse-wheel::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scrollMouse 1.5s infinite ease-in-out;
}

@keyframes scrollMouse {
    0% { transform: translate(-50%, 0); opacity: 0; }
    30% { opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* FAQ & CTA Section */
.faq-section {
    max-width: 800px;
    margin-top: 100px; /* Mais respiro entre preços e FAQ */
    padding-bottom: 50px;
}

.faq-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left;
    padding: 10px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #ffcc00;
}

/* O ícone "+" do Accordion */
.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    color: #ffcc00;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
}

/* O ícone vira "x" quando ativo */
.faq-question.active::after {
    transform: rotate(45deg);
    color: #ff3333;
}

/* O "Corpo" da resposta (Fechado por padrão) */
.faq-answer {
    color: #a1a1aa;
    font-size: 1.05rem;
    text-align: left;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    line-height: 1.6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-right: 30px; /* Evita que o texto encoste no ícone do botão */
}

/* Aberto via JS */
.faq-answer.active-answer {
    max-height: 250px;
    padding-top: 20px;
    padding-bottom: 15px;
    opacity: 1;
}

/* Footer branding */
.footer-branding {
    margin-top: 100px;
    text-align: center;
}

.footer-branding .brand-name {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.footer-branding .copyright {
    color: #444;
}

/* Override global delayed button container */
.delayed-button-container {
    margin-top: 60px !important;
}

/* Responsive & Utility */
@media (max-width: 768px) {
    .main-headline {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .benefit-card {
        padding: 30px 20px;
    }
}

/* Step-by-Step Section */
.steps-section {
    padding: 80px 20px 40px;
}

.steps-box {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 60px 40px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.steps-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
    letter-spacing: -0.05rem;
}

.steps-subtitle {
    color: #71717a;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.steps-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    flex: 1;
    min-width: 250px;
}

.step-num {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    user-select: none;
}

.step-content strong {
    display: block;
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.step-content p {
    color: #71717a;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 900px) {
    .steps-grid {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
        gap: 40px;
    }
    .steps-box {
        padding: 40px 20px;
    }
    .step-num {
        font-size: 4rem;
    }
}

/* Pattern Break Section */
.pattern-break-section {
    padding: 120px 20px;
    background: #000;
    text-align: center;
}

.pattern-break-content {
    max-width: 800px;
    margin: 0 auto;
}

.pattern-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: -0.1rem;
}

.pattern-text {
    font-size: 1.25rem;
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pattern-highlight {
    font-size: 1.35rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
    padding-top: 10px;
}

@media (max-width: 768px) {
    .pattern-title {
        font-size: 2.2rem;
    }
    .pattern-text, .pattern-highlight {
        font-size: 1.1rem;
    }
}

/* Table Socker Section */
.table-socker {
    margin-top: 80px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 40px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.socker-text {
    font-size: 1.4rem;
    color: #71717a;
    margin-bottom: 25px;
    line-height: 1.6;
}

.socker-divider {
    width: 60px;
    height: 3px;
    background: #ffcc00;
    margin: 30px auto;
}

.socker-final {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: -0.1rem;
}

.price-bubble {
    display: inline-block;
    background: #ffcc00;
    color: #000;
    padding: 20px 50px;
    border-radius: 60px;
    font-size: 3.5rem;
    font-weight: 950;
    box-shadow: 0 15px 40px rgba(255, 204, 0, 0.3);
    animation: pulseBubble 2s infinite ease-in-out;
}

@keyframes pulseBubble {
    0% { transform: scale(1); box-shadow: 0 15px 40px rgba(255, 204, 0, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 25px 60px rgba(255, 204, 0, 0.5); }
    100% { transform: scale(1); box-shadow: 0 15px 40px rgba(255, 204, 0, 0.3); }
}

@media (max-width: 768px) {
    .socker-final {
        font-size: 1.8rem;
    }
    .price-bubble {
        font-size: 2.2rem;
        padding: 15px 30px;
    }
    .socker-text {
        font-size: 1.1rem;
    }
}

/* What You Receive Section */
.benefits-section {
    padding: 100px 20px;
    background: #000;
}

.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 60px auto 0;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 45px 40px; /* Mais respiro interno */
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.benefit-card:hover {
    border-color: #ffcc00;
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 204, 0, 0.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px; /* Mais distância do título pro texto */
}

.benefit-check {
    color: #000;
    background: #ffcc00;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.2);
}

.benefit-header strong {
    font-size: 1.35rem; /* Título maior */
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.02rem;
}

.benefit-card p {
    color: #a1a1aa; /* Cinza mais claro, melhor contraste */
    font-size: 1.05rem; /* Fonte um pouco maior */
    line-height: 1.7; /* Mais espaço entre as linhas */
    margin: 0;
}

@media (max-width: 1024px) {
    .benefit-card {
        min-width: 100%;
    }
}

/* Trust Section (Why so cheap?) */
.trust-section {
    padding: 100px 20px;
    background: #000;
}

.trust-box {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.015);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
}

.trust-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: -0.05rem;
}

.trust-text {
    font-size: 1.2rem;
    color: #a1a1aa;
    line-height: 1.7;
    margin-bottom: 40px;
}

.trust-text strong {
    color: #fff;
    font-weight: 700;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-badges span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #fff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .trust-title {
        font-size: 1.8rem;
    }
    .trust-text {
        font-size: 1.1rem;
    }
    .trust-badges {
        gap: 15px;
    }
}

/* Community Proof Section */
.proof-section {
    padding: 100px 20px;
    background: #000;
}

.proof-container {
    max-width: 1000px;
    margin: 60px auto 0;
    text-align: center;
}

.proof-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: #ffcc00;
    letter-spacing: -0.1rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #71717a;
    font-weight: 600;
    margin-top: 10px;
    text-transform: uppercase;
}

.proof-community {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid #000;
    margin-left: -20px;
    background: #222;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.more-count {
    margin-left: 20px;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
    .proof-stats {
        gap: 30px;
    }
    .avatar-stack img {
        width: 45px;
        height: 45px;
    }
}

/* -------------------------------------------------------------------------
   Premium Interactions Overrides (3D Tilt & Magnetic)
   ------------------------------------------------------------------------- */
.saas-card, .benefit-card {
    will-change: transform;
    transform-style: preserve-3d;
}

/* Improve text rendering during 3D transform */
.saas-card *, .benefit-card * {
    transform: translateZ(20px); /* Gives content a floating effect off the card */
}

/* Ensure background stays flat while content floats */
.saas-card::before, .benefit-card {
    transform: translateZ(0px);
}

/* -------------------------------------------------------------------------
   Strategic Scarcity Bar
   ------------------------------------------------------------------------- */
.scarcity-box {
    margin-top: 20px;
    padding: 12px;
    background: rgba(255, 51, 51, 0.05); /* very soft red */
    border: 1px dashed rgba(255, 51, 51, 0.2);
    border-radius: 12px;
}

.scarcity-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    justify-content: center;
}

.scarcity-pulse {
    width: 8px;
    height: 8px;
    background: #ff3333; /* Alert Red */
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(255, 51, 51, 0.4);
    animation: pulseRed 1.5s infinite;
}

@keyframes pulseRed {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 51, 51, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 51, 51, 0); }
}

.scarcity-text {
    font-size: 0.8rem;
    color: #ccc;
}

.scarcity-text strong {
    color: #ff3333;
    font-weight: 800;
}

.scarcity-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.scarcity-fill {
    width: 93%; /* 93% full = only 7% (07 spots) left */
    height: 100%;
    background: linear-gradient(90deg, #cc0000, #ff3333);
    border-radius: 4px;
    animation: fillScarcity 2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes fillScarcity {
    0% { width: 0%; }
    100% { width: 93%; }
}

/* -------------------------------------------------------------------------
   Premium Sticky Header
   ------------------------------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.4); /* Darker transparency for high-end look */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Extremely subtle bottom border */
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 80px; /* Aligns items perfectly in the vertical center */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.header-logo {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    letter-spacing: -0.05rem;
    line-height: 1;
}

.logo-light {
    font-weight: 300;
    color: #fff;
    margin-right: 4px;
}

.logo-bold {
    font-weight: 900;
    color: #ffcc00;
    font-style: italic;
    background: linear-gradient(90deg, #ffcc00, #ffaa00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-nav {
    display: flex;
    gap: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* Locks navigation to the dead center of the screen */
}

.nav-link {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.nav-link:hover {
    color: #fff;
}

.header-btn {
    padding: 12px 28px;
    border-radius: 8px; /* Sharp, sleek square curves */
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
    background: #ffcc00;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.2);
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.4);
    background: #ffe680;
}

@media (max-width: 900px) {
    .header-nav {
        display: none; /* Hide links on mobile/tablet to avoid collision */
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
        height: 70px;
    }
    .header-logo {
        font-size: 1.2rem;
    }
    .header-btn {
        padding: 10px 18px;
        font-size: 0.75rem;
    }
}

/* -------------------------------------------------------------------------
   Censored Price Logic
   ------------------------------------------------------------------------- */
.censored-price {
    text-align: center;
    vertical-align: middle;
}

.censor-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 900;
    color: #ffcc00;
    background: rgba(255, 204, 0, 0.05);
    border: 1px dashed rgba(255, 204, 0, 0.4);
    padding: 10px 20px;
    border-radius: 8px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.05rem;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.1);
}

.censor-link:hover {
    background: rgba(255, 204, 0, 0.15);
    border-color: #ffcc00;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.3);
    color: #fff;
}

.eye-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
}
