/* 
  Design Original: Envato User 
  Licença de Uso: Comercial (Cliente Final)
  Proibida a revenda do código fonte.
*/
:root {
            --bg-color: #050505;
            --card-bg: rgba(255, 255, 255, 0.03);
            --card-border: rgba(255, 255, 255, 0.08);
            --text-primary: #FFFFFF;
            --text-secondary: #AAAAAA;
            --accent: #d4af37; /* Gold */
            --gap: 10px;
        }

        * { 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;
            background-image: radial-gradient(circle at 50% 0%, #1a1a1a 0%, #050505 100%);
        }

        .container {
            width: 100%;
            max-width: 420px;
        }

        /* Mosaic Grid */
        .mosaic-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--gap);
            grid-auto-rows: minmax(100px, auto);
        }

        .card {
            background-color: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 4px; /* Sharp/Editorial look */
            padding: 20px;
            text-decoration: none;
            color: var(--text-primary);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            backdrop-filter: blur(10px);
        }

        .card:hover {
            border-color: var(--accent);
            background-color: rgba(255, 255, 255, 0.05);
            transform: translateY(-2px);
        }

        /* Typography */
        .card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            margin-bottom: 5px;
            letter-spacing: 0.5px;
        }

        .card-desc {
            font-size: 0.75rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .card-icon {
            font-size: 1.2rem;
            color: var(--accent);
            margin-bottom: 15px;
            align-self: flex-start;
        }

        /* Card Variations */
        
        /* Profile Card (Top Full) */
        .card-profile {
            grid-column: span 2;
            flex-direction: row;
            align-items: center;
            padding: 25px;
            background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), transparent);
            border-color: rgba(212, 175, 55, 0.2);
        }

        .profile-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 1px solid var(--accent);
            margin-right: 20px;
        }

        .profile-info h1 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: var(--accent);
        }

        .profile-info p {
            font-size: 0.8rem;
            color: var(--text-secondary);
            margin-top: 5px;
        }

        /* Website Card (Big Square) */
        .card-website {
            grid-column: span 2;
            height: 160px;
            background-image: url('../images/42eb82a17ea79e2ffd19c1cc63381e05.jpg');
            background-size: cover;
            background-position: center;
        }
        
        .card-website::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2));
        }

        .card-website .card-content {
            position: relative;
            z-index: 2;
            margin-top: auto;
        }

        /* Action Cards */
        .card-whatsapp {
            background-color: rgba(37, 211, 102, 0.1);
            border-color: rgba(37, 211, 102, 0.2);
        }
        .card-whatsapp:hover {
            background-color: rgba(37, 211, 102, 0.2);
            border-color: #25D366;
        }
        .card-whatsapp .card-icon { color: #25D366; }

        /* Collection (Tall) */
        .card-collection {
            grid-row: span 2;
            background-image: url('../images/022e95d866d073d89bf6fdfb1b338c13.jpg');
            background-size: cover;
            background-position: center;
        }
        .card-collection::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
        }
        .card-collection .card-content {
            position: relative;
            z-index: 2;
            margin-top: auto;
        }

        /* Footer */
        footer {
            text-align: center;
            margin-top: 40px;
            color: #444;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .container { animation: fadeIn 0.8s ease; }