

    .crescere-hero {
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 80px;
        background: linear-gradient(135deg, #0F3215 0%, #051408 100%);
        position: relative;
        overflow: hidden;
    }

    .crescere-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(242, 201, 76, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 6s ease-in-out infinite;
    }

    .crescere-content {
        position: relative;
        z-index: 10;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .crescere-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

    .crescere-text h1 span {
        color: var(--gold-main);
    }

    .crescere-text p {
        font-size: 1.1rem;
        color: var(--text-light);
        margin-bottom: 2rem;
        line-height: 1.8;
    }

    .crescere-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 2rem;
    }

    .btn-crescere {
        padding: 1rem 2rem;
        border-radius: 8px;
        font-weight: bold;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        display: inline-block;
        text-decoration: none;
        font-family: 'Rajdhani', sans-serif;
        font-size: 1rem;
    }

    .btn-gold {
        background: var(--gold-main);
        color: #051408;
    }

    .btn-gold:hover {
        background: var(--gold-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(242, 201, 76, 0.3);
    }

    .btn-outline {
        border: 2px solid var(--gold-main);
        color: var(--gold-main);
        background: transparent;
    }

    .btn-outline:hover {
        background: rgba(242, 201, 76, 0.1);
    }

    .features-grid-crescere {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .feature-item {
        background: rgba(242, 201, 76, 0.1);
        border: 1px solid rgba(242, 201, 76, 0.3);
        padding: 1.5rem;
        border-radius: 8px;
    }

    .feature-item h3 {
        color: var(--gold-main);
        margin-bottom: 0.5rem;
    }

    .feature-item p {
        color: var(--text-light);
        font-size: 0.95rem;
    }

    .pricing-section {
        padding: 5rem 2rem;
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(15, 27, 46, 0.3) 100%);
    }

    .pricing-title {
        text-align: center;
        font-size: 2.2rem;
        margin-bottom: 3rem;
        color: var(--text-light);
    }

    .pricing-title span {
        color: var(--primary);
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1280px;
        margin: 0 auto;
    }

    .pricing-card {
        background: rgba(0, 212, 255, 0.05);
        border: 2px solid rgba(0, 212, 255, 0.2);
        padding: 2.5rem;
        border-radius: 12px;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
    }

    .pricing-card:hover {
        border-color: var(--gold-main);
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(242, 201, 76, 0.15);
    }

    .pricing-card.featured {
        border-color: var(--gold-main);
        transform: scale(1.05);
    }

    .pricing-badge {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--gold-main);
        color: #051408;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-weight: bold;
        font-size: 0.8rem;
    }

    .plan-name {
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--text-light);
        margin-bottom: 1rem;
        margin-top: 1rem;
    }

    .plan-price {
        font-size: 2.5rem;
        font-weight: bold;
        color: var(--gold-main);
        margin-bottom: 0.5rem;
    }

    .plan-period {
        color: var(--text-muted);
        margin-bottom: 1.5rem;
    }

    .plan-features {
        list-style: none;
        margin-bottom: 2rem;
        text-align: left;
    }

    .plan-features li {
        color: var(--text-muted);
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        position: relative;
    }

    .plan-features li:before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--gold-main);
        font-weight: bold;
    }

    .testimonials-section {
        padding: 5rem 2rem;
    }

    .testimonials-title {
        text-align: center;
        font-size: 2.2rem;
        margin-bottom: 3rem;
        color: var(--text-light);
    }

    .testimonials-title span {
        color: var(--primary);
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1280px;
        margin: 0 auto;
    }

    .testimonial {
        background: rgba(0, 212, 255, 0.05);
        border: 1px solid rgba(0, 212, 255, 0.2);
        padding: 2rem;
        border-radius: 12px;
    }

    .testimonial-text {
        color: var(--text-light);
        margin-bottom: 1.5rem;
        font-style: italic;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--gold-main) 0%, var(--primary) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
    }

    .author-info h4 {
        color: var(--text-light);
        margin-bottom: 0.2rem;
    }

    .author-info p {
        color: var(--text-muted);
        font-size: 0.85rem;
    }

    @media (max-width: 768px) {
        .crescere-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .crescere-text h1 {
            font-size: 2rem;
        }

        .pricing-card.featured {
            transform: scale(1);
        }
    }

