.section-title {
            text-align: center;
            margin-bottom: 3rem;
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .package-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .package-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.5s ease;
        }

        .package-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 1);
        }

        .package-card:hover::before {
            left: 100%;
        }

        .package-name {
            font-size: 1.8rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #f7bb19, #f7bb19);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .package-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .package-features li {
            padding: 0.5rem 0;
            color: #666;
            font-size: 1rem;
            border-bottom: 1px solid #eee;
            position: relative;
            padding-left: 1.5rem;
        }

        .package-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #4CAF50;
            font-weight: bold;
        }

        .package-features li:last-child {
            border-bottom: none;
        }

        .package-price {
            font-size: 25px;
            font-weight: bold;
            color: #333;
            margin-bottom: 1rem;
            position: relative;
        }

        .currency {
            font-size: 1.5rem;
            vertical-align: top;
        }

        .period {
            font-size: 1rem;
            color: #888;
            font-weight: normal;
        }

        .package-button {
            background: linear-gradient(45deg, #f7bb19, #f7bb19);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .package-button:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        /* Destacar el paquete del medio */
        .package-card:nth-child(2) {
            border: 3px solid #FFD700;
            position: relative;
        }

        .package-card:nth-child(2)::after {
            content: 'MÁS POPULAR';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: #FFD700;
            color: #333;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            letter-spacing: 1px;
        }

        /* Responsividad adicional */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }
            
            .packages-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .package-card {
                padding: 1.5rem;
                margin: 0 1rem;
            }
            
            .package-name {
                font-size: 1.5rem;
            }
            
            .package-price {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 0.5rem;
            }
            
            .package-card {
                margin: 0 0.5rem;
                padding: 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }