/**
 * Caja Animada - Estilos
 */

.eme-caja-animada {
    position: relative;
    display: block;
    background-color: #f5f5f5;
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
}

.eme-caja-animada:hover {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Image/Icon */
.eme-caja-image {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eme-caja-image-top-left {
    top: 30px;
    left: 30px;
}

.eme-caja-image-top-right {
    top: 30px;
    right: 30px;
}

.eme-caja-image-top-center {
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.eme-caja-image img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.eme-caja-image i,
.eme-caja-image svg {
    font-size: 60px;
    color: #ff6b35;
}

/* Content */
.eme-caja-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Header (Number + Title) */
.eme-caja-header {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

/* Number */
.eme-caja-number {
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
    color: #ff6b35;
    margin: 0;
    flex-shrink: 0;
}

/* Title */
.eme-caja-title {
    font-size: 24px;
    font-weight: 400;
    color: #666666;
    margin: 0;
    text-transform: capitalize;
    line-height: 1.2;
}

/* Price */
.eme-caja-price {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    color: #ff6b35;
    margin: 0;
}

/* Hover effects for texts - removed scale effect */

/* Responsive */
@media (max-width: 768px) {
    .eme-caja-animada {
        padding: 30px;
    }

    .eme-caja-number {
        font-size: 60px;
    }

    .eme-caja-title {
        font-size: 20px;
    }

    .eme-caja-price {
        font-size: 56px;
    }

    .eme-caja-image img,
    .eme-caja-image i,
    .eme-caja-image svg {
        width: 50px;
        height: 50px;
        font-size: 50px;
    }

    .eme-caja-image-top-left,
    .eme-caja-image-top-right,
    .eme-caja-image-top-center {
        top: 20px;
    }

    .eme-caja-image-top-left {
        left: 20px;
    }

    .eme-caja-image-top-right {
        right: 20px;
    }
}

@media (max-width: 480px) {
    .eme-caja-animada {
        padding: 20px;
    }

    .eme-caja-number {
        font-size: 48px;
    }

    .eme-caja-title {
        font-size: 18px;
    }

    .eme-caja-price {
        font-size: 42px;
    }

    .eme-caja-image img,
    .eme-caja-image i,
    .eme-caja-image svg {
        width: 40px;
        height: 40px;
        font-size: 40px;
    }

    .eme-caja-image-top-left,
    .eme-caja-image-top-right,
    .eme-caja-image-top-center {
        top: 15px;
    }

    .eme-caja-image-top-left {
        left: 15px;
    }

    .eme-caja-image-top-right {
        right: 15px;
    }
}

