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

:root {
    --primary-color: #00ff84;
    --primary-dark: #00cc6a;
    --secondary-color: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --background: #0d0d0d;
    --card-background: #1a1a1a;
    --border-color: #333;
    --gradient-primary: linear-gradient(135deg, #00ff84 0%, #00cc6a 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    --glassmorphism: rgba(255, 255, 255, 0.05);
    --dynamic-hue: 0;
}

html {
    scroll-behavior: smooth;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* Esconde no mobile */
@media (max-width: 768px) {
  .user-avatar {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .logo-img {
    height: 50px; /* ou outro valor menor */
  }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body.loaded {
    animation: pageLoad 1s ease-out;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Dynamic Gradient Background with Parallax */
.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 300%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 132, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 132, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 40% 80%, rgba(0, 255, 132, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 60% 30%, rgba(0, 204, 106, 0.05) 0%, transparent 35%),
        linear-gradient(45deg, rgba(0, 255, 132, 0.02) 0%, transparent 50%, rgba(0, 204, 106, 0.03) 100%);
    animation: gradientFlow 25s ease-in-out infinite;
    filter: blur(0.5px);
}

/* Enhanced Floating Shapes with Complex Motion */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 132, 0.1) 0%, rgba(0, 204, 106, 0.05) 40%, transparent 70%);
    animation: complexFloat 30s ease-in-out infinite;
    filter: blur(1px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 250px;
    height: 250px;
    top: 55%;
    right: 5%;
    animation-delay: 8s;
}

.shape-3 {
    width: 500px;
    height: 500px;
    bottom: 5%;
    left: 15%;
    animation-delay: 16s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    top: 25%;
    right: 25%;
    animation-delay: 24s;
}

.shape-5 {
    width: 320px;
    height: 320px;
    top: 65%;
    left: 55%;
    animation-delay: 12s;
}

.shape-6 {
    width: 220px;
    height: 220px;
    bottom: 25%;
    right: 45%;
    animation-delay: 20s;
}

/* Flowing Wave Lines */
.wave-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.wave-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 132, 0.3), rgba(0, 204, 106, 0.2), transparent);
    animation: waveFlow 15s linear infinite;
    transform-origin: left center;
}

.wave-1 {
    top: 15%;
    animation-delay: 0s;
}

.wave-2 {
    top: 35%;
    animation-delay: 5s;
}

.wave-3 {
    top: 55%;
    animation-delay: 10s;
}

.wave-4 {
    top: 75%;
    animation-delay: 7.5s;
}

/* Digital Grid Pattern */
.digital-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 132, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 132, 0.02) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: gridShift 20s linear infinite;
    opacity: 0.5;
}

/* Enhanced Light Particles */
.light-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: enhancedParticleFloat 12s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(0, 255, 132, 0.6);
}

.particle-1 { top: 8%; left: 15%; animation-delay: 0s; }
.particle-2 { top: 25%; right: 12%; animation-delay: 2s; }
.particle-3 { bottom: 15%; left: 8%; animation-delay: 4s; }
.particle-4 { top: 65%; left: 55%; animation-delay: 6s; }
.particle-5 { bottom: 35%; right: 20%; animation-delay: 8s; }
.particle-6 { top: 45%; left: 75%; animation-delay: 10s; }
.particle-7 { bottom: 55%; left: 35%; animation-delay: 3s; }
.particle-8 { top: 75%; right: 35%; animation-delay: 9s; }
.particle-9 { top: 35%; left: 25%; animation-delay: 1s; }
.particle-10 { bottom: 25%; right: 60%; animation-delay: 7s; }

/* Orbital Rings */
.orbital-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.orbital-ring {
    position: absolute;
    border: 1px solid rgba(0, 255, 132, 0.08);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbitalRotation 40s linear infinite;
}

.ring-1 {
    width: 800px;
    height: 800px;
    animation-delay: 0s;
}

.ring-2 {
    width: 1200px;
    height: 1200px;
    animation-delay: 10s;
    animation-direction: reverse;
}

.ring-3 {
    width: 1600px;
    height: 1600px;
    animation-delay: 20s;
}

/* PREMIUM BUTTON SYSTEM */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 48px;
    white-space: nowrap;
    user-select: none;
    outline: none;
}

.btn:focus {
    outline: 2px solid rgba(0, 255, 132, 0.5);
    outline-offset: 2px;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Primary Button - Neon Green CTA */
.btn-primary {
    background: var(--gradient-primary);
    color: #000000;
    font-weight: 700;
    box-shadow: 0 0 0 rgba(0, 255, 132, 0);
}

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

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 255, 132, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

/* Secondary Button - Green Border */
.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 132, 0.3);
}

.btn-secondary:hover::before {
    opacity: 1;
}

/* Ghost Button - Minimal */
.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    text-transform: none;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

/* Button Sizes */
.btn-small {
    padding: 10px 20px;
    font-size: 14px;
    min-height: 40px;
    border-radius: 8px;
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
    min-height: 56px;
    border-radius: 14px;
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 12px;
}

.btn-icon.btn-small {
    width: 40px;
    height: 40px;
}

.btn-icon.btn-large {
    width: 56px;
    height: 56px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 14px;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    font-size: 20px;
    font-weight: 700;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 255, 132, 0.4);
}

/* Enhanced Animations */
@keyframes gradientFlow {
    0%, 100% {
        transform: translate(-20%, -20%) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(-25%, -15%) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-15%, -25%) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(-20%, -20%) rotate(270deg) scale(1.05);
    }
}

@keyframes complexFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-40px) translateX(20px) rotate(90deg) scale(1.2);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-80px) translateX(-10px) rotate(180deg) scale(0.8);
        opacity: 0.2;
    }
    75% {
        transform: translateY(-40px) translateX(-30px) rotate(270deg) scale(1.1);
        opacity: 0.4;
    }
}

@keyframes waveFlow {
    0% {
        transform: translateX(-100%) scaleY(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateX(0%) scaleY(1.5);
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) scaleY(1);
        opacity: 0;
    }
}

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

@keyframes enhancedParticleFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-60px) translateX(30px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translateY(-120px) translateX(-20px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-60px) translateX(-40px) scale(1.1);
        opacity: 0.8;
    }
}

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

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

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

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

@keyframes scaleInBounce {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

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

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Enhanced Animation Classes */
.slide-up {
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in {
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in-bounce {
    animation: scaleInBounce 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left {
    animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right {
    animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Alert Bar */
.alert-bar {
    background: var(--gradient-primary);
    padding: 12px 0;
    text-align: center;
    position: relative;
    z-index: 1000;
    animation: slideDown 0.6s ease;
    color: #000000;
    font-weight: 600;
    
}
@media (max-width: 768px) {
  .alert-bar {
    display: none !important;
  }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.alert-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 26, 0.95);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 132, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(0, 255, 132, 0.2);
    padding: 12px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-brand .logo:hover {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    font-size: 15px;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    transition: all 0.3s ease;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    padding: 100px 0 120px;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 255, 132, 0.08) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 32px;
    animation: fadeInLeft 1s ease;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeInLeft 1s ease 0.2s both;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 600;
    animation: fadeInLeft 1s ease 0.4s both;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.6;
    animation: fadeInLeft 1s ease 0.6s both;
}

.hero-left .btn-primary {
    animation: fadeInLeft 1s ease 0.8s both;
}

.hero-right {
    position: relative;
    animation: fadeInRight 1s ease 0.4s both;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

.user-avatar {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.user-avatar:hover {
    transform: scale(1.02);
}

.floating-box {
    position: absolute;
    background: var(--glassmorphism);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    animation: float 5s ease-in-out infinite;
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    z-index: 2;
}

.floating-box:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 255, 132, 0.2);
}

.floating-box.box-1 {
    top: 20px;
    left: -60px;
    animation-delay: 0s;
}

.floating-box.box-2 {
    top: 60px;
    right: -70px;
    animation-delay: 1s;
}

.floating-box.box-3 {
    bottom: 80px;
    left: -80px;
    animation-delay: 2s;
}

.floating-box.box-4 {
    bottom: 50px;
    right: -60px;
    animation-delay: 3s;
}

.floating-box.box-5 {
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

/* Features Carousel */
.features-carousel {
    padding: 80px 0;
    background: var(--secondary-color);
    overflow: hidden;
    position: relative;
}

.features-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--secondary-color) 0%, transparent 15%, transparent 85%, var(--secondary-color) 100%);
    z-index: 2;
    pointer-events: none;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 24px;
    animation: slideInfinite 40s linear infinite;
    width: fit-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.feature-pill {
    background: var(--gradient-primary);
    color: #000000;
    padding: 16px 28px;
    border-radius: 25px;
    font-weight: 600;
    white-space: nowrap;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

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

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

.feature-pill:hover {
    transform: scale(1.05);
}

/* Ecosystem Section */
.ecosystem {
    padding: 120px 0;
    background: var(--background);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-primary);
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 80px;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.2s;
}

.ecosystem-content {
    display: grid;
    grid-template-columns: 1fr 300px 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

.ecosystem-left, .ecosystem-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-box {
    background: var(--glassmorphism);
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 20px 24px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

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

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

.feature-box:hover {
    background: rgba(0, 255, 132, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 255, 132, 0.2);
}

.ecosystem-cta {
    text-align: center;
    font-size: 10px; /* ou 14px, ajuste conforme necessário */
}
.phone-mockup {
    width: 240px;
    height: 480px;
    background: var(--glassmorphism);
    border-radius: 30px;
    padding: 24px;
    margin: 0 auto;
    border: 2px solid rgba(0, 255, 132, 0.2);
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.phone-mockup:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--background);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 132, 0.1);
}

.app-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.interface-header {
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.interface-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.interface-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.content-bar {
    height: 24px;
    background: var(--border-color);
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 255, 132, 0.1);
}

.content-bar.short {
    width: 60%;
}

.content-bar.medium {
    width: 80%;
}

.interface-buttons {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.btn-mock {
    flex: 1;
    height: 40px;
    border-radius: 8px;
}

.btn-mock.primary {
    background: var(--gradient-primary);
}

.btn-mock.secondary {
    background: var(--border-color);
}

/* Numbers Banner */
.numbers-banner {
    background: var(--gradient-primary);
    padding: 80px 0;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
    color: #000000;
}

.numbers-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(0,0,0,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(0,0,0,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(0,0,0,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.number-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.number-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}

.number {
    font-size: 48px;
    font-weight: 800;
    display: block;
    position: relative;
    z-index: 2;
}

.number-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.number-label {
    font-size: 16px;
    opacity: 0.8;
    font-weight: 500;
}

/* Tabbed Features */
.tabbed-features {
    padding: 120px 0;
    background: var(--secondary-color);
    margin-top: 80px;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 80px;
    background: var(--glassmorphism);
    padding: 8px;
    border-radius: 16px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 132, 0.1);
}

.tab-btn {
    background: transparent;
    color: var(--text-secondary);
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

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

.tab-btn:hover::before {
    left: 100%;
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: #000000;
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.tab-pane.active {
    display: block;
}

.tab-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 80px;
    align-items: center;
}

.checklist {
    list-style: none;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 18px;
    animation: fadeInLeft 0.6s ease;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.checklist li:hover {
    transform: translateX(6px);
    color: var(--primary-color);
}

.illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 5s ease-in-out infinite;
}

/* Value Proposition */
.value-proposition {
    padding: 120px 0;
    background: var(--background);
}

.value-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.value-left h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-left p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.6;
}

.person-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.person-avatar {
    position: relative;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.person-avatar:hover {
    transform: scale(1.02);
}

.floating-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--glassmorphism);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 5s ease-in-out infinite;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.floating-icon:hover {
    transform: scale(1.05);
}

.floating-icon.icon-1 {
    top: 30px;
    left: 30px;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 60px;
    right: 20px;
    animation-delay: 1s;
}

.floating-icon.icon-3 {
    bottom: 70px;
    left: 20px;
    animation-delay: 2s;
}

.floating-icon.icon-4 {
    bottom: 30px;
    right: 40px;
    animation-delay: 3s;
}

.concentric-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.ring {
    position: absolute;
    border: 1px solid rgba(0, 255, 132, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: expandRing 5s ease-in-out infinite;
}

.ring-1 {
    width: 280px;
    height: 280px;
    animation-delay: 0s;
}

.ring-2 {
    width: 380px;
    height: 380px;
    animation-delay: 1.5s;
}

.ring-3 {
    width: 480px;
    height: 480px;
    animation-delay: 3s;
}

@keyframes expandRing {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.1;
    }
}

/* Three Steps */
.three-steps {
    padding: 120px 0;
    background: var(--secondary-color);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
    margin-bottom: 60px;
}

.step-card {
    background: var(--glassmorphism);
    border: 1px solid transparent;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 132, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.step-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 16px 40px rgba(0, 255, 132, 0.2);
}

.step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-primary);
    color: #000000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.1);
}

.step-icon {
    margin-bottom: 32px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.step-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 16px;
}

.steps-cta {
    text-align: center;
}

/* Why Choose */
.why-choose {
    padding: 120px 0;
    background: var(--background);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.why-card {
    background: var(--glassmorphism);
    border: 1px solid transparent;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 132, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.why-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 16px 40px rgba(0, 255, 132, 0.2);
}

.why-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.why-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
    font-size: 16px;
}

.checkmark {
    position: absolute;
    top: 24px;
    right: 24px;
    animation: checkmarkPop 0.6s ease 0.3s both;
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.why-cta {
    text-align: center;
}

/* Pricing */
.pricing {
    padding: 120px 0;
    background: var(--secondary-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
}

.pricing-card {
    background: white;
    color: var(--secondary-color);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 132, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    background: var(--gradient-primary);
    color: #000000;
    transform: scale(1.05) translateY(-20px);
    box-shadow: 0 16px 40px rgba(0, 255, 132, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-32px);
    box-shadow: 0 24px 60px rgba(0, 255, 132, 0.4);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glassmorphism);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
}

.price {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
}

.price-detail {
    font-size: 16px;
    opacity: 0.7;
    margin-bottom: 32px;
}

.price-options {
    margin-bottom: 32px;
}

.price-option {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.8;
    padding: 4px 12px;
    background: var(--glassmorphism);
    border-radius: 12px;
    display: inline-block;
    backdrop-filter: blur(15px);
}

.pricing-features {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.pricing-features li:hover {
    transform: translateX(4px);
}

/* Blog Section */
.blog {
    padding: 120px 0;
    background: var(--background);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.blog-card {
    background: var(--glassmorphism);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 132, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 255, 132, 0.2);
    border-color: var(--primary-color);
}

.blog-image {
    overflow: hidden;
}

.blog-image img {
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 24px;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.blog-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
    font-size: 15px;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 15px;
}

.blog-link:hover {
    transform: translateX(4px);
}

/* FAQ */
.faq {
    padding: 120px 0;
    background: var(--background);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--glassmorphism);
    backdrop-filter: blur(15px);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 255, 132, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.faq-question:hover::before {
    left: 100%;
}

.faq-question span {
    font-weight: 600;
    font-size: 18px;
    color: var(--text-primary);
}

.faq-toggle {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 16px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--background);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 32px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 16px;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-brand .logo:hover {
    transform: scale(1.02);
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-size: 16px;
    padding: 4px 0;
}

.footer-column a:hover {
    color: var(--primary-color);
    transform: translateX(6px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .ecosystem-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .value-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .tab-layout {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 20px;
        gap: 24px;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-actions {
        gap: 12px;
    }
    
    .nav-actions .btn {
        padding: 10px 16px;
        font-size: 14px;
        min-height: 40px;
    }
    
    .hero {
        padding: 80px 0 100px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .section-subtitle {
        font-size: 18px;
        margin-bottom: 60px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .alert-bar .container {
        flex-direction: column;
        gap: 16px;
    }
    
    .tabs {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .number {
        font-size: 36px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .floating-box {
        position: static;
        display: inline-block;
        margin: 8px;
        animation: none;
    }
    
    .floating-icon {
        position: static;
        display: inline-block;
        margin: 12px;
        animation: none;
        width: 50px;
        height: 50px;
    }
    
    .concentric-rings {
        display: none;
    }
    
    .feature-pill {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .carousel-track {
        gap: 16px;
    }
    
    .value-left h2 {
        font-size: 28px;
    }
    
    .value-left p {
        font-size: 16px;
    }
    
    .step-card h3,
    .why-card h3 {
        font-size: 20px;
    }
    
    .price {
        font-size: 36px;
    }
    
    .faq-question span {
        font-size: 16px;
    }
    
    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .btn-small {
        width: auto;
        max-width: none;
    }
    
    .btn-icon {
        width: 40px;
        height: 40px;
    }
}
.hero-logo.green-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border: 1px solid #00ff85; /* verde neon */
    border-radius: 30px;
    color: #00ff85;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-logo.green-outline svg {
    fill: #00ff85;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .value-left h2 {
        font-size: 24px;
    }
    
    .numbers-banner {
        padding: 60px 0;
    }
    
    .number {
        font-size: 28px;
    }
    
    .step-card,
    .why-card,
    .pricing-card {
        padding: 32px 24px;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
        padding: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .floating-box {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
        min-height: 44px;
    }
    
    .btn-large {
        padding: 16px 28px;
        font-size: 13px;
        min-height: 52px;
    }
    
}