        /* ========================================
           CSS Variables - Design System
        ======================================== */
        :root {
            --primary: #c2185b;
            --primary-dark: #9c1349;
            --accent: #ff4da6;
            --accent-light: #ffb3d9;
            --bg: #fefefe;
            --bg-alt: #fff5f9;
            --bg-dark: #1a1a2e;
            --text: #2d2d2d;
            --text-light: #555;
            --muted: #888;
            --border: #eee;
            --shadow: rgba(194, 24, 91, 0.1);
            --shadow-strong: rgba(194, 24, 91, 0.2);
            --radius: 12px;
            --radius-lg: 20px;
            --radius-pill: 50px;
            --transition: 0.3s ease;
        }
        
        /* ========================================
           Reset & Base Styles
        ======================================== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            height: 100%;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            color: var(--text);
            background: var(--bg);
            line-height: 1.6;
            min-height: 100%;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }
        
        ul {
            list-style: none;
        }
        
        /* ========================================
           Utilities
        ======================================== */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            box-sizing: border-box; 
        }
  .ganhos-content > * {
    min-width: 0;
}
      
        .section {
            padding: 80px 0;
        }
        
        .section-alt {
            background: var(--bg-alt);
        }
        
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 16px;
            color: var(--text);
        }
        
        .section-subtitle {
            text-align: center;
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 48px;
        }
        
        /* ========================================
           Buttons
        ======================================== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: var(--radius-pill);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: var(--transition);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            box-shadow: 0 4px 15px var(--shadow-strong);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px var(--shadow-strong);
        }
        
        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-secondary:hover {
            background: var(--bg-alt);
        }
        
        .btn-small {
            padding: 10px 20px;
            font-size: 0.9rem;
        }
        
        /* ========================================
           Header & Navigation
        ======================================== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px var(--shadow);
            z-index: 1000;
        }
        
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-brand {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.1;
        }
        
        .logo-tagline {
            font-size: 0.7rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .nav {
            display: flex;
            align-items: center;
            gap: 32px;
        }
        
        .nav-links {
            display: flex;
            gap: 28px;
        }
        
        .nav-link {
            color: var(--text);
            font-weight: 500;
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .nav-actions {
            display: flex;
            gap: 12px;
        }
        
        .nav-login {
            padding: 10px 20px;
            color: var(--primary);
            font-weight: 600;
        }
        
        .nav-login:hover {
            color: var(--primary-dark);
        }
        
        /* Mobile Menu Button */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }
        
        .menu-toggle span {
            width: 24px;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }
        
        /* Mobile Navigation Panel */
.mobile-nav {
  display: block;              /* <-- MUITO IMPORTANTE */
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: white;
  padding: 20px;
  box-shadow: 0 10px 30px var(--shadow);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;        /* <-- impede clique quando fechado */
  transition: max-height 0.3s ease, opacity 0.3s ease;
  z-index: 999;
}

        
html.mobile-open .mobile-nav {
  max-height: 500px;
  opacity: 1;
  pointer-events: auto;        /* <-- libera clique quando aberto */
}

        
        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 20px;
        }
        
        .mobile-nav-link {
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            font-weight: 500;
        }
        
        .mobile-nav-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        /* ========================================
           Hero Section
        ======================================== */
        .hero {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
        }
        
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: white;
            padding: 8px 16px;
            border-radius: var(--radius-pill);
            font-size: 0.9rem;
            color: var(--primary);
            font-weight: 500;
            box-shadow: 0 2px 10px var(--shadow);
            margin-bottom: 24px;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--text);
        }
        
        .hero-title span {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-lead {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 32px;
            line-height: 1.7;
        }
        
        .hero-ctas {
            display: flex;
            gap: 16px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }
        
        .hero-features {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .hero-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            color: var(--text-light);
        }
        
        .hero-feature-icon {
            width: 20px;
            height: 20px;
            background: var(--accent-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
        }
        
        /* Hero Card */
        .hero-card {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 20px 60px var(--shadow-strong);
        }
        
        .hero-image {
            width: 100%;
            height: 350px;
            object-fit: cover;
            background: linear-gradient(135deg, var(--accent-light), var(--bg-alt));
        }
        
        .hero-pills {
            display: flex;
            gap: 12px;
            padding: 20px;
            flex-wrap: wrap;
        }
        
        .hero-pill {
            flex: 1;
            min-width: 140px;
            background: var(--bg-alt);
            padding: 14px 16px;
            border-radius: var(--radius);
            text-align: center;
        }
        
        .hero-pill-title {
            font-size: 0.8rem;
            color: var(--muted);
            margin-bottom: 4px;
        }
        
        .hero-pill-value {
            font-weight: 700;
            color: var(--primary);
        }
        
        /* ========================================
           Como Funciona Section
        ======================================== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .feature-card {
            background: white;
            padding: 36px 28px;
            border-radius: var(--radius-lg);
            text-align: center;
            box-shadow: 0 4px 20px var(--shadow);
            transition: var(--transition);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 40px var(--shadow-strong);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent-light), var(--bg-alt));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }
        
        .feature-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text);
        }
        
        .feature-text {
            color: var(--text-light);
            font-size: 0.95rem;
        }
        
        /* ========================================
           Mundos Section
        ======================================== */
        .mundos-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .mundo-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 32px;
            box-shadow: 0 4px 20px var(--shadow);
            border-top: 4px solid;
            transition: var(--transition);
        }
        
        .mundo-card:hover {
            transform: translateY(-5px);
        }
        
        .mundo-card.azul {
            border-color: #2196f3;
        }
        
        .mundo-card.colorido {
            border-image: linear-gradient(90deg, #ff4da6, #ffeb3b, #4caf50, #2196f3) 1;
        }
        
        .mundo-card.rosa {
            border-color: var(--accent);
        }
        
        .mundo-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }
        
        .mundo-emoji {
            font-size: 2rem;
        }
        
        .mundo-title {
            font-size: 1.3rem;
            font-weight: 700;
        }
        
        .mundo-subtitle {
            color: var(--text-light);
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        
        .mundo-list {
            margin-bottom: 24px;
        }
        
        .mundo-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: var(--text-light);
        }
        
        .mundo-list li::before {
            content: '✓';
            color: var(--primary);
            font-weight: bold;
        }
        
        .mundo-actions {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        /* ========================================
           Planos Section
        ======================================== */
        .planos-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 30px;
        }
        
        .plano-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 28px;
            box-shadow: 0 4px 20px var(--shadow);
            position: relative;
            transition: var(--transition);
        }
        
        .plano-card:hover {
            transform: translateY(-5px);
        }
        
        .plano-card.popular {
            border: 2px solid var(--primary);
            transform: scale(1.05);
        }
        
        .plano-card.popular:hover {
            transform: scale(1.08);
        }
        
        .plano-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            padding: 6px 16px;
            border-radius: var(--radius-pill);
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        .plano-name {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text);
        }
        
        .plano-price {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 4px;
        }
        
        .plano-price span {
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--muted);
        }
        
        .plano-desc {
            color: var(--text-light);
            font-size: 0.85rem;
            margin-bottom: 20px;
        }
        
        .plano-features {
            margin-bottom: 24px;
        }
        
        .plano-features li {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 0;
            font-size: 0.9rem;
            color: var(--text-light);
            border-bottom: 1px solid var(--border);
        }
        
        .plano-features li:last-child {
            border-bottom: none;
        }
        
        .plano-features li::before {
            content: '✓';
            color: var(--accent);
            font-weight: bold;
        }
        
        /* Premium Full Width Card */
        .plano-premium {
            background: linear-gradient(135deg, var(--bg-dark), #2a2a4a);
            color: white;
            padding: 40px;
            border-radius: var(--radius-lg);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .premium-content h3 {
            font-size: 1.8rem;
            margin-bottom: 12px;
        }
        
        .premium-content p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
        }
        
        .premium-price {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent);
            margin-bottom: 8px;
        }
        
        .premium-highlight {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 77, 166, 0.2);
            padding: 10px 20px;
            border-radius: var(--radius-pill);
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .premium-features {
            display: grid;
            gap: 12px;
        }
        
        .premium-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .premium-features li::before {
            content: '⭐';
        }
        
        .transparencia {
            text-align: center;
            margin-top: 40px;
            padding: 24px;
            background: var(--bg-alt);
            border-radius: var(--radius);
        }
        
        .transparencia h4 {
            color: var(--primary);
            margin-bottom: 8px;
        }
        
        .transparencia p {
            color: var(--text-light);
            font-size: 0.95rem;
        }
        
        /* ========================================
           CTA Section
        ======================================== */
        .cta-section {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 16px;
        }
        
        .cta-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            margin-bottom: 32px;
        }
        
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .cta-buttons .btn-primary {
            background: white;
            color: var(--primary);
        }
        
        .cta-buttons .btn-secondary {
            background: transparent;
            border-color: white;
            color: white;
        }
        
        .cta-buttons .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        /* ========================================
           Ganhos Section
        ======================================== */
.ganhos-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;           /* reduz de 60 para 40 */
    align-items: start;
    width: 100%;
    max-width: 100%;
}

        
        .ganhos-intro h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: var(--primary);
        }
        
        .ganhos-intro p {
            color: var(--text-light);
            margin-bottom: 24px;
        }
        
        .ganhos-steps {
            counter-reset: step;
        }
        
        .ganhos-step {
            display: flex;
            gap: 16px;
            margin-bottom: 20px;
            align-items: flex-start;
        }
        
        .step-number {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
        }
        
        .step-text {
            padding-top: 6px;
            color: var(--text-light);
        }
        
        /* Ganhos Tables */
        .ganhos-tables {
            background: white;
            border-radius: var(--radius-lg);
            padding: 32px;
            box-shadow: 0 4px 20px var(--shadow);
        }
        
        .ganhos-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 24px;
        }
        
        .ganhos-table th,
        .ganhos-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }
        
        .ganhos-table th {
            background: var(--bg-alt);
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .ganhos-table td {
            color: var(--text-light);
            font-size: 0.95rem;
        }
        
        .ganhos-table .highlight {
            color: var(--primary);
            font-weight: 700;
        }
        
        .kpi-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        
        .kpi-card {
            background: var(--bg-alt);
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
        }
        
        .kpi-value {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--primary);
        }
        
        .kpi-label {
            font-size: 0.8rem;
            color: var(--muted);
            margin-top: 4px;
        }
        
        /* ========================================
           PWA Install Banner
        ======================================== */
        .pwa-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            padding: 16px 20px;
            box-shadow: 0 -4px 20px var(--shadow-strong);
            display: none;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            z-index: 999;
        }
        
        .pwa-banner.visible {
            display: flex;
        }
        
        .pwa-text {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .pwa-text span {
            font-weight: 500;
        }
        
        .pwa-actions {
            display: flex;
            gap: 12px;
        }
        
        .pwa-close {
            background: none;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            color: var(--muted);
            padding: 8px;
        }
        
        /* ========================================
           Footer
        ======================================== */
        .footer {
            background: var(--bg-dark);
            color: white;
            padding: 60px 0 0;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
        }
        
        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            margin-top: 16px;
            line-height: 1.7;
        }
        
        .footer-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--accent);
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .footer-links a:hover {
            color: var(--accent);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }
        
        .footer-copy {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }
        
        .footer-info {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
        }
        
        /* ========================================
           Responsive Design
        ======================================== */
        @media (max-width: 1024px) {
            .planos-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .plano-card.popular {
                transform: scale(1);
            }
            
            .plano-premium {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 900px) {
            .nav-links,
            .nav-actions {
                display: none;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            .mobile-nav {
                display: block;
            }
            
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .features-grid,
            .mundos-grid {
                grid-template-columns: 1fr;
            }
            
            .ganhos-content {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }
 @media (max-width: 900px) {
  .nav { display: none; }      /* <-- isso elimina o "vai pro login" */
  .menu-toggle { display: flex; }
}
       
        @media (max-width: 600px) {
            .section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .hero {
                padding: 100px 0 60px;
            }
            
            .hero-title {
                font-size: 1.9rem;
            }
            
            .hero-ctas {
                flex-direction: column;
            }
            
            .planos-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
            
            .kpi-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .pwa-banner {
                flex-direction: column;
                text-align: center;
            }
        }

 /* =========================
   UAZIM Play CTA (isolado)
========================= */
.uazim-play-cta{
  padding: 70px 0;
  background: linear-gradient(135deg, var(--bg-alt) 0%, #ffffff 100%);
}

.uazim-play-card{
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 26px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px var(--shadow-strong);
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.uazim-play-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(600px 240px at 10% 20%, rgba(255,77,166,.16), transparent 60%),
    radial-gradient(600px 240px at 90% 20%, rgba(194,24,91,.14), transparent 60%);
  pointer-events:none;
}

.uazim-play-left{ position: relative; z-index: 1; }

.uazim-play-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--bg-alt);
  color: var(--primary);
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 12px;
}

.uazim-play-title{
  font-size: 2rem;
  line-height: 1.15;
  margin: 0 0 10px;
  color: var(--text);
  letter-spacing: -0.2px;
}

.uazim-play-subtitle{
  margin: 0 0 16px;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 60ch;
}

.uazim-play-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.uazim-play-note{
  margin-top: 14px;
  font-size: .95rem;
  color: var(--muted);
  background: var(--bg-alt);
  padding: 10px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: inline-block;
}

/* mock */
.uazim-play-right{ position: relative; z-index: 1; display:flex; justify-content:center; }

.uazim-phone{
  width: 220px;
  height: 420px;
  border-radius: 34px;
  background: linear-gradient(180deg, #0f0f18, #1c1c2a);
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
  padding: 12px;
}

.uazim-phone-notch{
  height: 18px;
  width: 110px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  margin: 8px auto 14px;
}

.uazim-phone-screen{
  height: calc(100% - 40px);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,77,166,.20), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.10);
  padding: 18px;
  display:flex;
  flex-direction: column;
  gap: 14px;
  justify-content:center;
}

.uazim-phone-icon{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 12px 30px rgba(194,24,91,.35);
}

.uazim-phone-lines span{
  display:block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  margin-bottom: 10px;
}
.uazim-phone-lines span:nth-child(1){ width: 88%; }
.uazim-phone-lines span:nth-child(2){ width: 72%; }
.uazim-phone-lines span:nth-child(3){ width: 60%; margin-bottom: 0; }

.uazim-phone-btn{
  height: 44px;
  width: 70%;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  margin-top: 10px;
}

@media (max-width: 900px){
  .uazim-play-card{ grid-template-columns: 1fr; }
  .uazim-play-right{ display:none; }
  .uazim-play-title{ font-size: 1.7rem; }
}
 
 /* ========================================
   Mural de Perfis (rostos)
======================================== */
.profiles-wall{
  padding: 70px 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-alt) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.profiles-wall-head{
  text-align: center;
  margin-bottom: 26px;
}

.profiles-wall-title{
  font-size: 2rem;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}

.profiles-wall-subtitle{
  color: var(--text-light);
  max-width: 62ch;
  margin: 0 auto;
}

.profiles-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.profile-chip{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 22px var(--shadow);
  transition: var(--transition);
  min-width: 0;
}

.profile-chip:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px var(--shadow-strong);
}

.profile-avatar{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 2px solid rgba(194,24,91,.15);
  background: linear-gradient(135deg, var(--accent-light), #fff);
}

.profile-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-meta{
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.profile-name{
  font-weight: 700;
  font-size: .92rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-desc{
  font-size: .78rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #21c36a;
  box-shadow: 0 0 0 3px rgba(33,195,106,.15);
  margin-left: auto;
  flex: 0 0 auto;
}

.profiles-wall-cta{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Responsivo do mural */
@media (max-width: 1100px){
  .profiles-grid{ grid-template-columns: repeat(8, 1fr); }
}
@media (max-width: 900px){
  .profiles-grid{ grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 600px){
  .profiles-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* ========================================
   Modal "Chamando no chat"
======================================== */
.chat-modal-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 2000;
}

.chat-modal-overlay.is-open{ display: flex; }

.chat-modal{
  width: min(560px, 100%);
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 28px 90px rgba(0,0,0,.25);
  overflow: hidden;
  position: relative;
}

.chat-modal-close{
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: rgba(0,0,0,.04);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition);
}

.chat-modal-close:hover{ background: rgba(0,0,0,.08); }

.chat-modal-header{
  padding: 22px 22px 10px;
}

.chat-modal-badge{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--bg-alt);
  color: var(--primary);
  font-weight: 800;
  font-size: .85rem;
  margin-bottom: 10px;
}

.chat-modal-title{
  font-size: 1.35rem;
  margin: 0 0 6px;
  letter-spacing: -0.2px;
}

.chat-modal-subtitle{
  margin: 0;
  color: var(--text-light);
  font-size: .98rem;
}

.chat-modal-body{
  display: block;
  padding: 14px 22px 20px;
  border-top: 1px solid var(--border);
}

.chat-cards{
  display: grid;
  gap: 12px;
}

.chat-card{
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff 0%, var(--bg-alt) 100%);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.chat-card:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 26px var(--shadow);
}

.chat-avatar{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  flex: 0 0 auto;
  border: 2px solid rgba(194,24,91,.18);
  background: linear-gradient(135deg, var(--accent-light), #fff);
}

.chat-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-online{
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #21c36a;
  border: 2px solid #fff;
}

.chat-info{ min-width: 0; }
.chat-name{
  font-weight: 900;
  color: var(--text);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chat-msg{
  color: var(--text-light);
  font-size: .95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-modal-actions{
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.chat-modal-cta{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 900;
  color: var(--primary);
  background: rgba(194,24,91,.08);
  border: 1px solid rgba(194,24,91,.16);
  padding: 10px 14px;
  border-radius: 999px;
}

/* ========================================
   WhatsApp flutuante
======================================== */
.whatsapp-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 2100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  box-shadow: 0 14px 38px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.18);
  transition: var(--transition);
}

.whatsapp-float:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
}

.wa-icon{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.wa-text{
  font-weight: 900;
  letter-spacing: -0.2px;
}

@media (max-width: 520px){
  .wa-text{ display: none; }
}      

  html, body {
    overflow-x: hidden;
}
      