:root {
    --primary: #7C3AED;      /* Roxo - Vibrant Purple */
    --primary-dark: #6D28D9;
    --primary-light: #C4B5FD;
    
    --secondary: #2563EB;    /* Azul - Blue */
    --secondary-dark: #1D4ED8;
    --accents: #38BDF8;      /* Azul Claro */
    
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;     /* Slate 50 */
    --bg-gray: #F1F5F9;      /* Slate 100 */
    --bg-dark: #0F172A;      /* Slate 900 */
    
    --text-main: #0F172A;
    --text-muted: #475569;   /* Slate 600 */
    --text-light: #F8FAFC;
    
    --border-color: #E2E8F0;
    
    --font-main: 'Outfit', system-ui, -apple-system, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-purple: 0 10px 25px -5px rgba(124, 58, 237, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, strong {
    color: var(--text-main);
    line-height: 1.2;
}

p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-sm {
    max-width: 800px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-white { background-color: var(--bg-white); }
.section-light { background-color: var(--bg-light); }
.section-gray { background-color: var(--bg-gray); }

.section-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
}
.section-primary h2, .section-primary p { color: var(--text-light); }

.section-blue {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--text-light);
}
.section-blue h2, .section-blue p { color: var(--text-light); }

.section-dark {
    background-color: var(--bg-dark);
    color: #CBD5E1;
    padding: 3rem 0;
}
.section-dark p {
    color: #CBD5E1;
    font-size: 0.95rem;
    margin: 0;
}

/* Typography elements */
h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
    box-shadow: var(--shadow-purple);
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(124, 58, 237, 0.5);
    color: var(--bg-white);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}
.btn-outline:hover {
    background-color: var(--primary);
    color: var(--bg-white);
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--secondary-dark);
    box-shadow: var(--shadow-md);
}
.btn-white:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Pulsing effect for main CTA */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.cta-button {
    animation: pulse 2.5s infinite;
}
.cta-button:hover {
    animation: none;
}


/* HERO */
.hero {
    background: linear-gradient(to bottom right, #f8fafc, #e0e7ff);
    padding: 8rem 0 7rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -20%; left: -10%; width: 50%; height: 50%;
    background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 60%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -10%; right: -10%; width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 60%);
    border-radius: 50%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(124, 58, 237, 0.1);
    color: var(--primary-dark);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

/* SOBRE */
.about-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
    border: 1px solid var(--border-color);
}
.about-card p:last-child {
    margin-bottom: 0;
}

/* BENEFÍCIOS */
.grid {
    display: grid;
    gap: 2rem;
}
.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid transparent;
}
.feature-card:hover {
    transform: translateY(-5px);
    background: var(--bg-white);
    border-color: var(--border-color);
    box-shadow: var(--shadow-md);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}
.feature-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* CONTEÚDO INCLUÍDO */
.included-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 4rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.checklist {
    margin-top: 2.5rem;
}
.checklist li {
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    font-weight: 500;
}
.checklist li ion-icon {
    color: var(--primary);
    font-size: 1.75rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* PARA QUEM É */
.highlight-text {
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
}

/* PLANOS */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 3rem auto 0;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 3rem 2rem;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-card h3 {
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plan-features {
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
}
.plan-features li ion-icon {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-right: 0.75rem;
    margin-top: 0.15rem;
}

.pricing-card .btn {
    width: 100%;
}

.pricing-card.premium {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}
.pricing-card.premium:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--bg-white);
    padding: 0.4rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* GARANTIA */
.guarantee-icon {
    font-size: 5rem;
    color: #10B981; /* Verde esmeralda */
    margin-bottom: 1.5rem;
}
.guarantee h2 {
    margin-bottom: 1rem;
}

/* FOOTER */
.footer {
    background: #020617;
    color: #94A3B8;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}
.footer-col p {
    color: #94A3B8;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-col strong {
    color: var(--bg-white);
    display: inline-block;
    margin-bottom: 0.25rem;
}

.footer-col a {
    color: var(--accents);
}
.footer-col a:hover {
    text-decoration: underline;
    color: #FFF;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1E293B;
}
.footer-bottom p {
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 5rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    section {
        padding: 4rem 0;
    }
    h2 {
        font-size: 2rem;
    }
    .pricing-card.premium {
        transform: none;
    }
    .pricing-card.premium:hover {
        transform: translateY(-5px);
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .included-content {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1.125rem;
    }
    .btn {
        width: 100%;
    }
    h2 {
        font-size: 1.75rem;
    }
    .about-card {
        padding: 2rem 1.5rem;
    }
}
