/* Estilos para o frontend - Cupons COM NAMESPACE */
.acp-coupon {
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.acp-coupon-container {
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.acp-coupon-container:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.acp-coupon-title {
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.acp-coupon-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.acp-code-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.acp-code {
    border: 1px dashed #ccc;
    padding: 12px 20px;
    font-weight: bold;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

.acp-copy-button {
    cursor: pointer;
    border: none;
    padding: 12px 20px;
    border-radius: 20px;
    font-weight: bold;
    transition: all 0.2s ease;
}

.acp-copy-button:hover {
    transform: scale(1.05);
}

.acp-expiry {
    text-align: center;
    color: #666;
    margin: 15px 0;
    font-style: italic;
}

.acp-store-link {
    text-align: center;
    margin: 15px 0 0;
}

.acp-store-link a {
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.acp-store-link a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .acp-coupon-container {
        padding: 15px;
    }
    
    .acp-code-container {
        flex-direction: column;
    }
    
    .acp-code {
        width: 100%;
        text-align: center;
    }
    
    .acp-copy-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .acp-coupon-title {
        font-size: 18px;
    }
    
    .acp-code {
        font-size: 16px;
        padding: 10px;
    }
    
    .acp-copy-button {
        padding: 10px;
        border-radius: 20px;
    }
}