        .pricing-container {
            max-width: 1200px;
            width: 100%;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 100px;
            color: white;
        }

        .pricing-header h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 700;
            color: #ff8c00;
        }

        .pricing-header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 4 columnas fijas */
            gap: 30px;
            align-items: stretch;
        }

        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .pricing-card.featured {
            background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%); /* Un toque más oscuro */
            color: white;
            transform: scale(1.05);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .badge {
            position: absolute;
            top: -15px;
            right: 30px;
            background: #ff6b6b;
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1e3c72;
            text-align: center; /* 🔹 centrado solo del nombre */
        }

        .pricing-card.featured .plan-name {
            color: white;
        }

        .plan-price {
            margin-bottom: 30px;
            background: #ff8c00 !important; /* Naranja */
            border: 1px solid #000; /* Borde negro de 2px */
        }

        .price {
            font-size: 36px;
            font-weight: 500;
            color: #1e3c72;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            color: white;
        }

        .pricing-card.featured .price {
            color: white;
        }

        .currency {
            font-size: 1.5rem;
            margin-right: 5px;
            margin-top: 10px;
        }

        .period {
            font-size: 1rem;
            color: #666;
            margin-top: 5px;
        }

        .pricing-card.featured .period {
            color: rgba(255, 255, 255, 0.8);
        }

        .features {
            list-style: none;
            margin-bottom: 40px;
            flex-grow: 1;
        }

        .features li {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
            color: #000;
        }

        .pricing-card.featured .features li {
            border-bottom-color: rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.95);
        }

        .features li:before {
            content: "✓";
            color: #4CAF50;
            font-weight: bold;
            margin-right: 15px;
            font-size: 1.2rem;
        }

        .pricing-card.featured .features li:before {
            color: #7FFF00;
        }

        .cta-button {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(30, 60, 114, 0.4);
        }

        .pricing-card.featured .cta-button {
            background: white;
            color: #1e3c72;
        }

        .pricing-card.featured .cta-button:hover {
            background: #f8f9fa;
        }

        /* Tablets o pantallas medianas */
        @media (max-width: 1024px) {
            .pricing-cards {
                grid-template-columns: repeat(2, 1fr); /* 2 por fila */
            }
        }        

        @media (max-width: 768px) {
            .pricing-header h1 {
                font-size: 2rem;
            }

            .pricing-cards {
                grid-template-columns: 1fr;
            }

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

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

        .features li.not-included {
            color: #000;
            opacity: 1;
        }

        .features li.not-included:before {
            content: "✗";
            color: #ff4444;
        }

        .pricing-card.featured .features li.not-included:before {
            color: #ff6b6b;
        }

        .features li.no-icon:before {
            content: none; /* Quita el icono */
            margin: 0;
        }

        .features li.no-icon {
            text-align: center;       /* Centrado */
            justify-content: center;   /* Si li es flex */
            font-weight: bold;         /* 🔹 Negrita */
        }

        .price-note {
            font-size: 14px;
            color: #333; /* o el color que quieras */
            text-align: center;
            margin-top: 1px;
            font-weight: 400;
        }
