
    /* CSS for page-phmacao-vip */
    :root {
        --phmacao-vip-primary-color: #FFD700; /* Gold */
        --phmacao-vip-secondary-color: #1A1A1A; /* Dark Grey */
        --phmacao-vip-text-light: #FFFFFF;
        --phmacao-vip-text-dark: #000000;
        --phmacao-vip-background-dark: #0F0F0F;
        --phmacao-vip-background-light: #F8F8F8;
        --phmacao-vip-accent-color: #DC143C; /* Crimson for highlights */
        --phmacao-vip-border-color: #333333;
    }

    .page-phmacao-vip {
        font-family: 'Arial', sans-serif;
        color: var(--phmacao-vip-text-light);
        background-color: var(--phmacao-vip-background-dark);
        line-height: 1.6;
        padding-top: 10px; /* Small decorative top padding, assuming body has --header-offset padding */
    }

    .page-phmacao-vip__section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-phmacao-vip__section--dark {
        background-color: var(--phmacao-vip-background-dark);
    }

    .page-phmacao-vip__section--light {
        background-color: var(--phmacao-vip-secondary-color);
        color: var(--phmacao-vip-text-light);
    }

    .page-phmacao-vip__hero-section {
        background-color: var(--phmacao-vip-secondary-color);
        padding: 80px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 400px;
        position: relative;
        overflow: hidden;
    }

    .page-phmacao-vip__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        opacity: 0.3;
    }

    .page-phmacao-vip__hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
        color: var(--phmacao-vip-text-light);
    }

    .page-phmacao-vip__hero-title {
        font-size: 3.5em;
        color: var(--phmacao-vip-primary-color);
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-phmacao-vip__hero-subtitle {
        font-size: 1.5em;
        color: var(--phmacao-vip-text-light);
        margin-bottom: 30px;
    }

    .page-phmacao-vip__button {
        display: inline-block;
        padding: 15px 30px;
        background-color: var(--phmacao-vip-primary-color);
        color: var(--phmacao-vip-text-dark);
        text-decoration: none;
        border-radius: 8px;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none; /* Ensure it looks like a button */
        cursor: pointer;
    }

    .page-phmacao-vip__button:hover {
        background-color: #FFC107; /* Slightly darker gold */
        transform: translateY(-2px);
    }

    .page-phmacao-vip__heading {
        font-size: 2.5em;
        color: var(--phmacao-vip-primary-color);
        margin-bottom: 30px;
    }

    .page-phmacao-vip__subheading {
        font-size: 1.8em;
        color: var(--phmacao-vip-text-light);
        margin-bottom: 20px;
    }

    .page-phmacao-vip__text {
        font-size: 1.1em;
        margin-bottom: 20px;
        color: var(--phmacao-vip-text-light);
    }

    .page-phmacao-vip__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-phmacao-vip__feature-card {
        background-color: var(--phmacao-vip-secondary-color);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid var(--phmacao-vip-border-color);
    }

    .page-phmacao-vip__feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-phmacao-vip__feature-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
        object-fit: contain;
        border-radius: 5px; /* Ensure images are not squashed and look good */
    }

    .page-phmacao-vip__feature-title {
        font-size: 1.5em;
        color: var(--phmacao-vip-primary-color);
        margin-bottom: 15px;
    }

    .page-phmacao-vip__feature-description {
        font-size: 1em;
        color: var(--phmacao-vip-text-light);
    }

    .page-phmacao-vip__tiers-list {
        list-style: none;
        padding: 0;
        margin-top: 40px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .page-phmacao-vip__tier-item {
        background-color: var(--phmacao-vip-secondary-color);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        text-align: left;
        border: 1px solid var(--phmacao-vip-border-color);
        box-sizing: border-box; /* Required for list items */
    }

    .page-phmacao-vip__tier-title {
        font-size: 2em;
        color: var(--phmacao-vip-primary-color);
        margin-bottom: 15px;
        text-align: center;
    }

    .page-phmacao-vip__tier-level {
        font-size: 1.2em;
        color: var(--phmacao-vip-accent-color);
        font-weight: bold;
        margin-bottom: 10px;
    }

    .page-phmacao-vip__tier-benefits {
        list-style: disc;
        padding-left: 20px;
        color: var(--phmacao-vip-text-light);
    }

    .page-phmacao-vip__tier-benefits li {
        margin-bottom: 8px;
        font-size: 1em;
        box-sizing: border-box; /* Required for list items */
    }

    .page-phmacao-vip__faq-section {
        padding: 60px 20px;
        max-width: 900px;
        margin: 0 auto;
        text-align: left;
        background-color: var(--phmacao-vip-background-dark);
    }

    .page-phmacao-vip__faq-heading {
        font-size: 2.5em;
        color: var(--phmacao-vip-primary-color);
        margin-bottom: 40px;
        text-align: center;
    }

    .page-phmacao-vip__faq-item {
        background-color: var(--phmacao-vip-secondary-color);
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid var(--phmacao-vip-border-color);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-phmacao-vip__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: #282828; /* Slightly lighter than secondary for question bar */
        color: var(--phmacao-vip-text-light);
        transition: background-color 0.3s ease;
    }

    .page-phmacao-vip__faq-question:hover {
        background-color: #3A3A3A;
    }

    .page-phmacao-vip__faq-question h3 {
        margin: 0;
        font-size: 1.3em;
        color: var(--phmacao-vip-primary-color);
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-phmacao-vip__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--phmacao-vip-primary-color);
        pointer-events: none; /* Prevent toggle icon from blocking click event */
        transition: transform 0.3s ease;
    }

    .page-phmacao-vip__faq-item.active .page-phmacao-vip__faq-toggle {
        transform: rotate(45deg); /* Rotate '+' to 'x' or similar effect */
    }

    .page-phmacao-vip__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        opacity: 0;
        color: var(--phmacao-vip-text-light);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

    .page-phmacao-vip__faq-item.active .page-phmacao-vip__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 25px !important;
        opacity: 1;
    }

    .page-phmacao-vip__cta-section {
        background-color: var(--phmacao-vip-accent-color);
        color: var(--phmacao-vip-text-light);
        padding: 50px 20px;
        text-align: center;
    }

    .page-phmacao-vip__cta-title {
        font-size: 2.2em;
        margin-bottom: 20px;
        color: var(--phmacao-vip-text-light);
    }

    .page-phmacao-vip__cta-text {
        font-size: 1.2em;
        margin-bottom: 30px;
        color: var(--phmacao-vip-text-light);
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .page-phmacao-vip__hero-title {
            font-size: 3em;
        }
        .page-phmacao-vip__hero-subtitle {
            font-size: 1.3em;
        }
        .page-phmacao-vip__heading {
            font-size: 2em;
        }
        .page-phmacao-vip__subheading {
            font-size: 1.5em;
        }
    }

    @media (max-width: 768px) {
        .page-phmacao-vip__hero-section {
            padding: 60px 15px;
        }
        .page-phmacao-vip__hero-title {
            font-size: 2.5em;
        }
        .page-phmacao-vip__hero-subtitle {
            font-size: 1.1em;
        }
        .page-phmacao-vip__section {
            padding: 30px 15px;
        }
        .page-phmacao-vip__heading {
            font-size: 1.8em;
            margin-bottom: 20px;
        }
        .page-phmacao-vip__subheading {
            font-size: 1.3em;
        }
        .page-phmacao-vip__text {
            font-size: 1em;
        }
        .page-phmacao-vip__button {
            padding: 12px 25px;
            font-size: 1em;
        }

        /* List item responsive adjustments */
        .page-phmacao-vip__features-grid,
        .page-phmacao-vip__tiers-list {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-phmacao-vip__feature-card,
        .page-phmacao-vip__tier-item {
            padding: 20px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        
        .page-phmacao-vip__tier-benefits {
            padding-left: 15px;
        }

        .page-phmacao-vip__tier-benefits li {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        /* Image responsive adjustments */
        .page-phmacao-vip__feature-icon {
            max-width: 100% !important;
            height: auto !important;
            width: 80px !important; /* Adjust visual size while maintaining minimum actual placeholder size */
            height: 80px !important;
            box-sizing: border-box !important;
        }
        .page-phmacao-vip__hero-background {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        /* FAQ responsive adjustments */
        .page-phmacao-vip__faq-section {
            padding: 40px 15px;
        }
        .page-phmacao-vip__faq-question {
            padding: 15px 20px;
        }
        .page-phmacao-vip__faq-question h3 {
            font-size: 1.1em;
        }
        .page-phmacao-vip__faq-toggle {
            font-size: 1.5em;
        }
        .page-phmacao-vip__faq-answer {
            padding: 15px 20px;
        }
        .page-phmacao-vip__cta-title {
            font-size: 1.8em;
        }
        .page-phmacao-vip__cta-text {
            font-size: 1em;
        }
    }

    @media (max-width: 480px) {
        .page-phmacao-vip__hero-title {
            font-size: 2em;
        }
        .page-phmacao-vip__hero-subtitle {
            font-size: 1em;
        }
        .page-phmacao-vip__heading {
            font-size: 1.6em;
        }
        .page-phmacao-vip__subheading {
            font-size: 1.2em;
        }
    }
  