/* LANDING CSS - APP INTERDIMENSIONAL CIBERNÉTICO */

/* Variáveis CSS para tema neon azul + rosa deep */
:root {
    --neo-primary: #ff0080;
    --neo-secondary: #00d4ff;
    --neo-accent: #8a2be2;
    --neo-cyber: #00ffff;
    --neo-plasma: #ff1493;
    --neo-dark: #0a0a0a;
    --neo-darker: #050505;
    --neo-deep: #001122;
    --neo-glass: rgba(0, 212, 255, 0.1);
    --neo-glow: 0 0 30px rgba(0, 212, 255, 0.6);
    --neo-text-glow: 0 0 15px rgba(255, 255, 255, 0.9);
    --neo-border: rgba(0, 212, 255, 0.3);
}

/* Reset e base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}





/* Home Indicator iOS */
.ios-home-indicator {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 134px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    z-index: 1001;
}

/* Safe Area Support */
.safe-area-inset {
    padding-top: env(safe-area-inset-top, 44px);
    padding-bottom: env(safe-area-inset-bottom, 34px);
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
}

/* iOS Gestures & Animations */
@keyframes pull-to-refresh {
    0% { transform: translateY(-100px) rotate(0deg); opacity: 0; }
    50% { transform: translateY(0px) rotate(180deg); opacity: 1; }
    100% { transform: translateY(100px) rotate(360deg); opacity: 0; }
}

.pull-indicator {
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
}

.pull-indicator::before {
    content: '↓';
    color: white;
    font-size: 20px;
    animation: pull-to-refresh 2s ease-in-out infinite;
}


/* iOS-like Button Animations */
.btn {
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-tap-highlight-color: transparent;
    border-radius: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: scale(0.96);
    transition: all 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary {
    background: linear-gradient(135deg, #ff0080, #00d4ff);
    border: none;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.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.5s;
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
}

/* iOS-like Card Animations */
.home-card {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-tap-highlight-color: transparent;
}

.home-card:active {
    transform: scale(0.98) translateY(2px);
    transition: all 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body.page-home {
    background: linear-gradient(135deg, var(--neo-deep) 0%, var(--neo-darker) 25%, var(--neo-dark) 50%, #001a33 75%, #003366 100%);
    color: #ffffff;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Fundo cibernético com glow animado */
body.page-home::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(138, 43, 226, 0.08) 0%, transparent 50%);
    z-index: -1;
    animation: cyber-glow 20s ease-in-out infinite;
}

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



/* Header PWA Like iOS com Glassmorphism Real */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-top: 164px; /* 44px status bar + 80px header + 40px extra */
    z-index: 2;
}

/* Container Glassmorphism que sobrepõe 50% da logo */
.hero-glass-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92%;
    max-width: 850px;
    background: rgba(15, 15, 15, 0.25);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 3.5rem 2.5rem;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 60px rgba(255, 0, 122, 0.1);
    z-index: 3;
    animation: glass-float 6s ease-in-out infinite;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.hero-glass-container:active {
    transform: translate(-50%, -50%) scale(0.98);
    transition: all 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-glass-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 28px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    z-index: -1;
}

.glass-content {
    text-align: center;
    color: white;
}

.glass-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    background: linear-gradient(135deg, #ffffff, #00d4ff, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.glass-content .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.01em;
}

@keyframes glass-float {
    0%, 100% { 
        transform: translate(-50%, -50%) translateY(0px);
        box-shadow: 
            0 12px 40px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.03),
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            0 0 60px rgba(255, 0, 122, 0.1);
    }
    50% { 
        transform: translate(-50%, -50%) translateY(-8px);
        box-shadow: 
            0 16px 50px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(255, 255, 255, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.12),
            0 0 80px rgba(255, 0, 122, 0.15);
    }
}

/* Header fixo estilo iOS */
.neo-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 17, 34, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--neo-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--neo-cyber), var(--neo-plasma));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--neo-glow);
    animation: logo-pulse 3s ease-in-out infinite alternate;
}

@keyframes logo-pulse {
    0% { transform: scale(1); box-shadow: var(--neo-glow); }
    100% { transform: scale(1.05); box-shadow: 0 0 40px rgba(0, 212, 255, 0.8); }
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neo-cyber), var(--neo-plasma));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--neo-text-glow);
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.status-panel {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--neo-border);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: var(--neo-cyber);
    backdrop-filter: blur(10px);
}

.activate-flow-btn {
    background: linear-gradient(135deg, var(--neo-cyber), var(--neo-plasma));
    color: white;
    border: none;
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--neo-glow);
    animation: plasma-pulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

/* 🔥 CSS DESTRUIDOR PRO HEADER INTERDIMENSIONAL */
.glass-header {
    backdrop-filter: blur(12px) !important;
    background: rgba(15, 15, 15, 0.6) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 999 !important;
}

.animated-logo {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #fff !important;
    font-weight: bold !important;
    font-size: 1.2rem !important;
    text-shadow: 0 0 10px #ff00cc !important;
}

.animated-logo span {
    color: #00ffff !important;
    text-shadow: 0 0 8px #00ffff !important;
}

.glow-chip {
    background: linear-gradient(90deg, #ff0066, #ff5400) !important;
    color: white !important;
    padding: 4px 12px !important;
    border-radius: 12px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    box-shadow: 0 0 8px #ff0066 !important;
}

.plasma-btn {
    background: linear-gradient(90deg, #ff00cc, #3333ff) !important;
    color: white !important;
    padding: 8px 16px !important;
    border: none !important;
    border-radius: 10px !important;
    font-weight: bold !important;
    box-shadow: 0 0 12px rgba(255, 0, 204, 0.7) !important;
    transition: all 0.3s ease !important;
}

.plasma-btn:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 0 16px rgba(255, 0, 204, 0.9) !important;
}

@keyframes plasma-pulse {
    0%, 100% { box-shadow: var(--neo-glow); }
    50% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.8), 0 0 60px rgba(255, 20, 147, 0.6); }
}

.activate-flow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.9);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 0, 122, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 3;
}

/* Logo com efeitos neon */
.hero-logo {
    margin-bottom: 3rem;
    position: relative;
}

.main-logo {
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(255, 0, 122, 0.7));
    transition: all 0.3s ease;
    position: relative;
}

.main-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 0, 122, 0.3) 0%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
    animation: logo-pulse 3s ease-in-out infinite alternate;
}

@keyframes logo-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 1; }
}

/* Títulos com gradiente neon */
.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--neo-cyber), var(--neo-plasma), var(--neo-accent));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 8s ease infinite;
    text-shadow: var(--neo-text-glow);
    letter-spacing: -0.02em;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Botões com efeitos neon */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--neo-cyber), var(--neo-plasma));
    color: white;
    border: 2px solid transparent;
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.8),
        0 0 50px rgba(255, 20, 147, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(0, 212, 255, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(255, 0, 122, 0.8);
}

.btn-secondary {
    background: transparent;
    color: var(--neo-secondary);
    border: 2px solid var(--neo-secondary);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.btn-secondary:hover {
    background: var(--neo-secondary);
    color: var(--neo-dark);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
}

/* Cards com glassmorphism */
.home-navigation-cards {
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
}

/* Glass Cards - ESTILO GENTE GRANDE */
.glass-card {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(0, 212, 255, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(0, 212, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.1) 0%, 
        rgba(255, 20, 147, 0.05) 50%, 
        rgba(138, 43, 226, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neo-cyber), var(--neo-plasma), var(--neo-accent));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(0, 212, 255, 0.3);
}

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

.glass-card:hover::after {
    opacity: 0.3;
}

/* Painel de status glassmorphism */
.glass-panel {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(0, 17, 34, 0.6);
    border: 1px solid var(--neo-border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(90deg, var(--neo-cyber), var(--neo-plasma));
    opacity: 0.8;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 122, 0.1), rgba(0, 212, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 0, 122, 0.4);
}

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

.home-navigation-container {
    max-width: 1200px;
    margin: 0 auto;
}

.home-navigation-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--neo-primary), var(--neo-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.home-card {
    /* Aplicando glassmorphism REAL - INTERDIMENSIONAL */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(0, 212, 255, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(0, 212, 255, 0.1);
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.home-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 122, 0.1), rgba(0, 212, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 0, 122, 0.3);
}

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

.home-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--neo-primary), var(--neo-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 0 20px rgba(255, 0, 122, 0.5);
}

.home-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--neo-secondary);
}

.home-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.home-card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--neo-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-card-action:hover {
    color: var(--neo-secondary);
    transform: translateX(5px);
}

/* Cards clicáveis */
.home-card-action .card-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.home-card-action .card-link:hover {
    color: #ff007a;
    transform: translateX(5px);
}

.home-card:hover .home-card-action .card-link {
    color: #ff007a;
}

/* Modal Blockchain */
.blockchain-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 1.5rem;
}

.modal-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.modal-features h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.modal-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.modal-features li {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-features li:before {
    content: '✓';
    color: #00ff88;
    margin-right: 0.5rem;
    font-weight: bold;
}

.modal-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.modal-footer .btn {
    background: linear-gradient(45deg, #ff007a, #00d4ff);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.modal-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 0, 122, 0.3);
}

/* Mensagens temporárias */
.temporary-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    max-width: 300px;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.temporary-message.show {
    transform: translateX(0);
}

.message-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.message-content p {
    margin: 0;
    color: #ffffff;
    font-size: 0.9rem;
}

.close-message {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-message:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* Responsividade iOS Nativa */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .status-panel {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .activate-flow-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 1rem;
        padding-top: 100px;
    }
    
    .hero-glass-container {
        width: 96%;
        padding: 2.5rem 1.8rem;
        border-radius: 24px;
        max-width: 95vw;
    }
    
    .glass-content h1 {
        font-size: 2.4rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    .glass-content .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 0.5rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-buttons {
        gap: 1.2rem;
    }
    
    .btn {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    .home-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .home-card {
        padding: 1.5rem;
    }
}

/* iPhone 12+ específico */
@media (max-width: 390px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .activate-flow-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}
