/* 
  Design Original: Envato User 
  Licença de Uso: Comercial (Cliente Final)
  Proibida a revenda do código fonte.
*/
:root {
            --bg-color: #FDF2F8; /* Pinkish White */
            --card-bg: #FFFFFF;
            --primary: #DB2777; /* Pink 600 */
            --secondary: #FBCFE8; /* Pink 200 */
            --text: #831843; /* Pink 900 */
            --gap: 15px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Outfit', 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;
            flex-direction: column;
            align-items: center;
            margin-bottom: 30px;
            position: relative;
        }

        .profile-container {
            position: relative;
            margin-bottom: 15px;
        }

        .profile-img {
            width: 110px;
            height: 110px;
            border-radius: 40px; /* Squircle */
            object-fit: cover;
            border: 4px solid white;
            box-shadow: 0 10px 25px rgba(219, 39, 119, 0.15);
            transform: rotate(-3deg);
        }

        .status-badge {
            position: absolute;
            bottom: -5px;
            right: -5px;
            background: #10B981;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            border: 2px solid white;
        }

        .header h1 { font-size: 1.5rem; font-weight: 700; }
        .header p { font-size: 0.95rem; opacity: 0.8; }

        /* Bento Grid */
        .grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--gap);
            grid-auto-rows: minmax(130px, auto);
        }

        .card {
            background: var(--card-bg);
            border-radius: 24px;
            padding: 20px;
            text-decoration: none;
            color: var(--text);
            transition: transform 0.2s;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.5);
        }

        .card:hover { transform: scale(0.98); }

        /* Card Styles */
        .card-main {
            grid-column: span 2;
            background: linear-gradient(135deg, #F472B6 0%, #DB2777 100%);
            color: white;
            height: 100px;
            flex-direction: row;
            align-items: center;
            padding: 0 25px;
        }

        .card-main .icon-circle {
            background: rgba(255,255,255,0.2);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-right: 15px;
        }

        .card-ebook {
            background-color: #FEF3C7; /* Yellowish */
            color: #92400E;
        }

        .card-recipes {
            background-color: #D1FAE5; /* Greenish */
            color: #065F46;
        }

        .card-results {
            grid-column: span 2;
            height: 140px;
            background-image: url('../images/2a2f12117d3927cab7e7ddd1ea9b8ab1.jpg');
            background-size: cover;
            background-position: center;
        }
        
        .card-results::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(255,255,255,0.9), transparent);
        }

        .card-content { position: relative; z-index: 2; }

        .card-title { font-weight: 700; font-size: 1.1rem; margin-bottom: 5px; }
        .card-desc { font-size: 0.8rem; opacity: 0.8; line-height: 1.3; }

        .card-icon-lg {
            font-size: 2.5rem;
            margin-bottom: auto;
            opacity: 0.2;
            position: absolute;
            top: 15px;
            right: 15px;
        }

        /* Social */
        .social-links {
            grid-column: span 2;
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 10px;
        }

        .social-pill {
            background: white;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 2px 10px rgba(219, 39, 119, 0.05);
        }

        footer {
            text-align: center;
            margin-top: 40px;
            font-size: 0.8rem;
            opacity: 0.6;
        }