.pricing-container {
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--negro, #141000);
    margin-bottom: 1rem;
    position: relative;
    transform: rotate(-1deg);
}

/* .emoji {
    display: inline-block;
    font-size: 1.5em;
    margin-left: 0.5rem;
}

.emoji-sparkle {
    position: relative;
    top: -0.1em;
    transform: rotate(12deg);
    color: #fbbf24;
}

.emoji-star {
    position: relative;
    top: -0.1em;
    transform: rotate(-12deg);
    color: #007ce4;
} */

.pricing-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    transform: rotate(-1deg);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    position: relative;
    background: var(--blanco);
    border: 2px solid #666;
    border-radius: 12px;
    padding: 0;
    transition: all 0.3s ease;
    transform-origin: center;
    box-shadow: 6px 6px 0px 0px rgba(20, 16, 0, 0.1);
    /* overflow: hidden; */
}

.pricing-card:nth-child(1) {
    transform: rotate(-1deg);
}

.pricing-card:nth-child(2) {
    transform: rotate(1deg);
}

.pricing-card:nth-child(3) {
    transform: rotate(-2deg);
}

.pricing-card:hover {
    box-shadow: 10px 10px 0px 0px rgba(20, 16, 0, 0.15);
    transform: rotate(0deg) translateY(-4px);
}

.pricing-card.popular {
    position: relative;
    border-color: var(--ambar);
    border-width: 3px;
}

.pricing-popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--ambar);
    color: #141000;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    border: 2px solid var(--negro);
    transform: rotate(12deg);
    z-index: 10;
    font-size: 0.9rem;
}

.pricing-card-content {
    padding: 2rem;
}

.pricing-icon-wrapper {
    width: 60px;
    height: 60px;
    border: 2px solid var(--negro);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.pricing-card-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #141000;
    margin-bottom: 0.5rem;
}

.pricing-card-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: #141000;
    margin-bottom: 0.25rem;
}

.pricing-price-period {
    font-size: 1rem;
    color: #999;
    margin-bottom: 2rem;
}

/* Features List */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: #333;
}

.pricing-feature-check {
    width: 24px;
    height: 24px;
    border: 2px solid #141000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 700;
    color: #141000;
}

.pricing-feature-check::before {
    content: "✓";
}

/* Button */
.pricing-button {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    border: 2px solid #141000;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    /* text-transform: uppercase; */
    letter-spacing: 2px;
    box-shadow: 4px 4px 0px 0px rgba(20, 16, 0, 0.1);
}

.pricing-button:hover {
    box-shadow: 6px 6px 0px 0px rgba(20, 16, 0, 0.15);
    transform: translateX(-2px) translateY(-2px);
}

.pricing-button:active {
    box-shadow: 2px 2px 0px 0px rgba(20, 16, 0, 0.1);
    transform: translateX(1px) translateY(1px);
}

.btn.default,
.pricing-button.default {
    width: 100%;
    background: var(--background);
    color: #141000;
}

.btn.default:hover,
.pricing-button.default:hover {
    background: #ffffff;
    box-shadow: 4px 4px 0px 0px rgba(20, 16, 0, 0.1);
}

.btn.popular,
.pricing-button.popular {
    width: 100%;
    background: var(--ambar);
    color: #141000;
}

.btn.popular:hover,
.pricing-button.popular:hover {
    background: var(--ambar);
    box-shadow: 4px 4px 0px 0px rgba(20, 16, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-container {
        padding: 1rem;
    }

    .pricing-header {
        margin-bottom: 3rem;
    }

    .pricing-title {
        font-size: 2rem;
    }

    .pricing-description {
        font-size: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        transform: rotate(0deg) !important;
    }

    .pricing-card:hover {
        transform: rotate(0deg) translateY(-4px);
    }

    .pricing-card-content {
        padding: 1.5rem;
    }

    .emoji {
        font-size: 1.2em;
    }

    .pricing-popular-badge {
        top: -8px;
        right: 15px;
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .pricing-title {
        font-size: 1.5rem;
    }

    .pricing-price {
        font-size: 2.5rem;
    }

    .pricing-card-content {
        padding: 1rem;
    }

    .emoji {
        font-size: 1em;
    }
}
