      .deidad-box {
            background: linear-gradient(145deg, #1a1a00, #2d2d00, #000000);
            border: 2px solid rgba(255, 215, 128, 0.9);
            border-radius: 20px;
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.8),
                0 0 30px rgba(255, 215, 128, 0.6),
                inset 0 2px 0 rgba(255, 215, 128, 0.4);
            max-width: 400px;
            width: 100%;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
		  float: left;
		  margin-left: 50px; margin-bottom: 50px
        }

        .deidad-box:hover {
            transform: translateY(-10px);
            box-shadow: 
                0 30px 60px rgba(0, 0, 0, 0.9),
                0 0 40px rgba(255, 215, 128, 0.8),
                inset 0 2px 0 rgba(255, 215, 128, 0.6);
        }

        .deidad-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 128, 0.9), transparent);
            opacity: 0.8;
        }


.deidad-box-requirements {
            background: linear-gradient(135deg, #1a1a00, #2d2d00);
            border: 1px solid rgba(255, 215, 128, 0.3);
            border-radius: 10px;
            padding: 15px;
            margin: 15px 0;
            color: #cccccc;
            font-size: 13px;
            line-height: 1.5;
            text-align: center;
        }

        .deidad-box-requirements .reset-requirement {
            color: #e5b64b;
            font-weight: bold;
        }

        .deidad-box-requirements .limit-info {
            margin-top: 8px;
            font-size: 12px;
        }

        .deidad-box-requirements .limit-number {
            font-weight: bolder;
            color: #ff6b6b;
            font-size: 14px;
        }

        .deidad-box-header {
            background: linear-gradient(135deg, #ffefc4, #e5b64b, #c8921b);
            color: #000000;
            padding: 20px;
            text-align: center;
            font-size: 24px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 0 2px 10px rgba(255, 215, 128, 0.6);
        }

        .deidad-box-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(45deg, #2d2d00, #1a1a00, #000000);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .deidad-box-image::before {
     
            font-size: 80px;
            color: #e5b64b;
            text-shadow: 0 0 20px rgba(255, 215, 128, 0.8);
        }

        .deidad-box-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, transparent 20%, rgba(255, 215, 128, 0.3) 60%);
        }

        .deidad-box-content {
            padding: 25px;
            color: #ffffff;
            text-align: center;
            background: linear-gradient(135deg, #1a1a00, #2d2d00);
        }

        .deidad-box-title {
            font-size: 20px;
            font-weight: bold;
            color: #e5b64b;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .deidad-box-description {
            font-size: 14px;
            line-height: 1.6;
            color: #cccccc;
            margin-bottom: 20px;
            max-height: 60px;
            overflow: hidden;
            transition: max-height 0.3s ease;
            position: relative;
        }

        .deidad-box-description.expanded {
            max-height: none;
        }

        .deidad-box-description::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 20px;
            background: linear-gradient(transparent, #1a1a00);
            pointer-events: none;
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .deidad-box-description.expanded::after {
            opacity: 0;
        }

        .deidad-box-expand-btn {
            background: linear-gradient(135deg, #2d2d00, #1a1a00);
            color: #e5b64b;
            border: 1px solid rgba(255, 215, 128, 0.5);
            padding: 10px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            width: 100%;
            margin: 15px 0;
            position: relative;
            overflow: hidden;
        }

        .deidad-box-expand-btn.hidden {
            display: none;
        }

        .deidad-box-expand-btn:hover {
            background: linear-gradient(135deg, #ffefc4, #e5b64b, #c8921b);
            color: #000000;
            border-color: rgba(255, 215, 128, 0.9);
            transform: translateY(-1px);
            box-shadow: 0 5px 15px rgba(255, 215, 128, 0.4);
        }

        .deidad-box-expand-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 128, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .deidad-box-expand-btn:hover::before {
            left: 100%;
        }

        .deidad-box-price {
            background: linear-gradient(135deg, #ffefc4, #e5b64b, #c8921b);
            color: #000000;
            padding: 15px 25px;
            border-radius: 50px;
            font-size: 24px;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(255, 215, 128, 0.6);
            text-shadow: none;
        }

        .deidad-box-button {
            background: linear-gradient(135deg, #000000, #1a1a00);
            color: #e5b64b;
            border: 2px solid rgba(255, 215, 128, 0.9);
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .deidad-box-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 128, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .deidad-box-button:hover {
            background: linear-gradient(135deg, #ffefc4, #e5b64b, #c8921b);
            color: #000000;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 215, 128, 0.6);
        }

        .deidad-box-button:hover::before {
            left: 100%;
        }

        .deidad-box-button:active {
            transform: translateY(0);
        }

        /* Efectos adicionales */
        .deidad-box-glow {
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #ffefc4, #e5b64b, #c8921b);
            border-radius: 22px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .deidad-box:hover .deidad-box-glow {
            opacity: 0.6;
        }