
        /* --- Contenedor Principal --- */
        .pricing-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            /* Permite que los elementos se muevan a la siguiente línea en pantallas pequeñas */
            gap: 2rem;
            /* Espacio entre las tarjetas */
            padding: 2rem;
            font-family: Arial, sans-serif;
            background-color: #f9f9f9;
            /* Un fondo suave */
        }

        /* --- Tarjetas de Planes --- */
        .plan-card {
            background-color: #ffffff;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            padding: 2.5rem 2rem;
            text-align: center;
            width: 320px;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 2px solid transparent;
        }

        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        /* --- Plan Popular Destacado --- */
        .plan--popular {
            border-color: #007bff;
            /* Un color azul para destacar */
            transform: scale(1.05);
            /* Ligeramente más grande */
            position: relative;
        }

        .plan--popular::before {
            content: "Más Popular";
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #007bff;
            color: #ffffff;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
        }

        /* --- Contenido de las Tarjetas --- */
        .plan-card h2 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .plan-card .plan-description {
            color: #6c757d;
            margin-bottom: 1.5rem;
        }

        .plan-price {
            font-size: 3rem;
            font-weight: bold;
            margin: 1.5rem 0;
        }

        .plan-price span {
            font-size: 1rem;
            font-weight: normal;
            color: #6c757d;
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
            text-align: left;
        }

        .features-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .features-list li::before {
            content: '✔';
            /* Símbolo de check */
            color: #28a745;
            /* Verde */
            position: absolute;
            left: 0;
        }

        .features-list li.feature--disabled::before {
            content: '✖';
            /* Símbolo de cruz */
            color: #dc3545;
            /* Rojo */
        }

        /* --- Botón de Llamada a la Acción (CTA) --- */
        .cta-button {
            display: inline-block;
            background-color: #28a745;
            /* Verde */
            color: #ffffff;
            padding: 12px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
            margin-top: 1rem;
            width: 80%;
        }

        .cta-button:hover {
            background-color: #218838;
            /* Verde más oscuro */
        }

        .plan--popular .cta-button {
            background-color: #007bff;
            /* Azul para el plan popular */
        }

        .plan--popular .cta-button:hover {
            background-color: #0056b3;
        }

        .cta-button-contact {
            background-color: #6c757d;
            /* Gris */
        }

        .cta-button-contact:hover {
            background-color: #5a6268;
        }
