/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* VARIÁVEIS VISUAIS */
:root {
    --color-primary: #e91e63;
    --color-primary-dark: #c2185b;

    /* ROXO DO FUNDO (base do layout modelo) */
    --color-purple-dark: #3b1d5a;
    --color-purple-medium: #5e2b97;
    --color-purple-light: #8e6bdc;

    /* Fundo roxo degradê */
    --color-bg: radial-gradient(
    circle at 50% 30%,
    #5e2b97 0%,
    #3b1d5a 45%,
    #2a143f 100%
    );

    --color-text-dark: #1a1a1a;
    --color-text-medium: #555;
    --color-white: #ffffff;
}


/* BODY */
body {
    font-family: 'Inter', sans-serif;
    background: var(--color-bg);
    color: #ffffff;
    min-height: 100vh;
}

/* CONTAINER */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HERO */
.hero {
    padding: 48px 0 96px;
}

.hero-content {
    text-align: center;
	display: flex;
    flex-direction: column;
    align-items: center;
}

/* TITULOS */
.headline {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 12px;
	color: #ffffff;
}

.subheadline {
    font-size: 1.15rem;
    color: var(--color-text-medium);
    max-width: 520px;
    margin: 0 auto 50px;
	color: rgba(255, 255, 255, 0.85);
}

/* LOGO POWER MOVE */
.logo-wrapper {
	position: relative;
    margin: 0 auto 20px;
}

.logo-power-move {
    max-width: 150px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.45));
}

/* GLOW SUAVE NO LOGO */
.logo-wrapper::before {
    content: "";
    position: absolute;
    inset: -70px;
    background: radial-gradient(
        circle,
        rgba(255, 120, 200, 0.55) 0%,
        rgba(255, 90, 170, 0.45) 30%,
        rgba(180, 80, 255, 0.35) 50%,
        rgba(90, 40, 160, 0.25) 65%,
        transparent 75%
    );
    filter: blur(55px);
    z-index: -1;
}

.logo-power-move {
    position: relative;
    z-index: 2;
}


/* PLANOS */
.plans {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* CARD */
.plan-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 32px 28px 36px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    text-align: center;
}

/* TÍTULO CARD */
.plan-card h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

/* PREÇO */
.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.price span,
.price small {
    display: block;
    font-size: 0.95rem;
    color: var(--color-text-medium);
    margin-top: 4px;
}

/* BENEFÍCIOS */
.benefits {
    list-style: none;
    margin-bottom: 28px;
}

.benefits li {
    font-size: 0.95rem;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

/* BOTÃO */
.cta-button {
    display: inline-block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 18px rgba(233, 30, 99, 0.35);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(233, 30, 99, 0.45);
}

/* PLANO DESTAQUE */
.featured {
    border: 2px solid var(--color-primary);
    position: relative;
    transform: scale(1.03);
}

.featured::before {
    content: "MAIS VANTAJOSO";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    padding: 6px 16px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 999px;
    letter-spacing: 0.06em;
}

/* FOOTER */
.footer {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 24px 0;
    font-size: 0.85rem;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .plans {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 60px
