/* Landing Page - Clean & Modern Design - ForYouSpecial Theme (Adaptado da fys) */

:root {
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(255, 255, 255, 0.02);
    --primary-pink: #ff6b9d;
    --primary-red: #ff6b9d;
    --accent-purple: #c77dff;
    --accent-pink-light: #ffb3d1;
    /* Gradientes premium melhorados */
    --gradient-primary: linear-gradient(135deg, #ff6b9d 0%, #ff88b8 30%, #c77dff 70%, #d491ff 100%);
    --gradient-secondary: linear-gradient(135deg, #c77dff 0%, #ff6b9d 50%, #ff88b8 100%);
    --gradient-glow-soft: radial-gradient(circle, rgba(255, 107, 157, 0.15) 0%, transparent 70%);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.55);
    --shadow-glow: 0 0 40px rgba(255, 107, 157, 0.35), 0 0 80px rgba(199, 125, 255, 0.15);
    --shadow-glow-strong: 0 0 60px rgba(255, 107, 157, 0.5), 0 0 100px rgba(199, 125, 255, 0.25);
    --border-glow: rgba(255, 107, 157, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    position: relative;
}

/* Promotional Banner */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff6b9d 50%, #c77dff 100%);
    color: #ffffff;
    text-align: center;
    padding: 10px 15px;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.promo-banner-content {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1.5;
}

body.promo-banner-active .hero-mobile,
body.promo-banner-active .hero-desktop {
    padding-top: 80px;
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particles-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(255, 107, 157, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(255, 107, 157, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(199, 125, 255, 0.04) 0%, transparent 60%);
    animation: backgroundPulse 20s ease-in-out infinite;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 25s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.3) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.25) 0%, transparent 70%);
    bottom: -250px;
    right: -250px;
    animation-delay: -8s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(199, 125, 255, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -15s;
}

@keyframes backgroundPulse {
    0%, 100% { 
        opacity: 0.6; 
        transform: scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.05); 
    }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 40px) scale(0.9);
    }
}

/* Progress Bar de Scroll */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff6b9d 50%, #c77dff 100%);
    z-index: 10000;
    transition: width 0.1s ease-out;
    pointer-events: none;
}

/* Viewport Height Variable */
:root {
    --vh: 1vh;
}

/* Hero Section */
.hero-mobile {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px 100px;
    position: relative;
    text-align: center;
}

.hero-content-mobile {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-icon-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    animation: iconEntrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes iconEntrance {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-180deg);
    }
    60% {
        transform: scale(1.1) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.hero-icon-pulse {
    font-size: 5.5rem;
    animation: iconFloat 6s ease-in-out infinite, iconGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 107, 157, 0.5));
    position: relative;
    z-index: 2;
    cursor: default;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border: 2px solid var(--primary-pink);
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 3s ease-out infinite;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 3s ease-out 1s infinite;
}

.pulse-ring::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--accent-purple);
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 3s ease-out 2s infinite;
}

@keyframes iconFloat {
    0%, 100% { 
        transform: translateY(0) scale(1); 
    }
    50% { 
        transform: translateY(-20px) scale(1.05); 
    }
}

@keyframes iconGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 107, 157, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 107, 157, 0.8)) drop-shadow(0 0 60px rgba(255, 107, 157, 0.4));
    }
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.hero-title-mobile {
    font-size: clamp(2.75rem, 9vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
    animation: titleLineIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.title-line:nth-child(1) {
    animation-delay: 0.3s;
}

.title-line:nth-child(2) {
    animation-delay: 0.5s;
}

.title-line:nth-child(3) {
    animation-delay: 0.7s;
}

@keyframes titleLineIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-gradient::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    animation: underlineExpand 1s ease-out 1s forwards;
    transform-origin: left;
}

@keyframes underlineExpand {
    to {
        transform: scaleX(1);
    }
}

.hero-subtitle-mobile {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.8;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.9s forwards;
    opacity: 0;
}

/* CTA Buttons */
.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    background: var(--gradient-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    width: 100%;
    max-width: 340px;
    margin: 0 auto 28px;
    box-shadow: 
        0 10px 40px rgba(255, 107, 157, 0.3),
        0 0 0 0 rgba(255, 107, 157, 0.6);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 1.1s forwards;
    opacity: 0;
}

.cta-primary::before,
.cta-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-primary:hover::before,
.cta-secondary:hover::before {
    width: 500px;
    height: 500px;
}

.cta-primary:hover,
.cta-secondary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 15px 50px rgba(255, 107, 157, 0.5),
        0 0 0 8px rgba(255, 107, 157, 0.1);
}

.cta-primary:active,
.cta-secondary:active {
    transform: translateY(-2px) scale(0.98);
}

.cta-primary svg,
.cta-secondary svg {
    transition: transform 0.3s ease;
}

.cta-primary:hover svg,
.cta-secondary:hover svg {
    transform: translateX(6px);
}

.pulse-button {
    animation: buttonPulse 3s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 
            0 10px 40px rgba(255, 107, 157, 0.3),
            0 0 0 0 rgba(255, 107, 157, 0.6);
    }
    50% {
        box-shadow: 
            0 15px 50px rgba(255, 107, 157, 0.5),
            0 0 0 12px rgba(255, 107, 157, 0.15);
    }
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    animation: fadeInUp 1s ease-out 1.3s forwards;
    opacity: 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    animation: fadeInOut 4s ease-in-out infinite;
    cursor: pointer;
}

.scroll-arrow-animated {
    width: 2px;
    height: 32px;
    background: var(--gradient-primary);
    margin: 12px auto 0;
    position: relative;
    animation: scrollDown 2.5s ease-in-out infinite;
    border-radius: 2px;
}

.scroll-arrow-animated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary-pink);
    border-bottom: 2px solid var(--primary-pink);
    transform: rotate(45deg);
}

@keyframes scrollDown {
    0%, 100% {
        opacity: 0.4;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(12px);
    }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Sections */
section {
    padding: 80px 24px;
    position: relative;
}

.section-title-mobile {
    font-size: clamp(2rem, 7vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.section-subtitle-mobile {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 48px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features */
.features-mobile {
    background: var(--bg-darker);
    padding: 100px 24px;
}

.features-list-mobile {
    margin-bottom: 48px;
}

.feature-item-mobile {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    margin-bottom: 20px;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateX(-30px);
    position: relative;
    overflow: hidden;
}

.feature-item-mobile::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-item-mobile.visible {
    opacity: 1;
    transform: translateX(0);
}

.feature-item-mobile:hover {
    border-color: rgba(255, 107, 157, 0.5);
    background: rgba(255, 107, 157, 0.05);
    transform: translateX(12px) translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(255, 107, 157, 0.15),
        0 0 60px rgba(255, 107, 157, 0.25),
        0 0 100px rgba(199, 125, 255, 0.15);
}

.feature-item-mobile:hover::before {
    opacity: 1;
}

.feature-icon-mobile {
    font-size: 3rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 15px rgba(255, 107, 157, 0.4));
    animation: iconWiggle 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.feature-item-mobile:hover .feature-icon-mobile {
    transform: scale(1.1) rotate(5deg);
}

@keyframes iconWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}

.feature-content-mobile h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-pink);
}

.feature-content-mobile p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.cta-secondary {
    background: transparent;
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    max-width: 300px;
    margin-top: 20px;
}

.cta-secondary:hover {
    background: rgba(255, 107, 157, 0.1);
    box-shadow: 0 12px 40px rgba(255, 107, 157, 0.3);
}

/* Testimonials */
.testimonials-mobile {
    background: var(--bg-dark);
    padding: 100px 24px;
}

.testimonials-carousel {
    position: relative;
    margin-bottom: 32px;
    min-height: 320px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(40px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.testimonial-card.active {
    position: relative;
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: all;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 24px;
    box-shadow: 0 0 40px rgba(255, 107, 157, 0.4);
    animation: avatarPulse 3s ease-in-out infinite;
}

@keyframes avatarPulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255, 107, 157, 0.4);
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 107, 157, 0.6);
    }
}

.testimonial-content {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    padding: 32px 28px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.testimonial-card.active .testimonial-content {
    box-shadow: 0 12px 40px rgba(255, 107, 157, 0.1);
}

.testimonial-stars {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-style: italic;
}

.testimonial-author {
    text-align: center;
    color: var(--primary-pink);
    font-weight: 700;
    font-size: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.dot.active {
    background: var(--primary-pink);
    width: 32px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.5);
}

/* Use Cases */
.usecases-mobile {
    background: var(--bg-darker);
    padding: 100px 24px;
}

.usecases-grid-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.usecase-card-mobile {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(20px);
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    position: relative;
    overflow: hidden;
}

.usecase-card-mobile::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.usecase-card-mobile.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.usecase-card-mobile:active {
    transform: scale(0.96);
}

.usecase-card-mobile:hover {
    border-color: rgba(255, 107, 157, 0.6);
    background: rgba(255, 107, 157, 0.05);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 16px 50px rgba(255, 107, 157, 0.2),
        0 0 60px rgba(255, 107, 157, 0.3),
        0 0 100px rgba(199, 125, 255, 0.15);
}

.usecase-card-mobile:hover::before {
    opacity: 1;
}

.usecase-emoji {
    font-size: 3.5rem;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 15px rgba(255, 107, 157, 0.4));
    animation: emojiFloat 4s ease-in-out infinite;
    display: inline-block;
}

.usecase-card-mobile:nth-child(2) .usecase-emoji {
    animation-delay: -1s;
}

.usecase-card-mobile:nth-child(3) .usecase-emoji {
    animation-delay: -2s;
}

.usecase-card-mobile:nth-child(4) .usecase-emoji {
    animation-delay: -3s;
}

@keyframes emojiFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.usecase-card-mobile h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-pink);
}

.usecase-card-mobile p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Trust */
.trust-mobile {
    background: var(--bg-dark);
    padding: 100px 24px;
}

.trust-card-mobile {
    background: var(--bg-card);
    border: 2px solid rgba(255, 107, 157, 0.3);
    border-radius: 32px;
    padding: 48px 32px;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 60px rgba(255, 107, 157, 0.15);
    transition: all 0.5s ease;
    max-width: 600px;
    margin: 0 auto;
}

.trust-card-mobile:hover {
    border-color: rgba(255, 107, 157, 0.5);
    box-shadow: 0 0 80px rgba(255, 107, 157, 0.25);
    transform: translateY(-8px);
}

.trust-icon {
    font-size: 5rem;
    margin-bottom: 28px;
    filter: drop-shadow(0 0 30px rgba(255, 107, 157, 0.6));
    animation: trustIconPulse 4s ease-in-out infinite;
    display: inline-block;
}

@keyframes trustIconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 25px rgba(255, 107, 157, 0.6));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 40px rgba(255, 107, 157, 0.8));
    }
}

.trust-title-mobile {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-text-mobile {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-badge {
    display: inline-block;
    padding: 14px 20px;
    background: rgba(255, 107, 157, 0.08);
    border: 1px solid rgba(255, 107, 157, 0.3);
    border-radius: 16px;
    font-size: 0.875rem;
    color: var(--primary-pink);
    font-weight: 600;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 107, 157, 0.15);
    transform: translateX(4px);
}

/* CTA Final */
.cta-final-mobile {
    background: var(--bg-darker);
    padding: 120px 24px;
    text-align: center;
}

.cta-final-content {
    max-width: 500px;
    margin: 0 auto;
}

.cta-icon-large {
    font-size: 6rem;
    margin-bottom: 32px;
    animation: iconFloat 6s ease-in-out infinite, iconGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(255, 107, 157, 0.6));
    display: inline-block;
}

.cta-title-mobile {
    font-size: clamp(2.25rem, 8vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.cta-subtitle-mobile {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 48px;
    line-height: 1.8;
}

.cta-mega {
    padding: 24px 48px;
    font-size: 1.375rem;
    max-width: 100%;
    margin-bottom: 40px;
}

.pulse-button-mega {
    animation: buttonPulse 3s ease-in-out infinite;
}

.cta-features-mini {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.cta-features-mini span {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.cta-features-mini span:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

/* Footer */
.footer-mobile {
    padding: 48px 24px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bg-darker);
}

.footer-mobile p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Animations */
.fade-in-text {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-text.delay-1 {
    animation-delay: 0.2s;
}

.fade-in-text.delay-2 {
    animation-delay: 0.4s;
}

.fade-in-text.delay-3 {
    animation-delay: 0.6s;
}

.fade-in-text.delay-4 {
    animation-delay: 0.8s;
}

.fade-in-text.delay-5 {
    animation-delay: 1s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.bounce-in {
    opacity: 0;
    transform: scale(0.5) translateY(50px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bounce-in.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.bounce-in:nth-child(1) { transition-delay: 0.1s; }
.bounce-in:nth-child(2) { transition-delay: 0.2s; }
.bounce-in:nth-child(3) { transition-delay: 0.3s; }
.bounce-in:nth-child(4) { transition-delay: 0.4s; }

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Intersection Observer Classes */
.visible {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

/* Prevent horizontal scroll */
body, html {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Smooth scrolling for iOS */
@supports (-webkit-touch-callout: none) {
    html {
        -webkit-overflow-scrolling: touch;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-mobile {
        padding: 40px 20px 80px;
    }
    
    section {
        padding: 60px 20px;
    }
    
    .features-mobile,
    .testimonials-mobile,
    .usecases-mobile,
    .trust-mobile,
    .cta-final-mobile {
        padding: 60px 20px;
    }
    
    .usecases-grid-mobile {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    }
}

@media (max-width: 480px) {
    .hero-icon-pulse {
        font-size: 4.5rem;
    }
    
    .pulse-ring {
        width: 140px;
        height: 140px;
    }
    
    .feature-item-mobile {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .trust-card-mobile {
        padding: 32px 24px;
    }
}

/* Mockup Section Mobile - Copiado exatamente da fys */
.mockup-section-mobile {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--bg-darker) 0%, rgba(10, 10, 15, 0.95) 50%, var(--bg-darker) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    min-height: 500px;
}

.mockup-container-mobile {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.mockup-background-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.15) 0%, rgba(199, 125, 255, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    animation: backgroundPulse 8s ease-in-out infinite;
    z-index: 0;
}

.mockup-background-decoration::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    animation: backgroundPulse 6s ease-in-out infinite reverse;
}

.hero-mockup-mobile {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    z-index: 2;
}

.mockup-wrapper-mobile {
    position: relative;
    max-width: 200px;
    width: 100%;
    pointer-events: none;
    animation: mockupFloatMobile 6s ease-in-out infinite;
    transform-origin: center center;
    z-index: 2;
}

.mockup-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255, 107, 157, 0.2) 0%, rgba(199, 125, 255, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
    z-index: 0;
    filter: blur(30px);
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes mockupFloatMobile {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-10px) rotate(-1.5deg) scale(1.01);
    }
    50% {
        transform: translateY(-15px) rotate(0deg) scale(1.02);
    }
    75% {
        transform: translateY(-10px) rotate(1.5deg) scale(1.01);
    }
}

.mockup-wrapper-mobile * {
    pointer-events: auto;
}

.mockup-phone-mobile {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 107, 157, 0.2),
        0 0 120px rgba(199, 125, 255, 0.15),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 0 30px rgba(255, 107, 157, 0.3));
    pointer-events: none;
    max-width: 200px;
    display: block;
    transition: filter 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    animation: phoneGlow 3s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes phoneGlow {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(255, 107, 157, 0.3)) brightness(1);
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.5),
            0 0 60px rgba(255, 107, 157, 0.2),
            0 0 120px rgba(199, 125, 255, 0.15),
            inset 0 0 20px rgba(255, 255, 255, 0.05);
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(255, 107, 157, 0.5)) brightness(1.05);
        box-shadow: 
            0 25px 70px rgba(0, 0, 0, 0.6),
            0 0 80px rgba(255, 107, 157, 0.35),
            0 0 150px rgba(199, 125, 255, 0.25),
            inset 0 0 30px rgba(255, 255, 255, 0.08);
    }
}

.mockup-screen-mobile {
    position: absolute;
    top: 4.5%;
    left: 5.8%;
    width: 88.5%;
    height: 91%;
    border-radius: 25px;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0a0f 0%, #1a0f2e 50%, #0a0a0f 100%);
    z-index: 1;
    box-shadow: 
        inset 0 0 40px rgba(0, 0, 0, 0.6),
        inset 0 0 80px rgba(255, 107, 157, 0.08),
        inset 0 0 120px rgba(199, 125, 255, 0.05);
    transition: box-shadow 0.3s ease;
    animation: screenPulse 4s ease-in-out infinite;
    border: 1px solid rgba(255, 107, 157, 0.1);
    box-sizing: border-box;
}

@keyframes screenPulse {
    0%, 100% {
        box-shadow: 
            inset 0 0 40px rgba(0, 0, 0, 0.6),
            inset 0 0 80px rgba(255, 107, 157, 0.08),
            inset 0 0 120px rgba(199, 125, 255, 0.05);
        border-color: rgba(255, 107, 157, 0.1);
    }
    50% {
        box-shadow: 
            inset 0 0 40px rgba(0, 0, 0, 0.6),
            inset 0 0 100px rgba(255, 107, 157, 0.15),
            inset 0 0 150px rgba(199, 125, 255, 0.1);
        border-color: rgba(255, 107, 157, 0.2);
    }
}

.mockup-terminal-mobile {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 2;
    position: relative;
    pointer-events: auto;
    box-sizing: border-box;
}

/* Mockup Letter Styles (Mobile) - Copiado da fys */
.mockup-letter-container-mobile {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: transparent;
    padding: 6px 5px;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 107, 157, 0.3) transparent;
    position: relative;
    max-width: 100%;
    max-height: 100%;
}

.mockup-letter-container-mobile::-webkit-scrollbar {
    width: 3px;
}

.mockup-letter-container-mobile::-webkit-scrollbar-track {
    background: transparent;
}

.mockup-letter-container-mobile::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 157, 0.3);
    border-radius: 3px;
}

.mockup-letter-container-mobile::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 107, 157, 0.5);
}

.letter-photos-mobile {
    width: 100%;
    height: 80px;
    position: relative;
    margin-bottom: 6px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    background: #f0f0f0;
}

.letter-photo-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.letter-photo-mobile.active {
    opacity: 1;
}

.photo-indicators-mobile {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3px;
    z-index: 2;
}

.photo-indicator-mobile {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.photo-indicator-mobile.active {
    background: rgba(255, 255, 255, 1);
    width: 12px;
    border-radius: 2px;
}

.letter-header-mobile {
    text-align: center;
    margin-bottom: 6px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 107, 157, 0.3);
}

.letter-icon-mobile {
    font-size: 1rem;
    margin-bottom: 2px;
    animation: letterPulseMobile 2s ease-in-out infinite;
}

@keyframes letterPulseMobile {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.letter-to-mobile {
    font-size: 7px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2px;
    font-family: 'Inter', sans-serif;
}

.letter-title-mobile {
    font-size: 10px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1px;
    font-family: 'Inter', sans-serif;
}

.letter-date-mobile {
    font-size: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
}

.letter-content-mobile {
    flex: 1;
    font-family: 'Inter', sans-serif;
}

.letter-greeting-mobile {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
    font-weight: 600;
    text-align: center;
}

.letter-text-mobile {
    font-size: 7px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
    text-align: center;
    padding: 0 3px;
}

.letter-text-typing-mobile {
    display: inline;
}

.letter-text-cursor-mobile {
    display: inline-block;
    width: 1px;
    height: 10px;
    background: var(--primary-pink);
    margin-left: 1px;
    animation: blinkCursorMobile 1s infinite;
    vertical-align: middle;
}

@keyframes blinkCursorMobile {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.letter-signature-mobile {
    text-align: center;
    margin-top: 6px;
    padding-top: 5px;
    border-top: 1px solid rgba(255, 107, 157, 0.3);
}

.letter-love-mobile {
    font-size: 7px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2px;
}

.letter-name-mobile {
    font-size: 8px;
    font-weight: 600;
    color: var(--primary-pink);
    margin-bottom: 1px;
}

.letter-heart-mobile {
    font-size: 9px;
    animation: heartbeatMobile 1.5s ease-in-out infinite;
}

@keyframes heartbeatMobile {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.05); }
}

.letter-timer-mobile {
    margin-top: 5px;
    padding: 5px;
    background: rgba(255, 107, 157, 0.08);
    border-radius: 4px;
    border: 1px solid rgba(255, 107, 157, 0.2);
    text-align: center;
}

.timer-label-mobile {
    font-size: 6px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.timer-values-mobile {
    display: flex;
    justify-content: center;
    gap: 3px;
    flex-wrap: wrap;
}

.timer-item-mobile {
    text-align: center;
    min-width: 18px;
}

.timer-number-mobile {
    font-size: 8px;
    font-weight: 700;
    color: var(--primary-pink);
    display: block;
    font-variant-numeric: tabular-nums;
}

.timer-unit-mobile {
    font-size: 5px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-top: 1px;
}

.letter-audio-mobile {
    margin-top: 5px;
    padding: 4px;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(255, 107, 157, 0.3);
    position: relative;
    pointer-events: auto;
}

.letter-audio-mobile audio {
    display: none;
}

.audio-player-mobile {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px;
}

.audio-play-btn-mobile {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease;
    pointer-events: auto;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

.audio-play-btn-mobile:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 6px rgba(255, 107, 157, 0.5);
}

.audio-info-mobile {
    flex: 1;
    min-width: 0;
}

.audio-title-mobile {
    font-size: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 1px;
}

.audio-duration-mobile {
    font-size: 5px;
    color: rgba(255, 255, 255, 0.5);
}

.letter-status-mobile {
    margin-top: 5px;
    padding: 4px;
    background: rgba(255, 107, 157, 0.08);
    border-radius: 3px;
    border-left: 2px solid var(--primary-pink);
}

.status-item-mobile {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 6px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2px;
    opacity: 0;
    animation: fadeInStatusMobile 0.5s ease forwards;
}

@keyframes fadeInStatusMobile {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.status-check-mobile {
    color: #10b981;
    font-weight: 700;
}

.status-pending-mobile {
    color: #f59e0b;
}

.status-error-mobile {
    color: #ef4444;
}

.status-pink-mobile {
    color: var(--primary-pink);
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .mockup-section-mobile {
        padding: 40px 15px;
        min-height: 400px;
    }
    
    .mockup-container-mobile {
        max-width: 100%;
    }
    
    .hero-mockup-mobile {
        max-width: 200px;
        width: 100%;
    }
    
    .mockup-wrapper-mobile {
        max-width: 180px;
        width: 100%;
    }
    
    .mockup-phone-mobile {
        max-width: 180px;
        width: 100%;
        height: auto;
    }
    
    .mockup-screen-mobile {
        top: 4.5%;
        left: 5.8%;
        width: 88.5%;
        height: 91%;
        border-radius: 22px;
    }
    
    .mockup-terminal-mobile {
        border-radius: 22px;
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
    }
    
    .mockup-letter-container-mobile {
        padding: 4px 3px;
        max-width: 100%;
        max-height: 100%;
        font-size: 0.7em;
    }
    
    .letter-photos-mobile {
        height: 40px !important;
        margin-bottom: 4px !important;
    }
    
    .letter-header-mobile {
        margin-bottom: 4px !important;
        padding: 3px 0 !important;
    }
    
    .letter-icon-mobile {
        font-size: 10px !important;
        margin-bottom: 1px !important;
    }
    
    .letter-to-mobile {
        font-size: 6px !important;
        margin-bottom: 1px !important;
    }
    
    .letter-title-mobile {
        font-size: 9px !important;
        margin-bottom: 1px !important;
    }
    
    .letter-date-mobile {
        font-size: 5px !important;
    }
    
    .letter-timer-mobile {
        margin: 3px 0 !important;
        padding: 2px !important;
        font-size: 5px !important;
    }
    
    .letter-content-mobile {
        padding: 4px 0 !important;
        font-size: 6px !important;
    }
    
    .letter-text-mobile {
        font-size: 6px !important;
        line-height: 1.3 !important;
    }
    
    .mockup-background-decoration {
        width: 250px;
        height: 250px;
    }
    
    .mockup-glow-effect {
        width: 200px;
        height: 350px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .mockup-section-mobile {
        padding: 100px 30px;
        min-height: 550px;
    }
    
    .hero-mockup-mobile {
        max-width: 300px;
    }
    
    .mockup-wrapper-mobile {
        max-width: 260px;
    }
    
    .mockup-phone-mobile {
        max-width: 260px;
    }
}

@media (min-width: 769px) {
    .mockup-section-mobile {
        padding: 120px 40px;
        min-height: 600px;
    }
    
    .mockup-container-mobile {
        max-width: 500px;
    }
    
    .hero-mockup-mobile {
        max-width: 350px;
    }
    
    .mockup-wrapper-mobile {
        max-width: 320px;
    }
    
    .mockup-phone-mobile {
        max-width: 320px;
    }
    
    .mockup-background-decoration {
        width: 500px;
        height: 500px;
    }
    
    .mockup-glow-effect {
        width: 380px;
        height: 650px;
    }
}

