/* 
  Design Original: Envato User 
  Licença de Uso: Comercial (Cliente Final)
  Proibida a revenda do código fonte.
*/
:root {
            --bg-color: #121212;
            --card-bg: #1E1E1E;
            --text-primary: #FFFFFF;
            --text-secondary: #AAAAAA;
            --accent: #D4AF37; /* Gold */
            --gap: 12px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Manrope', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-primary);
            display: flex;
            justify-content: center;
            min-height: 100vh;
            padding: 20px;
        }

        .container {
            width: 100%;
            max-width: 420px;
        }

        /* Header Profile */
        .profile-header {
            text-align: center;
            margin-bottom: 30px;
            animation: fadeIn 0.8s ease;
        }

        .profile-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--accent);
            margin-bottom: 15px;
        }

        .profile-header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

        .profile-header p {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* Bento Grid */
        .bento-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--gap);
            grid-auto-rows: minmax(100px, auto);
        }

        .card {
            background-color: var(--card-bg);
            border-radius: 20px;
            padding: 20px;
            text-decoration: none;
            color: var(--text-primary);
            transition: transform 0.2s, box-shadow 0.2s;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border: 1px solid #333;
        }

        .card:hover {
            transform: scale(0.98);
            border-color: var(--accent);
        }

        .card-icon {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--accent);
            background: rgba(212, 175, 55, 0.1);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
        }

        .card-title {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 5px;
        }

        .card-desc {
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

        /* Card Variations */
        .card-full {
            grid-column: span 2;
        }

        .card-tall {
            grid-row: span 2;
        }

        .card-image {
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .card-image::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2));
            z-index: 1;
        }

        .card-image .card-content {
            position: relative;
            z-index: 2;
            margin-top: auto;
        }

        /* Specific Cards */
        .card-site {
            background-image: url('https://images.unsplash.com/photo-1618220179428-22790b461013?q=80&w=2000&auto=format&fit=crop');
            height: 180px;
        }

        .card-whatsapp {
            background-color: #25D366;
            color: white;
            border: none;
        }
        .card-whatsapp .card-icon {
            background: rgba(255,255,255,0.2);
            color: white;
        }
        .card-whatsapp .card-desc { color: rgba(255,255,255,0.9); }

        .card-portfolio {
            background-image: url('../images/f157afa325861291b83b5d9963f0fe1c.jpg');
            height: 150px;
        }

        /* Footer */
        footer {
            text-align: center;
            margin-top: 40px;
            color: #444;
            font-size: 0.8rem;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }