/* 
  Design Original: Envato User 
  Licença de Uso: Comercial (Cliente Final)
  Proibida a revenda do código fonte.
*/
:root {
            --bg-color: #0F172A;
            --card-bg: #1E293B;
            --primary: #38BDF8; /* Sky Blue */
            --accent: #FACC15; /* Yellow */
            --text: #F8FAFC;
            --gap: 12px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-color);
            color: var(--text);
            display: flex;
            justify-content: center;
            min-height: 100vh;
            padding: 20px;
        }

        .container {
            width: 100%;
            max-width: 420px;
        }

        /* Header */
        .header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            background: rgba(30, 41, 59, 0.5);
            padding: 15px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .logo-img {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            object-fit: cover;
        }

        .header-text h1 { font-size: 1.2rem; font-weight: 800; }
        .header-text p { font-size: 0.85rem; color: #94A3B8; }

        /* Bento Grid */
        .grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--gap);
            grid-auto-rows: minmax(110px, auto);
        }

        .card {
            background-color: var(--card-bg);
            border-radius: 24px;
            padding: 20px;
            text-decoration: none;
            color: var(--text);
            position: relative;
            overflow: hidden;
            transition: transform 0.2s;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .card:hover { transform: scale(0.98); }

        /* Card Styles */
        .card-simulator {
            grid-column: span 2;
            background: linear-gradient(135deg, #0EA5E9 0%, #2563EB 100%);
            height: 160px;
        }

        .card-simulator .icon {
            font-size: 2rem;
            margin-bottom: 10px;
            color: var(--accent);
        }

        .card-simulator h2 { font-size: 1.5rem; font-weight: 800; line-height: 1.1; }
        .card-simulator p { font-size: 0.9rem; opacity: 0.9; margin-top: 5px; }

        .card-whatsapp {
            background-color: #22C55E;
            color: white;
        }

        .card-faq {
            background-color: #334155;
        }

        .card-projects {
            grid-column: span 2;
            background-image: url('../images/8628c6254322a84413c3e3fdee351547.jpg');
            background-size: cover;
            height: 140px;
        }
        
        .card-projects::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.8), transparent);
        }

        .card-content { position: relative; z-index: 2; }

        .card-icon-small {
            font-size: 1.5rem;
            margin-bottom: auto;
        }

        .card-label {
            font-weight: 600;
            font-size: 0.95rem;
        }

        /* Badge */
        .badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255,255,255,0.2);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        footer {
            text-align: center;
            margin-top: 40px;
            font-size: 0.8rem;
            color: #64748B;
        }