/* ===================================
   ESTILOS EXCLUSIVOS PARA MATERIAL DESCARGABLE
   Este archivo NO debe ser modificado
   =================================== */

.digital-product {
    background-color: #F5F3EE;
    padding: 6rem 0;
}

.product-showcase {
    max-width: 800px;
    margin: 0 auto;
}

.product-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
}

.product-card__badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #FFFFFF;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
    z-index: 10;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.product-card__content {
    padding: 4rem;
}

.product-card__image {
    width: 300px;
    max-width: 100%;
    margin: 0 auto 2rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.product-card__image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    color: #2C2420;
    text-align: center;
    margin-bottom: 1rem;
}

.product-card__subtitle {
    font-size: 1.125rem;
    color: #5C5248;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.product-card__features {
    background-color: #F5F3EE;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
}

.product-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #2C2420;
}

.product-feature:last-child {
    margin-bottom: 0;
}

.product-feature i {
    color: #10b981;
    font-size: 1.125rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.product-card__pricing {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #F5F3EE 0%, #E8E4DD 100%);
    border-radius: 1rem;
    margin-bottom: 3rem;
}

.product-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-price__old {
    font-size: 1.5rem;
    color: #8B8278;
    text-decoration: line-through;
    font-weight: 400;
}

.product-price__current {
    font-size: 3.75rem;
    font-weight: 700;
    color: #B8956A;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-price__currency {
    font-size: 1.25rem;
    color: #5C5248;
    font-weight: 600;
    margin-top: 0.5rem;
}

.product-price__savings {
    font-size: 1.125rem;
    color: #8B7355;
    font-weight: 700;
    background-color: rgba(184, 149, 106, 0.15);
    padding: 0.5rem 2rem;
    border-radius: 9999px;
    border: 2px solid #B8956A;
}

.product-card__cta {
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.product-card__cta-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #B8956A;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.product-card__cta iframe {
    max-width: 100%;
    margin: 0 auto;
}

.product-card__guarantee {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: #dbeafe;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.product-card__guarantee i {
    color: #3b82f6;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.product-card__guarantee strong {
    display: block;
    color: #2C2420;
    margin-bottom: 4px;
    font-size: 1rem;
}

.product-card__guarantee p {
    color: #5C5248;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.product-card__security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #8B8278;
    font-size: 0.875rem;
}

.product-card__security i {
    color: #10b981;
}

@media (min-width: 768px) {
    .product-card__content {
        padding: 6rem;
    }

    .product-card__image {
        width: 350px;
    }
}