    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }

    body {
        background: linear-gradient(180deg, #f8f6ff 0%, #ffffff 100%);
        color: #222;
        overflow-x: hidden;
    }

    .main {
        margin-left: 240px;
        padding: 60px 40px;
        transition: 0.3s;
    }

    h2.section-title {
        font-size: 2rem;
        text-align: center;
        color: #2a2a2a;
        margin-bottom: 20px;
    }

    p.section-sub {
        text-align: center;
        color: #666;
        margin-bottom: 40px;
    }

    /* NOVA SESSÃO DESTAQUE */
    .about-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        padding: 50px;
        margin: 40px 0;
    }

    .about-text {
        flex: 1;
    }

    .about-text h3 {
        color: #5b4cff;
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .about-text p {
        color: #555;
        line-height: 1.6;
        font-size: 1rem;
    }

    .about-img {
        flex: 1;
        text-align: center;
    }

    .about-img img {
        width: 100%;
        max-width: 400px;
        border-radius: 16px;
    }

    /* CARDS DE SERVIÇO */
    .cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 25px;
        padding: 20px;
    }

    .card {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        padding: 30px;

        transition: transform 0.3s;
        position: relative;
    }

    .card:hover {
        transform: translateY(-6px);
    }

    .card h4 {
        color: #5b4cff;
        margin-bottom: 10px;
    }

    .card p {
        color: #555;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* CARDS COMBOS MELHORADOS */
    .card img {
        width: 100%;
        border-radius: 12px;
        margin-bottom: 15px;
    }

    .combo-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: #5b4cff;
        color: #fff;
        padding: 6px 10px;
        border-radius: 8px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .price {
        font-size: 1.4rem;
        font-weight: 700;
        color: #222;
        margin: 10px 0;
    }

    .save {
        color: #4b3ce3;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .buy-btn {
        background: #5b4cff;
        color: #fff;
        border: none;
        padding: 10px 20px;
        border-radius: 10px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
    }

    .buy-btn:hover {
        background: #4b3ce3;
    }

    /* FAQ */
    .faq {
        max-width: 800px;
        margin: 60px auto;
    }

    .faq-item {
        background: #fff;
        margin-bottom: 15px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        transition: 0.3s;
    }

    .faq-question {
        padding: 18px 22px;
        font-weight: 600;
        cursor: pointer;
        color: #333;
        background: #f4f2ff;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        padding: 0 22px;
        color: #555;
    }

    .faq-item.active .faq-answer {
        max-height: 200px;
        padding: 18px 22px;
    }

    /* RODAPÉ */
    footer {
        margin-top: 80px;
        background: #f4f2ff;
        text-align: center;
        padding: 30px 20px;
        color: #555;
        font-size: 0.9rem;
    }

    footer a {
        color: #5b4cff;
        text-decoration: none;
        margin: 0 10px;
        font-weight: 500;
    }



    body {
        font-family: 'Poppins';
        margin: 0;
        background: #f4f4f4;
    }

    header {
        padding: 15px;
        background: #007bff;
        color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .container {
        padding: 15px;
    }

    .card {
        background: #fff;
        border-radius: 10px;
        padding: 15px;
        margin-bottom: 15px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }

    .btn {
        background: #007bff;
        color: white;
        border: none;
        padding: 8px 12px;
        border-radius: 5px;
        cursor: pointer;
        text-decoration: none;
    }

    .btn:hover {
        background: #0056b3;
    }

    .btn-green {
        background: #28a745;
    }

    .btn-green:hover {
        background: #218838;
    }

    .btn-icon {
        background: none;
        border: none;
        cursor: pointer;
        font-size: 16px;
        margin-left: 5px;
    }

    .blurred {
        filter: blur(6px);
        user-select: none;
        transition: filter 0.2s;
        margin-left: 6px;
        font-weight: bold;
    }

    .whatsapp {
        margin-top: 8px;
        display: flex;
        align-items: center;
    }

    .badge {
        font-size: 12px;
        padding: 4px 8px;
        border-radius: 6px;
        color: white;
    }

    .badge.equipe {
        background: #28a745;
    }

    .badge.cliente {
        background: #ffc107;
        color: #000;
    }

    h3 {
        margin-top: 30px;
    }

    
    /* RESPONSIVO */
    @media (max-width:768px) {
        .main {
            margin-left: 0;
        }

    }