:root {
    --primary-color: #e83e8c;
    --secondary-color: #6f42c1;
    --accent-color: #fd7e14;
    --light-pink: #fff5f7;
    --dark-color: #2d3748;
    --gradient-primary: linear-gradient(135deg, #e83e8c 0%, #6f42c1 100%);
    --gradient-secondary: linear-gradient(135deg, #fd7e14 0%, #e83e8c 100%);
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #4a5568;
}

/* Animação personalizada do modal */
.custom-fade .modal-dialog {
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.35s ease;
}

.custom-fade.show .modal-dialog {
    transform: scale(1);
    opacity: 1;
}

/* Fundo com desfoque elegante */
.custom-fade .modal-backdrop.show {
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.9);
    transition: all 0.4s ease;
}

/* Animação suave do conteúdo */
.modal-content {
    animation: glowFade 0.6s ease;
    backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 0.85);
}

@keyframes glowFade {
    from {
        opacity: 0;
        transform: translateY(20px);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
}

/* Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 800;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

    .section-title {
        position: relative;
        display: inline-block;
        margin-bottom: 1rem;
        color: var(--primary-color);
        font-weight: 700;
    }

    .section-title:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        border-radius: 2px;
    }
    
        .lead {
        color: #18191a;
        font-size: 1.2rem;
    }
    
     .quote-container {
        position: relative;
        padding: 2rem;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 15px;
        margin: 2rem 0;
    }

    .quote-container:before {
        content: """;
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 80px;
            color: var(--primary-color);
            opacity: 0.2;
            font-family: Georgia, serif;
            }

            .highlight-text {
            background: linear-gradient(120deg, rgba(232, 62, 140, 0.1) 0%, rgba(111, 66, 193, 0.1) 100%);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--primary-color);
            }

            .btn-primary {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border: none;
            border-radius: 50px;
            padding: 0.5rem 1.5rem;
            transition: all 0.3s ease;
            }

            .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(232, 62, 140, 0.3);
            }

            .inspiration-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--accent-color);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            }
            
            
