.amazon-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff9500, #ff7b00);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(255, 149, 0, 0.3);
    border: 2px solid transparent;
    width: 100%;
    max-width: 400px;
}

.amazon-cta-button:hover {
    background: linear-gradient(135deg, #ff7b00, #e6690a);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(255, 149, 0, 0.5);
    text-decoration: none;
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.button-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    position: relative;
    z-index: 2;
}

.button-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.amazon-cta-button:hover .button-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(10deg) scale(1.1);
}

.button-text {
    flex: 1;
    margin: 0 1.5rem;
    text-align: center;
}

.button-main {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.button-sub {
    display: block;
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 0.25rem;
    font-weight: 500;
}

.button-arrow {
    transition: all 0.3s ease;
    opacity: 0.8;
}

.amazon-cta-button:hover .button-arrow {
    transform: translateX(4px);
    opacity: 1;
}

/* Efecto ripple */
.amazon-cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 1;
}

.amazon-cta-button:hover::before {
    width: 400px;
    height: 400px;
}

/* Responsive */
@media (max-width: 768px) {
    .button-content {
        padding: 1rem 1.5rem;
    }
    
    .button-main {
        font-size: 1.125rem;
    }
    
    .button-sub {
        font-size: 0.8rem;
    }
}

/* Limitador de líneas */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}