.pricing-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #f0f0f0;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #1956C1 0%, #E2403B 100%);
    color: white;
    border: none;
}

.popular-badge {
    position: absolute;
    top: 10px;
    right: 20px;
    background: #FFD700;
    color: #1956C1;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 500;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1956C1;
}

.featured .plan-name {
    color: white;
}

.plan-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.featured .plan-description {
    color: rgba(255, 255, 255, 0.9);
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #1956C1;
    margin-bottom: 5px;
}

.featured .price {
    color: white;
}

.price-currency {
    font-size: 24px;
    vertical-align: super;
}

.price-period {
    font-size: 16px;
    color: #999;
    font-weight: 400;
}

.featured .price-period {
    color: rgba(255, 255, 255, 0.8);
}

.features-list {
    list-style: none;
    margin: 30px 0;
}

.features-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.featured .features-list li {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.features-list li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #1956C1 0%, #E2403B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.featured .check-icon {
    background: white;
}

.check-icon svg {
    width: 12px;
    height: 12px;
    fill: white;
}

.featured .check-icon svg {
    fill: #1956C1;
}

.cta-button {
    width: 100%;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.cta-button.primary {
    background: linear-gradient(135deg, #1956C1 0%, #E2403B 100%);
    color: white;
}

.cta-button.secondary {
    background: white;
    color: #1956C1;
    border: 2px solid #1956C1;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(25, 86, 193, 0.3);
}

.arrow-icon {
    width: 20px;
    height: 20px;
}

/* Whatsapp */
#whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 10px;
    background-color: #25D366;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  #whatsapp-chat:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0,0,0,0.3);
  }

  #whatsapp-chat img {
    width: 35px;
    height: 35px;
  }

@media (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr;

        margin: 30px 10px !important;
    }
    
}