.elementor-7 .elementor-element.elementor-element-a9f58d1{--display:flex;}.elementor-7 .elementor-element.elementor-element-a7c4600{--display:flex;}/* Start custom CSS */<!DOCTYPE html>
<html lang="pt-br">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Beca Ofertas - Shopee VIP</title>
    <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap" rel="stylesheet">
    <style>
        :root {
            /* Nova Paleta de Cores */
            --primary-purple: #8e44ad; /* Lilás Profundo */
            --primary-blue: #2980b9;   /* Azul Real */
            --accent-lilac: #a55eea;   /* Lilás Claro */
            --text-dark: #2c3e50;
            --bg-gradient: linear-gradient(135deg, #f3e5f5 0%, #ffffff 50%, #e3f2fd 100%);
            --shadow: 0 10px 25px rgba(142, 68, 173, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }

        body {
            background: var(--bg-gradient);
            background-attachment: fixed;
            color: var(--text-dark);
            display: flex;
            justify-content: center;
            padding: 40px 20px;
        }

        .container {
            width: 100%;
            max-width: 420px;
            text-align: center;
        }

        /* Cabeçalho */
        header h1 {
            font-weight: 900;
            font-size: 1.8rem;
            line-height: 1.2;
            margin-bottom: 12px;
            text-transform: uppercase;
            color: var(--primary-purple);
        }

        header p {
            font-size: 1rem;
            color: #555;
            margin-bottom: 40px;
            font-weight: 500;
        }

        /* Cards */
        .card {
            background: #ffffff;
            border-radius: 35px;
            padding: 45px 25px 30px;
            margin-bottom: 45px;
            position: relative;
            box-shadow: var(--shadow);
            border: 2px solid transparent;
            transition: transform 0.3s ease;
            animation: fadeIn 0.8s ease-out forwards;
        }

        .card-general { border-color: #d1c4e9; }
        .card-pets { border-color: #bbdefb; }

        /* Badge VIP */
        .badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-purple);
            color: white;
            padding: 8px 22px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.7rem;
            letter-spacing: 1px;
            box-shadow: 0 4px 12px rgba(142, 68, 173, 0.3);
        }

        .illustration {
            font-size: 55px;
            margin-bottom: 10px;
            display: block;
        }

        .card-title {
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .card-subtitle {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 25px;
            line-height: 1.4;
        }

        /* Botões */
        .btn {
            display: block;
            width: 100%;
            padding: 18px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .btn-purple {
            background: var(--primary-purple);
            color: white;
            box-shadow: 0 6px 15px rgba(142, 68, 173, 0.25);
        }

        .btn-blue {
            background: var(--primary-blue);
            color: white;
            box-shadow: 0 6px 15px rgba(41, 128, 185, 0.25);
        }

        .btn:hover {
            filter: brightness(1.1);
            transform: translateY(-2px);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
    </style>
</head>
<body>

    <div class="container">
        <header>
            <h1>As melhores ofertas<br>gerais da shopee</h1>
            <p>Economize de verdade comprando aqui, escolha seu grupo VIP!</p>
        </header>

        <!-- GRUPO 01: BECA OFERTAS -->
        <div class="card card-general">
            <div class="badge">★ MAIS ACESSADO ★</div>
            <span class="illustration">📦✨</span>
            <h2 class="card-title" style="color: var(--primary-purple);">Beca Ofertas</h2>
            <p class="card-subtitle">Encontre ofertas e promoções incríveis que cabem no seu bolso</p>
            <a href="https://chat.whatsapp.com/Gy1zfAR9BnI7umyWdLh8tv?mode=gi_t" class="btn btn-purple">ENTRAR NO GRUPO VIP</a>
        </div>

        <!-- GRUPO 02: BECA OFERTAS PETS -->
        <div class="card card-pets">
            <span class="illustration">🐾💙</span>
            <h2 class="card-title" style="color: var(--primary-blue);">Beca Ofertas Pets</h2>
            <p class="card-subtitle">O grupo perfeito para quem ama cuidar do seu pet sem gastar muito</p>
            <a href="https://chat.whatsapp.com/FreoR9K9hJfF7kuMj436uC?mode=gi_t" class="btn btn-blue">ENTRAR NO GRUPO PETS</a>
        </div>

        <footer style="margin-top: 20px; font-size: 0.8rem; color: #888;">
            &copy; 2026 Beca Ofertas - Todos os direitos reservados.
        </footer>
    </div>

</body>
</html>/* End custom CSS */